/* EkinoksMekanik — TRC Style Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --em-dark: #1a1a1a;
  --em-dark-2: #222222;
  --em-dark-3: #2d2d2d;
  --em-accent: #F5A623;
  --em-accent-dark: #d4891a;
  --em-purple: #1a1a1a;
  --em-purple-light: #2d2d2d;
  --em-light: #f8f7f2;
  --em-text: #e8e8e0;
  --em-text-muted: #999990;
  --em-border: rgba(255, 255, 255, 0.1);
  --em-gray: #666;
  --bs-danger: #d4891a;
  --bs-danger-rgb: 212, 137, 26;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  transition: color 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: var(--em-purple);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1520px !important;
  }
}

/* announcement bar hidden */
.announcement-bar {
  display: none !important;
}

/* ── HEADER — TRC exact: floating pill over hero ── */
.arenes-header {
  /* Sits inside hero — use absolute on hero, sticky after */
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1520px;
  z-index: 1040;
  background: transparent;
  border: none;
  padding: 0;
  transition: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 28px;
  background: rgba(20, 20, 35, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* SCROLL STATE — slightly more opaque, still same pill */
.arenes-header.scrolled .header-inner {
  background: rgba(15, 10, 30, 0.82);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Nav link colors — always white on dark pill */
.arenes-header.scrolled .arenes-nav .nav-link {
  color: rgba(255, 255, 255, 0.92);
}

.arenes-header.scrolled .arenes-nav .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.arenes-header.scrolled .em-lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.arenes-header.scrolled .mobile-hamburger {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.arenes-header.scrolled .mobile-hamburger i {
  color: #fff !important;
}

/* Push body content down so hero doesn't start under header */
body {
  padding-top: 0;
}

.hero-wrapper {
  padding-top: 0;
}

main {
  flex: 1 0 auto;
}

main:not(:has(.hero-wrapper)) {
  padding-top: 108px;
}

/* ── NAV — TRC exact: 18px / 500 ─────────────── */
.arenes-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.arenes-nav .nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: normal;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.arenes-nav .nav-link:hover,
.arenes-nav .nav-link.am-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

/* CTA Button */
.em-cta-btn {
  background: #F5A623;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 22px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.em-cta-btn:hover {
  background: #d4891a;
  color: #1a1a1a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* ── LANG SWITCHER ────────────────────────────── */
.em-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--em-border);
  color: var(--em-text);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.em-lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.em-lang-btn::after {
  display: none;
}

.em-lang-menu {
  min-width: 150px;
  border-radius: 10px;
  border: 1px solid #eee !important;
  padding: 6px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.em-lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #333;
  transition: background 0.15s;
}

.em-lang-opt:hover {
  background: #f5f0ff;
  color: var(--em-purple);
  border-radius: 6px;
}

.em-lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

/* ── HERO ─────────────────────────────────────── */
.hero-wrapper {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slanted-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 20, 0.78) 0%, rgba(13, 13, 20, 0.45) 60%, rgba(13, 13, 20, 0.2) 100%);
}

.hero-content {
  position: absolute;
  bottom: 140px;
  left: clamp(24px, 5vw, 80px);
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--em-accent);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 28px;
}

.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
}

.hero-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 80px);
  z-index: 3;
}

.hero-ticker-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--em-accent);
  white-space: nowrap;
}

