/* =========================================================
   TREND MAKERS — Outdoor Advertising
   Brand tokens
   ========================================================= */
:root {
  --bg-primary:   #121212; /* deep charcoal */
  --bg-secondary: #222222; /* muted dark gray */
  --text-light:   #FFFFFF;
  --accent-gold:  #D4AF37; /* metallic gold */
  --cta-gold:     #E6C251; /* radiant gold */
  --cta-gold-dark:#C59B27;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

a { text-decoration: none; }

.text-gold { color: var(--accent-gold); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.tm-navbar {
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.tm-navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.tm-navbar .navbar-brand img {
  height: 64px;
  width: auto;
}

@media (max-width: 991.98px) {
  .tm-navbar .navbar-brand img {
    height: 50px;
  }
}

.tm-navbar .nav-link {
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 1.4rem;
  position: relative;
  padding-bottom: 4px;
}

.tm-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
}

.tm-navbar .nav-link:hover::after,
.tm-navbar .nav-link.active::after {
  width: 100%;
}

.tm-navbar .nav-link.active {
  color: var(--accent-gold);
}

.tm-navbar .btn-cta {
  margin-left: 1.4rem;
}

/* Usluge dropdown */
.tm-dropdown-menu {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.tm-dropdown-menu .dropdown-item {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.55rem 1.2rem;
}

.tm-dropdown-menu .dropdown-item:hover,
.tm-dropdown-menu .dropdown-item:focus {
  background-color: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
}

.tm-dropdown-menu .dropdown-divider {
  border-color: rgba(212, 175, 55, 0.2);
  margin: 0.4rem 0;
}

@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* =========================================================
   HERO — signature diagonal "light beam" divider
   ========================================================= */
.tm-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 175, 55, 0.08), transparent 45%),
    var(--bg-primary);
}

.tm-hero-copy {
  z-index: 2;
  position: relative;
}

.tm-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.1rem;
}

.tm-hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.tm-hero-subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.6rem;
}

.tm-hero-lead {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
}

/* The signature element: a gold beam cutting diagonally across the hero,
   like a spotlight hitting a billboard at night. Reused (thinner) as a
   section-divider motif further down the page. */
.tm-beam {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 58%;
  width: 6px;
  background: linear-gradient(180deg, transparent, var(--accent-gold) 15%, var(--cta-gold) 50%, var(--accent-gold) 85%, transparent);
  transform: rotate(12deg);
  box-shadow: 0 0 24px 2px rgba(230, 194, 81, 0.55);
  z-index: 1;
}

.tm-hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding-left: 7%;
}

.tm-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.38) 0%, rgba(212, 175, 55, 0.10) 45%, transparent 72%);
  filter: blur(6px);
  animation: tm-pulse 4.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.tm-hero-mesh {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  max-width: 100vw;
  transform: translate(-50%, -50%);
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle, black 38%, transparent 70%);
  mask-image: radial-gradient(circle, black 38%, transparent 70%);
  animation: tm-grid-spin 50s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes tm-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.75; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes tm-grid-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.tm-hero-logo-wrap img {
  max-width: 460px;
  width: 78%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 36px rgba(212, 175, 55, 0.3));
}

@media (max-width: 767.98px) {
  .tm-hero-mesh { display: none; }
  .tm-hero-logo-wrap { min-height: 320px; padding-left: 0; overflow: visible; }
  .tm-hero-glow { width: 260px; height: 260px; }
}

.btn-tm-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--cta-gold), var(--cta-gold-dark));
  color: #1a1a1a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.1rem;
  border-radius: 2px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-tm-cta:hover {
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(230, 194, 81, 0.35);
}

@media (max-width: 767.98px) {
  .tm-hero-copy { text-align: center; margin-bottom: 2.5rem; }
  .tm-hero-lead { margin-left: auto; margin-right: auto; }
  .tm-beam { display: none; }
}

/* =========================================================
   SECTION HEADERS (shared)
   ========================================================= */
.tm-section {
  padding: 6rem 0;
}

.tm-section-alt {
  background-color: var(--bg-secondary);
}

.tm-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.tm-section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 3px;
  background: var(--accent-gold);
  transform: skewX(-20deg);
}

.tm-section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 3rem;
}

/* =========================================================
   SERVICES
   ========================================================= */
.tm-service-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tm-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
}

.tm-service-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 3px solid var(--accent-gold);
}

.tm-service-body {
  padding: 1.6rem 1.5rem 1.9rem;
}

.tm-service-body h2 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.tm-service-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.tm-service-link {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.tm-service-link:hover {
  color: var(--cta-gold);
}

/* =========================================================
   CLIENTS — infinite marquee / logo ticker
   ========================================================= */
.tm-clients-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}

.tm-clients-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0 1.5rem;
  animation: tm-marquee 55s linear infinite;
}

.tm-clients-wrap:hover .tm-clients-track {
  animation-play-state: paused;
}

@keyframes tm-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tm-client-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 180px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tm-client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.25);
}

.tm-client-logo {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* =========================================================
   INNER PAGES — page hero banner, breadcrumb, gallery, etc.
   ========================================================= */
.tm-page-hero {
  padding: 150px 0 3.5rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(212, 175, 55, 0.07), transparent 45%),
    var(--bg-primary);
}

.tm-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.tm-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.tm-breadcrumb a:hover {
  color: var(--accent-gold);
}

.tm-breadcrumb .sep {
  margin: 0 0.5rem;
  color: rgba(212, 175, 55, 0.5);
}

.tm-breadcrumb .current {
  color: var(--accent-gold);
}

.tm-page-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.tm-page-lead {
  color: rgba(255, 255, 255, 0.65);
  max-width: 700px;
  font-size: 1.05rem;
}

/* Benefits list (checkmark style) */
.tm-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tm-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-benefits-list li:last-child {
  border-bottom: none;
}

.tm-benefits-list li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Image gallery grid */
.tm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tm-gallery-item {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.tm-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tm-gallery-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 991.98px) {
  .tm-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px) {
  .tm-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA band (bottom of service/about pages) */
.tm-cta-band {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 3.5rem 0;
  text-align: center;
}

.tm-cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.9rem;
}

.tm-cta-band p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

/* City / coverage tag pills (o nama, bilbordi) */
.tm-tag-pill {
  display: inline-block;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--accent-gold);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  margin: 0 0.5rem 0.5rem 0;
}

/* Contact info cards */
.tm-contact-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  height: 100%;
}

.tm-contact-card .tm-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}

.tm-contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.tm-contact-card p, .tm-contact-card a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.tm-contact-card a:hover {
  color: var(--accent-gold);
}
/* =========================================================
   FOOTER
   ========================================================= */
.tm-footer {
  background-color: #0c0c0c;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3.5rem 0 1.5rem;
}

.tm-footer h5 {
  font-family: var(--font-display);
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.tm-footer p, .tm-footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.tm-footer a:hover { color: var(--accent-gold); }

.tm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.tm-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  margin-right: 0.6rem;
  color: var(--accent-gold);
}

.tm-social-icons a:hover {
  background: var(--accent-gold);
  color: #121212;
}