/*
  =========================================
  VINSA STRUCT (OPC) PRIVATE LIMITED
  Master Stylesheet (style.css)
  =========================================
*/

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

/* --- Root Variables (Design System) --- */
:root {
  /* Color Palette */
  --primary: #0F5A3E;
  /* Deep Forest Green (Reference Image Accent) */
  --primary-hover: #0D4E35;
  /* Slightly darker green for hover states */
  --secondary: #16A34A;
  /* Vibrant Green accent */
  --secondary-hover: #15803d;
  /* Darker vibrant green */
  --dark-neutral: #0F172A;
  /* Navy/Charcoal for dark sections and high-contrast text */
  --dark-neutral-light: #1E293B;
  /* Lighter charcoal for banners */
  --light-neutral: #F8FAFC;
  /* Soft Gray background */
  --light-neutral-2: #F1F5F9;
  /* Gray accent background */
  --text-primary: #0F172A;
  /* Primary text color */
  --text-muted: #475569;
  /* Secondary/muted body text */
  --text-light: #F8FAFC;
  /* White text for dark backgrounds */
  --border-color: #E2E8F0;
  /* Default borders */
  --border-color-dark: #334155;
  /* Dark borders for charcoal backgrounds */
  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Layout & Sizing */
  --max-width: 1400px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --border-radius: 8px;

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Resets & Global Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: #FFFFFF;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-neutral);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background-color: transparent;
  border-color: var(--dark-neutral);
  color: var(--dark-neutral);
}

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

.btn-white-outline {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-white-outline:hover {
  background-color: var(--text-light);
  color: var(--dark-neutral);
  transform: translateY(-2px);
}

/* --- Navigation Header --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: background var(--transition-normal);
}

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

/* Brand Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center image and tagline horizontally */
}

.logo-img {
  height: 18px;
  /* Balanced height for a medium-sized logo in the compact navbar */
  width: auto;
  display: block;
}

.logo-main {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-neutral);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -10px;
  /* Offset the transparent bottom margin of the logo image */
  position: relative;
  z-index: 2;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-neutral);
  padding: 0.5rem 0;
  position: relative;
}

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

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

.nav-link.active {
  color: var(--primary);
}

/* Header Button */
.header-cta .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Mobile Toggle Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--dark-neutral);
  transition: all var(--transition-normal);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background-color: #FFFFFF;
  /* Clean white background matching screenshot */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 0 2rem 0;
  /* Reduced top and bottom padding */
  min-height: calc(55vh - 75px);
  /* Reduced min-height to pull the banner up */
}

.hero-image-fullbleed {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

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

.hero-image-overlay-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Smooth fade from solid white to transparent */
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
  /* Restrict to left side of screen */
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span.accent-color {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

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

/* Mobile responsive styles for the fullbleed hero layout */
@media (max-width: 992px) {
  .hero-content {
    max-width: 60%;
  }

  .hero-image-fullbleed {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 3rem 0 0 0;
    /* No bottom padding on hero container */
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 2rem 1.5rem 3rem 1.5rem;
    /* Reduced top padding to move text up */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Move content to the top */
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    /* Center the text lines */
  }

  .hero-image-fullbleed {
    position: relative;
    width: 100%;
    height: 360px;
    /* Extended height to show more image */
    order: 2;
    /* Put image at bottom */
  }

  .hero-image-overlay-fade {
    display: none;
    /* Hide white fade on mobile so image meets the next section cleanly */
  }
}

/* Styled Blueprint Placeholder */
.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0c1626;
  /* Deep dark blue blueprints color */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  transition: all var(--transition-normal);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Make a cross representing a structure grid */
  background-image:
    linear-gradient(45deg, transparent 49.5%, rgba(255, 255, 255, 0.04) 50%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgba(255, 255, 255, 0.04) 50%, transparent 50.5%);
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1.5;
  transition: stroke var(--transition-normal);
}

.image-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 0 1rem;
}

.image-placeholder:hover {
  background-color: #0f1c30;
  color: rgba(255, 255, 255, 0.7);
}

.image-placeholder:hover svg {
  stroke: var(--secondary);
}

