/* ═══════════════════════════════════════════════════════════════════════════ */
/* CORE SETUP & VARIABLES */
/* ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --dark: #0A1628;
  --dark2: #0F1E38;
  --dark3: #162340;
  --teal: #00C8A8;
  --teal2: #00A88C;
  --teal3: #007A65;
  --gold: #C9A96E;
  --gold2: #A8864E;
  --white: #FFFFFF;
  --light: #F4F7FC;
  --muted: #7A90B5;
  --border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HAMBURGER MENU */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 24px;
  z-index: 201;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* NAVBAR */
/* ═══════════════════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 5rem;
  background: #F0F2F5 !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  transition: all 0.3s !important;
  box-shadow: none !important;
  height: 80px !important;
}

/* Force nav to always stay light - override any scrolling effects */
nav * {
  background: inherit !important;
}

nav.scrolled {
  background: #F0F2F5 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dark);
}

.logo-text {
  line-height: 1.25;
}

.logo-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0A1628;
}

.logo-sub {
  font-size: 10px;
  color: #999999;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  padding: 0;
  width: auto;
  justify-content: center;
}

.nav-links li {
  display: inline-flex;
  align-items: center;
  margin: 0 1.5rem;
  padding: 0;
}

.nav-links li a {
  font-size: 13px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: inline-block;
  white-space: nowrap;
  padding: 8px 0;
}

.nav-links li a:hover {
  color: var(--teal);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

.nav-lang {
  font-size: 12px;
  color: #333333;
  cursor: pointer;
  padding: 0.35rem 0.65rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
  background: white;
}

.nav-lang:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(0, 200, 168, 0.05);
}

.nav-cta {
  background: var(--teal);
  color: var(--dark);
  padding: 0.65rem 1.8rem;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--teal2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 200, 168, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HERO */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
  opacity: 0.6;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 17, 32, 0.8) 0%, rgba(5, 17, 32, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 780px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 2rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2s infinite;
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 10.5px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: italic;
  color: var(--teal);
}

h1 strong {
  font-weight: 600;
}

.hero-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: 2px solid var(--teal);
}

.btn-primary:hover {
  background: var(--teal2);
  border-color: var(--teal2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 168, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 200, 168, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 168, 0.2);
}

.btn-ghost:active {
  transform: translateY(-1px);
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.hero-stat {
  flex: 1;
  padding: 1.4rem 2.5rem;
  border-right: 1px solid var(--border);
}

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

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* TICKER */
/* ═══════════════════════════════════════════════════════════════════════════ */

.ticker {
  background: var(--teal);
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  background: rgba(10, 22, 40, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* SECTIONS */
/* ═══════════════════════════════════════════════════════════════════════════ */

section {
  padding: 7rem 5rem;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-body {
  font-size: 0.975rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 520px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ABOUT */
/* ═══════════════════════════════════════════════════════════════════════════ */

.about {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  min-height: 620px;
}

.about-img-col {
  position: relative;
  overflow: hidden;
}

.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 30, 56, 0.3), transparent);
}

.about-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  background: rgba(0, 200, 168, 0.08);
  border: 1px solid rgba(0, 200, 168, 0.2);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.bdi-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.bdi-box {
  background: linear-gradient(135deg, var(--gold), #8A6535);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 120px;
}

.bdi-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--dark);
  line-height: 1;
}

.bdi-label {
  font-size: 10px;
  color: rgba(10, 22, 40, 0.65);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.meta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.meta-label {
  font-size: 10px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.meta-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* SERVICES */
/* ═══════════════════════════════════════════════════════════════════════════ */

.services {
  background: var(--dark);
}

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

.svc {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}

.svc:hover {
  border-color: rgba(0, 200, 168, 0.25);
  transform: translateY(-4px);
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-icon {
  width: 46px;
  height: 46px;
  background: rgba(0, 200, 168, 0.09);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.svc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.svc-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}

.tag {
  font-size: 10px;
  background: rgba(0, 200, 168, 0.07);
  border: 1px solid rgba(0, 200, 168, 0.15);
  color: var(--teal);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* GREEN ENERGY */
/* ═══════════════════════════════════════════════════════════════════════════ */

.green {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.green-img {
  position: absolute;
  inset: 0;
}

.green-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.5);
}

.green-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 38, 28, 0.97) 0%, rgba(5, 38, 28, 0.85) 60%, rgba(5, 38, 28, 0.6) 100%);
}

.green-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 7rem 5rem;
}

.energy-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.energy-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 200, 168, 0.06);
  border: 1px solid rgba(0, 200, 168, 0.14);
  border-radius: 8px;
}

.e-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.e-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.green-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.g-stat {
  background: rgba(0, 200, 168, 0.07);
  border: 1px solid rgba(0, 200, 168, 0.18);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.g-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--teal);
}

