:root {
  --navy: #1a2a4a;
  --navy-light: #2c3e6b;
  --gold: #c8982a;
  --gold-light: #e0b84a;
  --asphalt: #2c3e50;
  --white: #ffffff;
  --offwhite: #f7f8fa;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --text: #1f2937;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-top: 72px; /* Prevent fixed nav from overlapping content */
}

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

section {
  padding: 5rem 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  font-weight: 700;
}

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 3rem;
}

/* BUTTONS */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links li a:hover, 
.nav-links li a.active {
  color: var(--gold);
  background: rgba(200, 152, 42, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--asphalt) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

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

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #a0740f 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--navy);
}

.cta-band h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(26, 42, 74, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
footer {
  background: #0d1b35;
  color: rgba(255, 255, 255, 0.55);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
}

.webmail-link {
  background: rgba(200, 152, 42, 0.15);
  border: 1px solid rgba(200, 152, 42, 0.3);
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.webmail-link:hover {
  background: rgba(200, 152, 42, 0.25);
  transform: translateY(-1px);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES
   ========================================================================== */

/* HOME PAGE */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b35 0%, #1a3a6a 45%, #0d1b35 100%);
}

.hero-road {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200, 152, 42, 0.4) 60px, rgba(200, 152, 42, 0.4) 62px),
    repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 255, 255, 0.03) 200px, rgba(255, 255, 255, 0.03) 201px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 53, 0.92) 0%, rgba(13, 27, 53, 0.6) 60%, rgba(13, 27, 53, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem 3rem;
  text-align: left;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  background: rgba(26, 42, 74, 0.95);
  backdrop-filter: blur(8px);
  border-top: 2px solid rgba(200, 152, 42, 0.3);
}

.hero-stat {
  flex: 1;
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-num span {
  font-size: 1.5rem;
  font-weight: 600;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.home-about {
  background: var(--offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-block {
  position: relative;
}

.about-img-block img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  height: 440px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border-bottom: 3px solid var(--gold);
}

.about-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.about-list {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.about-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--offwhite);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 152, 42, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-projects {
  background: var(--offwhite);
}

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

.mini-proj-card {
  position: relative;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mini-proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.mini-proj-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 53, 0.9) 0%, rgba(13, 27, 53, 0.2) 60%, transparent 100%);
  transition: var(--transition);
}

.mini-proj-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
  transition: var(--transition);
}

.mini-proj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.mini-proj-card:hover .mini-proj-label {
  color: var(--gold);
}

/* ABOUT PAGE */
.about-full-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.about-full-grid img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.about-mission {
  background: var(--navy);
  border-radius: 6px;
  padding: 2.5rem;
  color: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.about-mission h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.about-mission p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.value-card {
  background: var(--offwhite);
  border-radius: 6px;
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.expertise-bar {
  margin-bottom: 1.5rem;
}

.expertise-bar label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.bar-track {
  background: var(--light-gray);
  border-radius: 99px;
  height: 10px;
  overflow: hidden;
}

.bar-fill {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  height: 100%;
  transition: width 1s ease-in-out;
}

/* SERVICES PAGE */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 152, 42, 0.2);
}

.service-card-top {
  background: var(--offwhite);
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.service-full-card:hover .service-card-top {
  background: rgba(26, 42, 74, 0.02);
}

.svc-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.service-card-top h3 {
  font-size: 1.1rem;
  color: var(--navy);
}

.service-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card-body ul {
  list-style: none;
  margin-top: auto;
}

.service-card-body ul li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.4rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 600;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

/* PROJECTS PAGE */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.proj-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 152, 42, 0.2);
}

.proj-img-wrap {
  overflow: hidden;
  height: 240px;
  position: relative;
}

.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.proj-card:hover .proj-img-wrap img {
  transform: scale(1.06);
}

.proj-gps-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(13, 27, 53, 0.85);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-family: monospace;
  letter-spacing: 0.02em;
  z-index: 2;
  border-left: 2.5px solid var(--gold);
  pointer-events: none;
}

.proj-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proj-info h3 {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
}

.proj-loc {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proj-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--gold);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.contact-info-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 1.5rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-item-text strong {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  display: block;
}

.contact-form-wrap {
  background: var(--offwhite);
  border-radius: 6px;
  padding: 3rem;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--navy);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 152, 42, 0.15);
}

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

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 4px;
  padding: 1.25rem;
  color: #2e7d32;
  font-size: 0.92rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
  .about-full-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 64px;
  }

  nav {
    padding: 0 1.5rem;
    height: 64px;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 83, 0.98);
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-links li:last-child a {
    border-bottom: none;
  }

  .hero {
    height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-content {
    padding: 0 1rem;
    text-align: center;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    position: relative;
    flex-direction: column;
    background: var(--navy);
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-img-block img {
    height: 320px;
  }

  .mini-proj-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrap {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
}
