:root {
  --primary: #0b2b4c;
  --secondary: #d4a21f;
  --accent: #2f6fb4;
  --dark: #07101d;
  --surface: #0f1e2e;
  --surface-alt: #13263a;
  --text: #e8eef7;
  --muted: #b8c4d6;
  --border: #20344b;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
}

p {
  color: var(--muted);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(212, 162, 31, 0.8);
  outline-offset: 3px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--secondary);
  color: #0b141f;
}

.btn-primary:hover {
  background: #c7961c;
}

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

.btn-secondary:hover {
  background: #0a233e;
}

.btn-outline {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: #0b141f;
}

.text-link {
  color: var(--secondary);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 16, 29, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo img {
  height: 72px;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 500;
}

.phone-link {
  padding: 0.7rem 1.2rem;
  background: var(--secondary);
  color: #0b141f;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  background: linear-gradient(120deg, rgba(11, 43, 76, 0.96), rgba(7, 16, 29, 0.92));
  color: var(--text);
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 162, 31, 0.18);
  color: #f2d17b;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

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

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero-card {
  background: var(--surface);
  color: var(--text);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(3, 7, 12, 0.35);
}

.hero-card h2 {
  margin-bottom: 0.5rem;
}

.hero-card ul {
  list-style: none;
  margin: 1rem 0 2rem;
  display: grid;
  gap: 0.5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

section {
  padding: 4rem 0;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.testimonial-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(3, 7, 12, 0.25);
}

.service-card h3 {
  margin-bottom: 0.8rem;
}

.service-areas {
  background: var(--surface-alt);
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.area-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.area-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust {
  background: var(--surface-alt);
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.testimonials {
  background: var(--surface);
}

.contact-cta {
  background: linear-gradient(120deg, rgba(11, 43, 76, 0.96), rgba(19, 38, 58, 0.94));
  color: var(--text);
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0b1a29;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(184, 196, 214, 0.8);
}

.site-footer {
  background: #050d17;
  color: var(--text);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(232, 238, 247, 0.7);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
  }

  .nav-list {
    position: absolute;
    right: 4%;
    top: 80px;
    flex-direction: column;
    background: var(--surface);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(3, 7, 12, 0.35);
    display: none;
  }

  .nav-list.active {
    display: flex;
  }

  .phone-link {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3.5rem 0;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 8px;
  }
}
/* New CSS for Homepage Updates */

/* Hero Form */
.hero-card form.hero-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: inherit;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: 2px solid var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

.hero-form .btn-block {
  width: 100%;
  padding: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Logos Section */
.logos-section {
  padding: 3rem 0;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

.logos-section.alt-bg {
  background: var(--dark);
}

.logos-heading {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.logo-grid.small-grid {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

/* Brand Logo Placeholders */
.brand-logo {
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  color: var(--muted);
  font-size: 1.1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  color: var(--text);
}

/* Recent Projects */
.recent-projects {
  background: var(--surface-alt);
}

.project-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image-placeholder {
  height: 200px;
  background: #1a2c42;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 500;
}

.project-details {
  padding: 1.5rem;
}

.project-details h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.project-details span {
  font-size: 0.9rem;
  color: var(--secondary);
}

/* List Style Updates */
.area-list.three-col {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Updated Image Styles */
.brand-logo-img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.brand-logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212, 162, 31, 0.3);
}

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

.hero-image img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(3, 7, 12, 0.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.process-icon,
.trust-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.area-image img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(3, 7, 12, 0.3);
}