.g-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* EU OPERATIONS */
/* ═══════════════════════════════════════════════════════════════════════════ */

.eu {
  background: var(--dark3);
}

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

.eu-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

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

.eu-offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.office {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.office-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 200, 168, 0.12);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.office-info {
  line-height: 1.3;
}

.office-city {
  font-size: 14px;
  font-weight: 600;
}

.office-role {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* COMPLIANCE */
/* ═══════════════════════════════════════════════════════════════════════════ */

.compliance {
  background: var(--dark2);
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.comp-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.comp-card:hover {
  border-color: rgba(0, 200, 168, 0.2);
}

.comp-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.comp-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.comp-body {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CASE STUDIES */
/* ═══════════════════════════════════════════════════════════════════════════ */

.cases {
  background: var(--dark);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.case-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.case-img {
  position: absolute;
  inset: 0;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

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

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.97) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.15) 100%);
}

.case-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.case-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.case-body {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CLIENTS */
/* ═══════════════════════════════════════════════════════════════════════════ */

.clients {
  background: var(--dark2);
  padding: 5rem;
}

.clients-title {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.client-logo {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.2s;
}

.client-logo:hover {
  border-color: rgba(0, 200, 168, 0.25);
  background: rgba(0, 200, 168, 0.04);
}

.client-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.client-sub {
  font-size: 10px;
  color: rgba(122, 144, 181, 0.6);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* TEAM */
/* ═══════════════════════════════════════════════════════════════════════════ */

.team {
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.team-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-3px);
}

.team-head {
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--teal3));
}

.team-body-inner {
  padding: 1.75rem;
}

.team-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.team-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.ceo-card {
  grid-column: 1 / -1;
  flex-direction: row;
  display: flex;
}

.ceo-card .team-body-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2rem;
}

.ceo-card .team-head {
  width: 6px;
  height: auto;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
}

.ceo-right {
  flex: 1;
}

.ceo-card .team-av {
  width: 72px;
  height: 72px;
  font-size: 24px;
  flex-shrink: 0;
}

.ceo-card .team-role {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CONTACT */
/* ═══════════════════════════════════════════════════════════════════════════ */

.contact {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left {
  padding-top: 0.5rem;
}

.c-block {
  margin-bottom: 2.25rem;
}

.c-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.c-val {
  font-size: 14px;
  color: var(--white);
  line-height: 1.8;
}

.c-val a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.c-val a:hover {
  color: var(--teal);
}

.contact-form {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 1.75rem;
}

.fg {
  margin-bottom: 1.25rem;
}

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(0, 200, 168, 0.4);
}

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

.submit-btn {
  background: var(--teal);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.submit-btn:hover {
  background: var(--teal2);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═══════════════════════════════════════════════════════════════════════════ */

footer {
  background: rgba(10, 22, 40, 0.6);
  border-top: 1px solid var(--border);
  padding: 3rem 5rem;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  margin: 0 1rem;
}

footer a:hover {

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }
  
  .services-grid,
  .team-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 0.8rem 1.5rem;
    height: auto !important;
  }

  .hamburger {
    display: flex !important;
    order: 3;
    margin-left: auto !important;
    margin-right: 0 !important;
    position: relative !important;
    z-index: 202 !important;
  }

  .logo {
    order: 1;
    flex: 0 0 auto;
  }

  .nav-right {
    order: 2;
    gap: 0.5rem;
    margin-left: 0;
  }

  .nav-links {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    margin: 0 !important;
    padding: 0.5rem 0;
    width: 100%;
  }

  .nav-links li a {
    font-size: 14px;
    padding: 0.5rem 0;
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
  }
  
  section {
    padding: 4rem 2rem;
  }
  
  .hero-content {
    padding: 0 2rem;
  }
  
  .about,
  .eu-grid,
  .contact {
    grid-template-columns: 1fr;
  }
  
  .green-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* SIDE MENU - MOBILE ONLY */
/* ═══════════════════════════════════════════════════════════════════════════ */

.side-menu {
  display: none;
}

.menu-trigger {
  display: none !important;
}

@media (max-width: 768px) {
  .menu-trigger {
    display: flex !important;
  }

  .side-menu {
    display: flex !important;
  }

  .side-menu nav ul li a {
    color: white !important;
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .side-menu {
    left: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HAMBURGER BUTTON */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hamburger {
  display: none !important;
  background: #00C8A8 !important;
  border: none !important;
  cursor: pointer !important;
  padding: 12px !important;
  flex-direction: column !important;
  gap: 5px !important;
  border-radius: 4px !important;
}

.hamburger span {
  width: 25px !important;
  height: 3px !important;
  background: white !important;
  display: block !important;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
}