.hero-ticker-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-ticker-link {
  color: var(--em-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-arrows {
  position: absolute;
  bottom: 72px;
  right: clamp(24px, 4vw, 60px);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.hero-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-arrow-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Slider animate */
.slider-text-animate .hero-eyebrow,
.slider-text-animate .hero-title,
.slider-text-animate .hero-pills {
  animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.slider-text-animate .hero-title {
  animation-delay: 0.1s;
}

.slider-text-animate .hero-pills {
  animation-delay: 0.2s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── STATS ────────────────────────────────────── */
.stats-section {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.stat-item {
  padding: 32px 28px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--em-purple);
  line-height: 1;
}

.stat-number span {
  font-size: 0.6em;
  color: var(--em-accent);
}

.stat-label {
  font-size: 0.78rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── ABOUT ────────────────────────────────────── */
.about-images {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-us {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-us:hover {
  transform: scale(1.02);
}

.em-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--em-purple);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
}

.em-read-more-btn:hover {
  background: var(--em-purple);
  color: #fff;
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4);
}

.em-read-more-btn.mx-auto {
  background: var(--em-accent);
  color: #1a1a1a;
  border-color: var(--em-accent);
}

.em-read-more-btn.mx-auto:hover {
  background: var(--em-accent-dark);
  color: #1a1a1a;
  border-color: var(--em-accent-dark);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

/* ── DARK CTA ─────────────────────────────────── */
.em-dark-section {
  background: var(--em-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.em-dark-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 26, 26, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.em-dark-section .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--em-accent);
  margin-bottom: 16px;
}

.em-dark-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.em-dark-section p {
  color: rgba(232, 232, 240, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* ── PAGE HERO ────────────────────────────────── */
.projects-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--em-purple);
  padding-bottom: 5px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.projects-title {
  color: var(--em-purple);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: 1px;
}

.type-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.type-link {
  color: #999;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.type-link.active,
.type-link:hover {
  color: var(--em-purple);
}

.font-italic-custom {
  font-family: 'Brush Script MT', cursive;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--em-purple);
}

/* ── MEGA MENU BACKDROP ───────────────────────── */
#am-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body:has(.nav-item[data-mega-trigger]:hover) #am-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════
   TRC SERVICES — Yatay scroll, ROUNDED CARDS (birebir)
═══════════════════════════════════════════════════════ */
.trc-services-section {
  padding: 80px 0 0;
  background: #f5f4f9;
}

.trc-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 80px);
}

.trc-section-eyebrow {
  display: none;
}

.trc-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0d0d14;
  margin: 0;
  line-height: 1.1;
}

/* Mor pill button — "EXPLORE ALL SERVICES" */
.trc-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #1a1a1a;
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
}

.trc-view-all-btn:hover {
  background: #2d2d2d;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}

/* Scroll track */
.trc-service-scroll-wrap {
  position: relative;
}

.trc-service-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 48px;
}

.trc-service-track::-webkit-scrollbar {
  display: none;
}

/* ── TRC EXACT CARD: rounded, full image, frosted bottom ── */
.trc-service-btn.js-service-button {
  position: relative;
  flex: 0 0 clamp(220px, 28vw, 380px);
  height: clamp(300px, 40vw, 480px);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.trc-service-btn.js-service-button:first-child {
  margin-left: clamp(24px, 5vw, 80px);
}

.trc-service-btn.js-service-button:last-child {
  margin-right: clamp(24px, 5vw, 80px);
}

.trc-service-btn.js-service-button+.trc-service-btn.js-service-button {
  margin-left: 16px;
}

.trc-service-btn.js-service-button:hover {
  transform: scale(1.02);
}

/* Full-bleed image */
.trc-service-btn-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.trc-service-btn.js-service-button:hover .trc-service-btn-img img {
  transform: scale(1.06);
}

/* Frosted glass bottom band */
.trc-service-btn-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.82) 0%, rgba(10, 10, 20, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trc-service-btn-title {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.25;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.trc-service-btn-title::after {
  content: '↗';
  font-size: 1.1rem;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 8px;
}

/* EXPLORE pill — hover'da belirir */
.trc-service-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: fit-content;
}

.trc-service-btn.js-service-button:hover .trc-service-btn-link {
  opacity: 1;
  transform: translateY(0);
}

/* Arrow buttons — sağ üstte, başlık yanında */
.trc-service-arrows {
  display: flex;
  gap: 8px;
}

.trc-service-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: transparent;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.trc-service-arrow:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* ═══════════════════════════════════════════════════════
   TRC MARKETS (Projeler) — ROUNDED CARDS 3-col grid
═══════════════════════════════════════════════════════ */
.trc-markets-section {
  padding: 80px 0;
  background: #fff;
}

.trc-markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(24px, 5vw, 80px);
  grid-auto-rows: clamp(240px, 28vw, 360px);
}

/* TRC exact market card: rounded corners, full image, bottom text */
.trc-market-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 20px;
  cursor: pointer;
}

.trc-market-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.6);
}

.trc-market-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.45);
}

.trc-market-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

