/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1777206635
Updated: 2026-04-26 12:30:35

*/



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

/* ─── Design Tokens ──────────────────────────────────────────────────── */
:root {
  --primary-blue:   #0066cc;
  --hover-blue:     #0052a3;
  --secondary-blue: #e6f0fa;
  --accent-blue:    #cce0f5;
  --text-dark:      #1f2937;
  --text-gray:      #6b7280;
  --bg-light:       #f9fafb;
  --bg-white:       #ffffff;
  --border:         #e5e7eb;
  --green:          #10b981;
}

/* ─── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
img { display: block; width: 100%; }
a { text-decoration: none; }

/* ─── Shared Utilities ───────────────────────────────────────────────── */
.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.4rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-desc {
  color: var(--text-gray);
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-blue {
  background: var(--primary-blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-blue:hover { background: var(--hover-blue); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text-dark);
  background: var(--bg-white);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: var(--secondary-blue);
}

/* ─── Header ─────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(0,0,0,0.04);
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
.logo span { color: var(--primary-blue); }

nav ul { display: flex; gap: 2rem; list-style: none; }
nav a {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--primary-blue); }

/* phone btn SVG icon size */
header .btn-blue svg { width: 16px; height: 16px; }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 5%;
  overflow: hidden;
  background: var(--bg-white);
}

.hero-content {
  flex: 1;
  max-width: 580px;
  z-index: 2;
  position: relative;
}

.hero-tag {
  background: var(--secondary-blue);
  color: var(--primary-blue);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4.2rem;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.hero h1 span { color: var(--primary-blue); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

.stats-bar {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  letter-spacing: -1px;
}
.stat-item p {
  font-size: 0.82rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin: 0;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

/* ─── Blue Info Banner ───────────────────────────────────────────────── */
.info-banner {
  background: var(--primary-blue);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.info-banner-item {
  padding: 1.2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.info-banner-item:last-child { border-right: none; }
.info-banner-item:hover { background: rgba(255,255,255,0.1); }
.info-banner-item .check { color: #7dd3fc; font-size: 1rem; }

/* ─── What We Do (Services) ──────────────────────────────────────────── */
.services {
  padding: 6rem 5%;
  background: var(--bg-light);
}
.services-header { margin-bottom: 3rem; }
.services-header .section-desc { margin-top: 0.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,102,204,0.1);
}

.service-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-content { padding: 1.8rem; }

.service-badge {
  background: var(--secondary-blue);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}
.service-card > .service-content > p {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.service-card ul { list-style: none; margin-bottom: 1.5rem; }
.service-card li {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card li::before { content: '✓'; color: var(--green); font-weight: 700; }
.service-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 8px; text-decoration: underline; }

/* ─── Portfolio ──────────────────────────────────────────────────────── */
.portfolio {
  padding: 6rem 5%;
  background: var(--bg-white);
}
.portfolio-header { margin-bottom: 2.5rem; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.portfolio-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--border);
  cursor: pointer;
}
.portfolio-item img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,102,204,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* CTA tile inside portfolio grid */
.portfolio-cta-tile {
  background: var(--primary-blue);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
  gap: 0.5rem;
}
.portfolio-cta-tile h3 {
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  line-height: 1.25;
}
.portfolio-cta-tile p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.portfolio-cta-tile a {
  background: #fff;
  color: var(--primary-blue);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s;
}
.portfolio-cta-tile a:hover { transform: translateY(-2px); }

/* ─── Who We Are (About) ─────────────────────────────────────────────── */
.about {
  padding: 6rem 5%;
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-desc { margin-bottom: 2rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.about-stat-item h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  letter-spacing: -1px;
}
.about-stat-item p {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.value-card h4 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.value-card p { font-size: 0.85rem; color: var(--text-gray); }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 480px;
}
.about-img-main {
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-small {
  border-radius: 16px;
  overflow: hidden;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Trust / Why Choose Us ──────────────────────────────────────────── */
.trust-section {
  padding: 6rem 5%;
  background: var(--bg-white);
}
.trust-header {
  text-align: center;
  margin-bottom: 4rem;
}
.trust-header .section-desc { margin: 0 auto; }

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(0,102,204,0.09);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--primary-blue); fill: none; }
.feature-item h4 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text-dark); }
.feature-item p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.65; }

/* ─── Get Started Today ──────────────────────────────────────────────── */
.get-started {
  padding: 6rem 5%;
  background: var(--secondary-blue);
}

.get-started-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

/* Left: contact info */
.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info .section-desc { margin-bottom: 2rem; }

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex: 1;
}
.contact-card {
  background: var(--bg-white);
  border: 1px solid rgba(0,102,204,0.12);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(0,102,204,0.08);
}
.contact-card .c-icon {
  background: var(--primary-blue);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card .c-icon svg { width: 18px; height: 18px; stroke: #fff; }
.contact-card .c-label {
  font-size: 0.72rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact-card .c-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  border: 1px solid rgba(0,102,204,0.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Right: estimate form */
.estimate-form-wrap {
  background: var(--bg-white);
  border: 1px solid rgba(0,102,204,0.12);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,102,204,0.06);
}
.estimate-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}
.estimate-form-wrap .form-sub {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s;
}
.form-submit:hover { background: var(--hover-blue); transform: translateY(-2px); }

/* ─── Footer ─────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-grid .logo { font-size: 1rem; margin-bottom: 1rem; }
.footer-about-desc { color: var(--text-gray); font-size: 0.88rem; line-height: 1.7; }
.footer-grid h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-grid a { color: var(--text-gray); transition: color 0.2s; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--primary-blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-gray);
  font-size: 0.83rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .hero-image { width: 48%; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .get-started-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 4rem 5%; }
  .hero-image { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .info-banner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .features-list { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .stats-bar { gap: 1.5rem; }
  .map-wrap { min-height: 220px; flex: none; }
}
/* ══════════════════════════════════════════════════════════════
   pages.css — shared inner page styles
   Requires combined-theme.css to be loaded first
══════════════════════════════════════════════════════════════ */

/* ─── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--primary-blue);
  padding: 5rem 5% 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: #fff; }
.page-hero h1 {
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero h1 span { color: #7dd3fc; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--primary-blue);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-white-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ─── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  background: var(--secondary-blue);
  padding: 2.5rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.stats-strip-item .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -1px;
}
.stats-strip-item .lbl {
  font-size: 0.82rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ─── Page Section Wrapper ──────────────────────────────────── */
.page-section {
  padding: 5rem 5%;
}
.page-section.bg-light { background: var(--bg-light); }
.page-section.bg-blue  { background: var(--secondary-blue); }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0.5rem auto 0; }

/* ─── Service Detail Cards ──────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.service-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,102,204,0.1);
}
.service-detail-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.service-detail-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.service-detail-body .service-badge { display: inline-block; margin-bottom: 1rem; }
.service-detail-body h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-detail-body > p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.65; }
.service-detail-body ul { list-style: none; margin-bottom: 1.5rem; }
.service-detail-body li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.service-detail-body li::before { content: '✓'; color: var(--green); font-weight: 700; }
.service-detail-body .service-link { margin-top: auto; }

/* Emergency card – full-width accent */
.service-detail-card.emergency {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}
.service-detail-card.emergency img { width: 40%; height: auto; object-fit: cover; }
.service-detail-card.emergency .service-detail-body { padding: 2.5rem; }

/* ─── Process Steps ─────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--secondary-blue);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(0,102,204,0.3);
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.6; }

/* ─── Portfolio Gallery ─────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-gray);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: #fff;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,51,102,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7dd3fc;
  margin-bottom: 0.3rem;
}
.gallery-overlay h4 { color: #fff; font-size: 1rem; margin: 0; }

/* ─── About — Timeline / Story ──────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text h2 { margin-bottom: 1.5rem; }
.story-text p { color: var(--text-gray); margin-bottom: 1rem; line-height: 1.75; font-size: 1rem; }
.story-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.story-img img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ─── Team Cards ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover { box-shadow: 0 10px 30px rgba(0,102,204,0.1); transform: translateY(-4px); }
.team-card img { width: 100%; height: 240px; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card-body h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card-body .role { font-size: 0.85rem; color: var(--primary-blue); font-weight: 600; }

/* ─── Contact Page ──────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: stretch;
}
.contact-page-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-page-info h2 { margin-bottom: 0.5rem; }
.contact-page-info .section-desc { margin-bottom: 1.5rem; }
.contact-big-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.contact-big-card .c-icon {
  width: 48px; height: 48px;
  background: var(--primary-blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-big-card .c-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-big-card .c-label { font-size: 0.72rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-big-card .c-value { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.map-large {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
  margin-top: 0.5rem;
}
.map-large iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid rgba(0,102,204,0.12);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,102,204,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 0.3rem; }
.contact-form-wrap .form-sub { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 2rem; }

/* ─── Inner Page CTA ────────────────────────────────────────── */
.inner-cta {
  background: var(--primary-blue);
  padding: 5rem 5%;
  text-align: center;
}
.inner-cta h2 { font-size: 2.4rem; color: #fff; letter-spacing: -0.5px; margin-bottom: 1rem; }
.inner-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.inner-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Nav Active State ──────────────────────────────────────── */
nav a.active { color: var(--primary-blue); font-weight: 700; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-card.emergency { grid-column: span 1; flex-direction: column; }
  .service-detail-card.emergency img { width: 100%; height: 220px; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 2.2rem; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
