/* ==========================================================================
   DAHL MARZIN INC. - Modern Engineering Responsive Stylesheet
   Fonts: Inter (Modern UI & Headings) & Lato-Light ("DAHL MARZIN INC.")
   ========================================================================== */

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

:root {
  --primary-navy: #0b192c;
  --primary-dark: #070f1e;
  --slate-dark: #111e30;
  --slate-card: #162438;
  --accent-blue: #1e6091;
  --accent-cyan: #38bdf8;
  --accent-light: #2563eb;
  --drawer-bg: #2d4059;
  
  --text-main: #334155;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --card-border: #e2e8f0;
  --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --card-shadow-hover: 0 20px 30px -10px rgba(15, 23, 42, 0.12);
  
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-lato: 'Lato', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Header & Top Transparent Bar
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.site-header.scrolled {
  position: fixed;
  height: 74px;
  background: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Minimalist Hamburger Button */
.drawer-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  z-index: 101;
}

.drawer-toggle-btn span {
  display: block;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: var(--transition-smooth);
}

.drawer-toggle-btn span:nth-child(1) { width: 28px; }
.drawer-toggle-btn span:nth-child(2) { width: 20px; }
.drawer-toggle-btn span:nth-child(3) { width: 24px; }

.drawer-toggle-btn:hover span {
  width: 28px;
}

/* Language Switcher (EN | FR) */
.lang-switch-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 6px;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid var(--accent-cyan);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  user-select: none;
}

/* ==========================================================================
   Slide-out Drawer Navigation
   ========================================================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  max-width: 85vw;
  height: 100vh;
  background: var(--drawer-bg);
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.4);
  z-index: 200;
  padding: 60px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 26px;
  line-height: 1;
  padding: 8px;
  transition: var(--transition-smooth);
}

.drawer-close-btn:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 40px;
}

.drawer-link {
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-block;
  position: relative;
  transition: var(--transition-smooth);
}

.drawer-link:hover {
  color: var(--accent-cyan);
  transform: translateX(6px);
}

.drawer-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ==========================================================================
   Hero Section (Logo Glow, Lato-Light, Extra Spacing, Subtle CTA)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 10vh 24px 7vh;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 15, 30, 0.55) 0%, rgba(11, 25, 44, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  margin-top: -3vh; /* Sits gracefully higher in the frame */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* White Emblem Logo with subtle luminous glow */
.hero-emblem {
  width: min(266px, 60vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.42)) drop-shadow(0 0 32px rgba(255, 255, 255, 0.18)) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.65));
}

/* Company Name in Lato-Light with subtle glow and expanded spacing to headline */
.hero-company-name {
  font-family: var(--font-lato);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 300; /* Lato-Light */
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 48px; /* Generous space before "Structural engineering..." */
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 24px rgba(255, 255, 255, 0.22), 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Modern Headline in Inter */
.hero-main-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 34px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}

.hero-main-title span {
  display: block;
}

.hero-main-title .line-2 {
  font-weight: 400;
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 6px;
}

/* Subtle Glass/Ghost CTA Button */
.btn-subtle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 13px 34px;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.btn-subtle:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

/* Downward Arrow Navigation */
.hero-arrow-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 32px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: subtleFloat 2.5s ease-in-out infinite;
}

.hero-arrow-down:hover {
  opacity: 0.8;
  transform: translateX(-50%) translateY(4px);
}

@keyframes subtleFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   Section Layout & Typography (Modern Inter)
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  line-height: 1.25;
}

.section-desc {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 720px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.about-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-card:hover img {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(11, 25, 44, 0.94);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 6px;
  border-left: 4px solid var(--accent-cyan);
  backdrop-filter: blur(8px);
}

.about-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  display: block;
}

.about-badge strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.about-text p {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==========================================================================
   Specialty & Services Section (Crisp, Modern Cards)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
}

.service-icon-wrapper img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  font-size: 0.94rem;
  color: #475569;
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.services-highlight-box {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-left: 5px solid var(--accent-blue);
  padding: 30px 36px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
}

/* ==========================================================================
   Projects Section (Clean 3-Card Grid, Clutter Removed)
   ========================================================================== */
.portfolio-hero {
  position: relative;
  background-image: url('../images/portfolio-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  text-align: center;
  color: #ffffff;
}

.portfolio-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 25, 44, 0.82);
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.portfolio-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.projects-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.project-img-wrapper {
  height: 230px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.04);
}

.project-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
  font-weight: 700;
  margin-bottom: 8px;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
}

/* ==========================================================================
   Our Team Section (Full Square Image on Right, Silverio Uncropped)
   ========================================================================== */
.team-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.team-story-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text-heading);
}

.team-story-content p {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 20px;
}

.team-legacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  color: var(--accent-blue);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 10px;
  border: 1px solid #e2e8f0;
}

/* Team photo container: 100% visible square image (Silverio face uncropped) */
.team-photo-wrapper {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.team-photo-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 1405 / 1274;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.team-photo-caption {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   Contact Section (Direct Contact Cards: Phone, Email & Key Personnel)
   ========================================================================== */
.contact-section-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 45px;
  align-items: stretch;
}

/* Left: Central Office Lines */
.central-contact-card {
  background: var(--slate-dark);
  color: #ffffff;
  padding: 44px 38px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.central-contact-card h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.central-contact-card p.contact-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.direct-channels-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.channel-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--accent-cyan);
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 189, 248, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent-cyan);
}

.channel-details span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  display: block;
}

.channel-details a {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.channel-details a:hover {
  color: var(--accent-cyan);
}

/* Right: Key Personnel (Pierre Damour & Bernie Liwag) */
.personnel-contact-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.personnel-contact-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.personnel-contact-card p.personnel-sub {
  color: #64748b;
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.personnel-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.person-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition-smooth);
}

.person-card:hover {
  border-color: var(--accent-blue);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.person-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.person-info span.person-role {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  font-weight: 600;
  display: block;
}

.person-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.person-email-btn:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
}

.person-email-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   Footer (Logo Still 1.5x Bigger -> 185px Height)
   ========================================================================== */
.site-footer {
  background: #09121d;
  color: #ffffff;
  padding: 95px 0 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
}

/* Footer Logo 1.5x Bigger still (185px height) */
.footer-brand img {
  height: 185px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-cyan);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li a {
  color: var(--text-light);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-contacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.92rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-cyan);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #ffffff;
  font-weight: 500;
}

.footer-contact-item a:hover {
  color: var(--accent-cyan);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-content {
    margin-top: -2vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .projects-grid-3 {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-card img {
    height: 360px;
  }

  .team-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section-container {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand img {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 12vh 20px 60px;
  }

  .hero-company-name {
    letter-spacing: 0.22em;
    margin-bottom: 36px;
  }

  .person-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .person-email-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}