.trc-market-card-title {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   TRC FOOTER — birebir
═══════════════════════════════════════════════ */
.arenes-footer {
  display: none !important;
}

.trc-footer {
  background: #eef0f6;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
}

.trc-footer-top {
  padding: 56px 0 48px;
}

.trc-footer-logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.trc-footer-phone a {
  font-size: 0.88rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
}

.trc-footer-phone a:hover {
  color: #1a1a1a;
}

.trc-footer-col-title {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0d0d14;
  margin-bottom: 16px;
}

.trc-footer-address {
  font-size: 0.82rem;
  color: #444;
  line-height: 1.75;
  font-style: normal;
  margin: 0 0 10px;
}

.trc-footer-email a {
  font-size: 0.82rem;
  color: #444;
  text-decoration: none;
}

.trc-footer-email a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.trc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trc-footer-links li {
  margin-bottom: 10px;
}

.trc-footer-links a {
  font-size: 0.88rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.trc-footer-links a:hover {
  color: #1a1a1a;
}

.trc-footer-cta-btn {
  display: inline-block;
  padding: 11px 28px;
  background: #F5A623;
  color: #1a1a1a !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
}

.trc-footer-cta-btn:hover {
  background: #d4891a;
  color: #1a1a1a !important;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.trc-scroll-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: transparent;
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 20px;
}

.trc-scroll-top:hover {
  border-color: #F5A623;
  color: #F5A623;
}

.trc-footer-divider {
  border: none;
  border-top: 1px solid #d4d6e0;
  margin: 0;
}

.trc-footer-bottom-area {
  padding: 32px 0 28px;
}

.trc-newsletter-box {
  background: #F5A623;
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trc-newsletter-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  flex: 1;
  min-width: 180px;
  margin: 0;
}

.trc-newsletter-form-inner {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex: 2;
  flex-wrap: wrap;
}

.trc-newsletter-field {
  flex: 1;
  min-width: 160px;
  border-bottom: 1.5px solid rgba(26, 26, 26, 0.4);
  padding-bottom: 4px;
}

.trc-newsletter-field label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 4px;
}

.trc-newsletter-field input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #1a1a1a;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  padding: 4px 0;
}

.trc-newsletter-field input::placeholder {
  color: rgba(26, 26, 26, 0.45);
}

.trc-newsletter-submit {
  padding: 9px 24px;
  background: #1a1a1a;
  color: #F5A623;
  border: none;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.trc-newsletter-submit:hover {
  background: #2d2d2d;
  color: #F5A623;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.trc-footer-legal {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}

.trc-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 20px;
  margin-bottom: 8px;
}

.trc-footer-legal-links a,
.trc-footer-legal-links span {
  font-size: 0.72rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.trc-footer-legal-links a:hover {
  color: #1a1a1a;
}

.trc-footer-slavery-link {
  font-size: 0.72rem;
  color: #1a1a1a;
  text-decoration: underline;
  margin-bottom: 8px;
}

.trc-footer-slavery-link:hover {
  color: #2d2d2d;
}

.trc-footer-disclaimer {
  font-size: 0.65rem;
  color: #888;
  line-height: 1.6;
  text-align: right;
  max-width: 480px;
  margin: 0 0 0 auto;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 992px) {
  .trc-markets-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .trc-service-btn.js-service-button {
    flex: 0 0 260px;
  }


  .trc-newsletter-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .trc-newsletter-form-inner {
    width: 100%;
  }

  .trc-footer-legal {
    align-items: flex-start;
    text-align: left;
  }

  .trc-footer-legal-links {
    justify-content: flex-start;
  }

  .trc-footer-slavery-link,
  .trc-footer-disclaimer {
    text-align: left;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .trc-markets-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .trc-service-btn.js-service-button {
    flex: 0 0 220px;
  }

  .hero-content {
    bottom: 100px;
  }
}

/* ── CONTACT PAGE STYLE ───────────────────────── */
.contact-map-section {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-bottom: 2px solid var(--em-accent-dark);
}
.contact-map-section iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) opacity(0.75) contrast(0.95); /* Light gray map theme */
  transition: all 0.5s ease;
}
.contact-map-section iframe:hover {
  filter: grayscale(0) opacity(1) contrast(1);
}

.contact-page-title {
  color: var(--em-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-page-content {
  margin-top: -30px;
}

/* Branch Office Card */
.branch-box {
  background: #fdfdfd;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.branch-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-color: var(--em-accent-dark);
}
.branch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}
.branch-icon {
  font-size: 1.5rem;
  color: var(--em-accent-dark);
}
.branch-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
}
.branch-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.4;
}
.branch-info-row i {
  color: var(--em-accent-dark);
  font-size: 1.1rem;
  margin-top: 2px;
}
.branch-info-row .info-text a {
  color: #555;
  transition: color 0.2s;
}
.branch-info-row .info-text a:hover {
  color: var(--em-accent-dark);
}

/* Contact Form */
.contact-form-section {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 10px;
}
.contact-form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--em-accent-dark);
  border-radius: 2px;
}

.form-label-custom {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  background: #f9f9f9;
  border: 1.5px solid #eaeaea;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: all 0.25s ease;
}
.form-control-custom:focus {
  background: #fff;
  border-color: var(--em-accent-dark);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 137, 26, 0.15);
}

.textarea-custom {
  resize: none;
}

.btn-submit-custom {
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  display: inline-flex;
  align-items: center;
}
.btn-submit-custom:hover {
  background: var(--em-accent-dark);
  color: #1a1a1a;
  box-shadow: 0 8px 25px rgba(212,137,26,0.35);
  transform: translateY(-1px);
}
.btn-submit-custom:disabled {
  background: #ccc;
  color: #666;
}