/* --- Feature Dark Banner --- */
.feature-banner {
  background-color: var(--dark-neutral-light);
  color: var(--text-light);
  padding: 2rem 0;
  /* More compact vertical padding */
  border-top: 4px solid var(--primary);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

.feature-icon-wrapper {
  color: var(--secondary);
  display: flex;
  align-items: center;
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- Section Formatting --- */
.section {
  padding: 6rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* --- What We Do (Cards Grid) --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.card {
  background-color: #FFFFFF;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

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

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cards-grid .card-link {
  align-self: center;
}

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 90, 62, 0.2);
}

.card:hover .card-link {
  color: var(--secondary);
}

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

/* --- ISO Commitment Section --- */
.commitment {
  padding: 6rem 0;
  background-color: var(--light-neutral);
  position: relative;
}

/* Background watermark sketch */
.commitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(15, 90, 62, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 90, 62, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.commitment-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.commitment-content .btn {
  align-self: center;
  margin-top: 1.5rem;
}

.commitment-content .section-subtitle {
  margin-bottom: 0.75rem;
}

.commitment-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.commitment-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.commitment-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Custom premium ISO certified circular logo style badge */
.iso-badge {
  width: 180px;
  height: 180px;
  background-color: #FFFFFF;
  border-radius: 50%;
  border: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.iso-badge::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 1px dashed var(--primary);
  opacity: 0.5;
}

.iso-text-large {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.iso-text-small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dark-neutral);
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.iso-tag {
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
}

/* --- Footer --- */
.footer {
  background-color: var(--dark-neutral);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr 1.2fr 0.8fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Left-align logo image and tagline relative to each other */
  align-self: flex-start;
  /* Keep the logo block left-aligned in the footer column */
  margin-top: -10px;
  /* Pull logo block up to align with headers of adjacent columns due to transparent image whitespace */
  margin-bottom: 1.5rem;
}

.footer-logo .logo-main {
  color: var(--text-light);
}

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

.footer-credit-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.footer-credit-link:hover {
  color: var(--secondary);
}

.footer-logo-img {
  filter: invert(1);
  mix-blend-mode: screen;
  height: 18px; /* Match header logo size exactly */
  width: auto;
  display: block;
  margin-bottom: 1.2rem; /* Restore spacing below the logo image in the footer */
}

.footer-about-text {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--text-light);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item span {
  line-height: 1.5;
}

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

.footer-credits {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

/* --- Page Hero Component (Subpages) --- */
.page-hero {
  background-color: var(--dark-neutral-light);
  color: var(--text-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.page-hero-title {
  color: var(--text-light);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
  color: var(--text-light);
}

.breadcrumbs span.separator {
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs span.current {
  color: var(--secondary);
}

/* --- About Page Specifics --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature-box {
  background: var(--light-neutral);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-bottom: 3px solid var(--primary);
}

.about-feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-feature-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background-color: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(15, 90, 62, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.value-card-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 90, 62, 0.2);
}

/* Timeline Layout */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: #FFFFFF;
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -8px;
}

.timeline-content {
  padding: 1.5rem;
  background-color: var(--light-neutral);
  position: relative;
  border-radius: var(--border-radius);
}

.timeline-year {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Services Page Specifics --- */
.services-list-detail {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-row:nth-child(even) {
  direction: rtl;
}

.service-row:nth-child(even) .service-content {
  direction: ltr;
  /* Reset text direction for content */
}

.service-content-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.service-content-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-content-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.service-bullet-item svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
  flex-shrink: 0;
}

.service-img-container {
  height: 380px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Service CTA Box */
.service-cta-box {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.service-cta-box h2 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-cta-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* --- Projects Page Specifics --- */
.projects-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--light-neutral);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

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

.project-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 380px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  background-color: #FFFFFF;
}

.project-card-img-wrapper {
  position: relative;
  height: 270px;
  width: 100%;
  overflow: hidden;
}

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

.project-card-info {
  background-color: #1E293B;
  /* Solid Charcoal Dark Background matching screenshot */
  padding: 1.5rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.project-card-title {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.project-card-subtext {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

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

/* Hide animations for filtering */
.project-card.hide {
  display: none;
}

/* --- Contact Page Specifics --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--light-neutral);
  padding: 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary);
  display: flex;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-info-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-neutral);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: var(--light-neutral);
  transition: all var(--transition-normal);
  color: var(--text-primary);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 90, 62, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Form Message Box (Success/Error) */
.form-status {
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background-color: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #16A34A;
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

/* Maps section */
.map-section {
  padding-bottom: 6rem;
}

.map-container {
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  :root {
    font-size: 15px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

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

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

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

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* Mobile Menu Styles */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4rem;
    gap: 2.5rem;
    transition: left var(--transition-normal);
    box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  /* Active transitions for lines of hamburger */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .header-cta {
    display: none;
    /* Hide header CTA button on mobile, put inside nav drawer or let links handle it */
  }

  /* Sections Layout */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

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

  .hero-image-container {
    min-height: 300px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .commitment-content {
    align-items: center;
    text-align: center;
  }

  .commitment-desc {
    text-align: center;
  }

  .iso-badge {
    width: 140px;
    height: 140px;
    padding: 1rem;
  }

  .iso-badge::after {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
  }

  .iso-text-large {
    font-size: 1.6rem;
  }

  .iso-text-small {
    font-size: 0.55rem;
    margin-top: 0.15rem;
    margin-bottom: 0.15rem;
  }

  .iso-tag {
    font-size: 0.45rem;
    padding: 0.15rem 0.4rem;
  }

  .about-grid,
  .service-row,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-row:nth-child(even) {
    direction: ltr;
    /* Reset for proper ordering on mobile */
  }

  .about-img-frame {
    height: 300px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 23px;
    right: auto;
  }

  .timeline-left {
    left: 0;
  }

  .timeline-right {
    left: 0;
  }
}

@media (max-width: 576px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .projects-filter-bar {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }
}

/* =========================================
   New About Page Styles (Reference Image)
   ========================================= */

.about-hero-section {
  padding: 2.5rem 0 5rem 0;
  /* Reduced top padding from 5rem to 2.5rem */
  background-color: #FFFFFF;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-text {
  display: flex;
  flex-direction: column;
}

.about-hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--dark-neutral);
  font-weight: 800;
}

.title-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.about-hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-hero-desc:last-of-type {
  margin-bottom: 0;
}

.about-hero-image {
  position: relative;
  height: 520px;
  border-radius: 200px 0 0 200px / 50% 0 0 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image-placeholder {
  border-radius: inherit;
}

/* Stat Banner Section (Forest Green Box) */
.stat-banner-section {
  padding: 2rem 0;
  background-color: #FFFFFF;
}

.stat-banner-box {
  background-color: #0A4630;
  /* Very Dark Forest Green matching the card */
  border-radius: 8px;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.stat-banner-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 1rem;
}

.stat-banner-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-banner-icon {
  width: 44px;
  height: 44px;
  color: #FFFFFF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-banner-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.stat-banner-content {
  display: flex;
  flex-direction: column;
}

.stat-title {
  color: #FFFFFF;
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Core Values Section */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
}

.core-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.core-value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.core-value-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5;
  transition: transform var(--transition-normal);
}

.core-value-label {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-neutral);
}

.core-value-item:hover .core-value-icon {
  border-color: var(--primary);
  background-color: rgba(15, 90, 62, 0.03);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.core-value-item:hover .core-value-icon svg {
  transform: scale(1.1);
}

/* Responsive Media Queries for New About Section */
@media (max-width: 992px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-hero-image {
    height: 400px;
    border-radius: 120px 0 0 120px / 50% 0 0 50%;
  }

  .stat-banner-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .stat-banner-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    padding-right: 0;
  }

  .stat-banner-item:nth-child(even) {
    border-right: none;
  }

  .stat-banner-item:nth-child(3),
  .stat-banner-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .stat-banner-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }

  .stat-banner-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
  }

  .stat-banner-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* =========================================
   New Services Page Styles (Reference Image)
   ========================================= */

.services-cards-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background-color: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.service-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}

.service-card:nth-child(even) .service-card-img {
  order: 2;
}

.service-card:nth-child(even) .service-card-body {
  order: 1;
}

.service-card-img {
  position: relative;
  height: 380px;
  /* Fixed height matching the 380px column width for a perfect square */
  align-self: start;
  /* Keep image aligned to the top of the grid and prevent it from stretching on card expansion */
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-placeholder {
  border-radius: 0;
  border: none;
}

.service-card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background-color: rgba(15, 90, 62, 0.08);
  color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.service-card-title {
  font-family: var(--font-headings);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-neutral);
  transition: color 0.3s ease;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 90, 62, 0.15);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card:hover .service-card-title {
  color: var(--primary);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-card:hover .card-link {
  color: var(--secondary);
}

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

/* Responsive Media Queries for New Services page */
@media (max-width: 992px) {
  .service-card {
    grid-template-columns: 320px 1fr;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr 320px;
  }

  .service-card-body {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(even) .service-card-img {
    order: 1;
  }

  .service-card:nth-child(even) .service-card-body {
    order: 2;
  }

  .service-card-img {
    height: 220px;
    min-height: 220px;
  }

  .service-card-body {
    padding: 2rem;
  }

  .service-card-body .card-link {
    align-self: center;
  }
}

/* --- Service Card Expandable Details --- */
.service-card-extended {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.4s ease, margin 0.4s ease, padding 0.4s ease;
}

.service-card.expanded .service-card-extended {
  max-height: 1500px;
  /* High limit to contain text elements */
  opacity: 1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  transition: max-height 0.6s cubic-bezier(0.85, 0.15, 0.3, 1), opacity 0.5s ease;
}

.extended-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.extended-text:last-child {
  margin-bottom: 0;
}

/* --- About Page Expandable Drawer --- */
.about-extended-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0, 1, 0, 1), opacity 0.5s ease;
}

.about-hero-text.expanded .about-extended-content {
  max-height: 1500px;
  opacity: 1;
  margin-top: 1rem;
  transition: max-height 0.8s cubic-bezier(0.85, 0.15, 0.3, 1), opacity 0.6s ease;
}

/* =========================================
   New Contact Page Styles (Reference Image)
   ========================================= */

.contact-hero-section {
  position: relative;
  padding: 2.5rem 0 6rem 0;
  /* Reduced top padding from 6rem to 2.5rem */
  background-color: #FFFFFF;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;
  /* Start content at the top padding instead of vertically centering it */
}

.contact-hero-image-fullbleed {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

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

.contact-hero-image-overlay-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 15%, rgba(255, 255, 255, 0) 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Contact Info Column (Left) */
.contact-hero-info {
  display: flex;
  flex-direction: column;
}

.contact-hero-info .section-subtitle {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-hero-info .section-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-neutral);
  margin-bottom: 1rem;
}

.contact-title-line {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-detail-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.contact-detail-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-neutral);
  line-height: 1.4;
}

.contact-detail-text a {
  color: inherit;
  transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
  color: var(--primary);
}

/* Contact Form Column (Right) */
.contact-hero-form-wrapper {
  background-color: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.contact-form-control {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-neutral);
  transition: all var(--transition-normal);
  margin-bottom: 1.25rem;
  box-sizing: border-box;
}

.contact-form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 90, 62, 0.1);
}

textarea.contact-form-control {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 1.5rem;
}

.btn-submit-contact {
  width: 100%;
  background-color: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  font-size: 0.95rem;
}

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

/* --- Footer Layout & Social Icons --- */

.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-slogan {
  line-height: 1.7;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.social-icon.linkedin {
  background-color: #0077B5;
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Mobile Responsive Contact */
@media (max-width: 992px) {
  .contact-hero-section {
    padding: 2.5rem 0 4rem 0;
    /* Reduced top padding on mobile */
    flex-direction: column;
  }

  .contact-hero-image-fullbleed {
    width: 100%;
    height: 300px;
    position: relative;
    right: auto;
  }

  .contact-hero-image-overlay-fade {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  }

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

  .contact-hero-info .section-title {
    font-size: 2.2rem;
  }


}

@media (max-width: 576px) {
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
  }

  .contact-hero-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #333333;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #333333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}