/* ============================================================
   DESIGN DNA — TelAviv Cycle
   Vibe      : Fresh, energetic, outdoor sport, urban cycling
   Palette   : --cyan #00b4d8 · --yellow #ffd60a · --navy #023047
               --white #ffffff
   Typography: "Outfit" (headings) · "DM Sans" (body)
   Hero      : Asymmetric diagonal clip-path split — navy/text left,
               vivid bike photo right with skewed yellow accent shape
   Header    : White bar, cyan underline on active/hover links
   Cookie    : Top thin strip (slides down from top)
   Layout    : 1300px max, bold colors, sporty card borders
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --text: #023047;
  --muted: #4a6578;
  --accent: #00b4d8;
  --yellow: #ffd60a;
  --navy: #023047;
  --navy2: #01253b;
  --light: #f0faff;
  --line: #d4edf5;
  --radius: 10px;
  --radius-lg: 20px;
  --maxw: 1300px;
  --hh: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; }
p { font-size: 1rem; }

/* ── LAYOUT ── */
.tc-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.tc-section { padding: 5.5rem 0; }

/* ── COOKIE TOP STRIP ── */
.tc-cookie {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--navy); color: #fff;
  padding: 0.7rem 2rem; display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap; font-size: 0.88rem;
  transform: translateY(0); transition: transform 0.35s;
}
.tc-cookie.tc-hidden { transform: translateY(-110%); }
.tc-cookie p { opacity: 0.88; }
.tc-cookie p a { color: var(--accent); text-decoration: underline; }
.tc-cookie-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.tc-ck-ok {
  background: var(--accent); color: var(--navy); border: none; cursor: pointer;
  padding: 0.35rem 1.1rem; border-radius: 50px; font-weight: 700; font-size: 0.82rem;
  font-family: 'Outfit', sans-serif;
}
.tc-ck-no {
  background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
}
body.cookie-visible { padding-top: 46px; }

/* ── HEADER ── */
.tc-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  height: var(--hh);
  box-shadow: 0 1px 12px rgba(2,48,71,0.06);
}
.tc-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2rem;
}
.tc-logo { display: flex; align-items: center; gap: 0.5rem; }
.tc-logo-wheel {
  width: 36px; height: 36px; border: 3px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.9rem;
}
.tc-logo-name { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.tc-logo-name em { color: var(--accent); font-style: normal; }

.tc-nav { display: flex; align-items: center; gap: 0.2rem; }
.tc-nav a {
  font-size: 0.9rem; font-weight: 600; padding: 0.45rem 1rem;
  color: var(--muted); transition: color 0.2s;
  position: relative; border-radius: var(--radius);
}
.tc-nav a::after {
  content: ''; position: absolute; bottom: 2px; left: 1rem; right: 1rem;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.2s; border-radius: 2px;
}
.tc-nav a:hover, .tc-nav a.tc-active { color: var(--navy); }
.tc-nav a:hover::after, .tc-nav a.tc-active::after { transform: scaleX(1); }
.tc-nav-rent {
  background: var(--accent); color: #fff !important; padding: 0.5rem 1.3rem !important;
  border-radius: 50px; margin-left: 0.4rem;
}
.tc-nav-rent::after { display: none !important; }
.tc-nav-rent:hover { background: #008fb0 !important; color: #fff !important; }

.tc-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.tc-burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

.tc-mnav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0; z-index: 199;
  background: var(--bg); border-bottom: 2px solid var(--line);
  padding: 1.5rem 2rem; flex-direction: column; gap: 0.2rem;
}
.tc-mnav.open { display: flex; }
.tc-mnav a { padding: 0.7rem 0; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.tc-mnav a:hover { color: var(--accent); }
.tc-mnav a:last-child { border-bottom: none; }

/* ── HERO DIAGONAL ── */
.tc-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--hh)); overflow: hidden; position: relative;
}
.tc-hero-left {
  background: var(--navy); position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 5rem 2rem;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.tc-hero-left .tc-wrap { padding: 0; max-width: 520px; margin: 0 0 0 auto; }
.tc-hero-eyebrow { font-size: 0.76rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 1.4rem; }
.tc-hero-left h1 { color: #fff; margin-bottom: 1.2rem; }
.tc-hero-left h1 span { color: var(--yellow); }
.tc-hero-left > .tc-wrap > p { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; font-size: 1.05rem; max-width: 420px; }
.tc-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.tc-btn-cyan { display: inline-block; background: var(--accent); color: #fff; padding: 0.85rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; font-family: 'Outfit', sans-serif; transition: background 0.2s; }
.tc-btn-cyan:hover { background: #008fb0; }
.tc-btn-yellow { display: inline-block; background: var(--yellow); color: var(--navy); padding: 0.85rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; font-family: 'Outfit', sans-serif; transition: opacity 0.2s; }
.tc-btn-yellow:hover { opacity: 0.88; }
.tc-hero-right { position: relative; overflow: hidden; }
.tc-hero-right img { width: 100%; height: 100%; object-fit: cover; }
.tc-hero-accent {
  position: absolute; left: -60px; top: 50%; transform: translateY(-50%);
  width: 120px; height: 300px; background: var(--yellow); z-index: 3;
  clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
  opacity: 0.85;
}

/* ── FEATURES STRIP ── */
.tc-features { background: var(--navy); padding: 4rem 0; }
.tc-features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.tc-feat { text-align: center; padding: 1.5rem; }
.tc-feat-num { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.tc-feat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── BIKES PREVIEW ── */
.tc-bikes-prev { background: var(--light); }
.tc-section-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.tc-section-intro h2 { }
.tc-section-intro h2 span { color: var(--accent); }
.tc-see-all { font-weight: 700; color: var(--accent); font-size: 0.92rem; border-bottom: 2px solid var(--accent); padding-bottom: 2px; }
.tc-bikes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tc-bike-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid transparent; transition: border-color 0.25s, transform 0.25s; }
.tc-bike-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.tc-bike-img { height: 200px; overflow: hidden; position: relative; }
.tc-bike-img img { width: 100%; height: 100%; object-fit: cover; }
.tc-bike-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--yellow); color: var(--navy); font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.06em;
}
.tc-bike-body { padding: 1.5rem; }
.tc-bike-type { font-size: 0.72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.tc-bike-body h3 { margin-bottom: 0.4rem; }
.tc-bike-body p { color: var(--muted); font-size: 0.9rem; }
.tc-bike-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.tc-rate { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.tc-rate span { font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.tc-rent-btn { background: var(--accent); color: #fff; padding: 0.4rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.82rem; transition: background 0.2s; }
.tc-rent-btn:hover { background: #008fb0; }

/* ── TOURS PREVIEW ── */
.tc-tours-prev { background: var(--bg); }
.tc-tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.tc-tour-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 320px; }
.tc-tour-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tc-tour-card:hover img { transform: scale(1.05); }
.tc-tour-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,48,71,0.85) 0%, rgba(2,48,71,0.1) 55%); }
.tc-tour-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 2rem; }
.tc-tour-tag { font-size: 0.72rem; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.tc-tour-content h3 { color: #fff; margin-bottom: 0.4rem; }
.tc-tour-meta { display: flex; gap: 1.2rem; margin-top: 0.6rem; }
.tc-tour-meta span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ── MAP CTA ── */
.tc-map-cta { background: var(--navy); padding: 5rem 0; }
.tc-mc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tc-mc-text h2 { color: #fff; margin-bottom: 1rem; }
.tc-mc-text h2 span { color: var(--yellow); }
.tc-mc-text p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.tc-mc-img { border-radius: var(--radius-lg); overflow: hidden; }
.tc-mc-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── FOOTER ── */
.tc-footer { background: var(--navy2); color: rgba(255,255,255,0.65); padding: 4.5rem 0 2rem; }
.tc-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.tc-ft-brand p { font-size: 0.9rem; line-height: 1.8; margin: 1rem 0; }
.tc-ft-social { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.tc-ft-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: border-color 0.2s; }
.tc-ft-social a:hover { border-color: var(--accent); color: var(--accent); }
.tc-ft-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.2rem; }
.tc-ft-col li { margin-bottom: 0.6rem; }
.tc-ft-col li a { font-size: 0.88rem; transition: color 0.2s; }
.tc-ft-col li a:hover { color: var(--accent); }
.tc-ft-addr { font-size: 0.88rem; line-height: 1.9; }
.tc-ft-addr strong { color: #fff; display: block; margin-bottom: 0.4rem; }
.tc-ft-addr a { color: var(--accent); }
.tc-footer-bottom { display: flex; justify-content: space-between; padding-top: 1.8rem; font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem; }
.tc-footer-bottom a:hover { color: var(--accent); }

/* ── PAGE HERO ── */
.tc-page-hero { background: var(--navy); padding: 3.5rem 0 3rem; }
.tc-page-hero .tc-bc { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.tc-page-hero .tc-bc a:hover { color: var(--accent); }
.tc-page-hero h1 { color: #fff; }
.tc-page-hero h1 span { color: var(--yellow); }
.tc-page-hero p { color: rgba(255,255,255,0.72); margin-top: 0.7rem; font-size: 1.05rem; max-width: 560px; }

/* ── ABOUT INNER ── */
.tc-about-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.tc-about-duo img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tc-about-duo p { color: var(--muted); margin-bottom: 1rem; }
.tc-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.tc-pillar { background: var(--light); border-radius: var(--radius); padding: 1.2rem; border-left: 3px solid var(--accent); }
.tc-pillar h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.tc-pillar p { font-size: 0.86rem; color: var(--muted); }
.tc-team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.tc-team-card img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 0.8rem; }
.tc-team-card h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.tc-team-card p { color: var(--muted); font-size: 0.85rem; }

/* ── BIKES FULL ── */
.tc-bikes-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── TOURS FULL ── */
.tc-tours-full { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tc-tour-full-card { background: var(--light); border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--line); transition: border-color 0.2s; }
.tc-tour-full-card:hover { border-color: var(--accent); }
.tc-tour-full-card img { width: 100%; height: 220px; object-fit: cover; }
.tc-tfc-body { padding: 1.8rem; }
.tc-tfc-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.tc-tag { font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; }
.tc-tag-diff { background: var(--yellow); color: var(--navy); }
.tc-tag-dur { background: var(--light); color: var(--muted); border: 1px solid var(--line); }
.tc-tfc-body h3 { margin-bottom: 0.5rem; }
.tc-tfc-body p { color: var(--muted); font-size: 0.9rem; }
.tc-tfc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.tc-tour-price { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.tc-tour-price span { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ── CONTACT ── */
.tc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.tc-form-field { margin-bottom: 1.4rem; }
.tc-form-field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.5rem; color: var(--navy); }
.tc-form-field input, .tc-form-field textarea, .tc-form-field select {
  width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--line); border-radius: var(--radius);
  background: var(--light); font-family: 'DM Sans', sans-serif; font-size: 0.97rem; color: var(--text);
  transition: border-color 0.2s;
}
.tc-form-field input:focus, .tc-form-field textarea:focus { outline: none; border-color: var(--accent); }
.tc-form-field textarea { resize: vertical; min-height: 140px; }
.tc-contact-info h3 { margin-bottom: 1.5rem; }
.tc-ci { display: flex; gap: 1rem; margin-bottom: 1.4rem; align-items: flex-start; }
.tc-ci-ico { width: 42px; height: 42px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.tc-ci-body strong { display: block; margin-bottom: 0.2rem; font-size: 0.9rem; }
.tc-ci-body p { color: var(--muted); font-size: 0.88rem; }

/* ── PRIVACY ── */
.tc-prose { max-width: 820px; }
.tc-prose h2 { font-size: 1.8rem; margin: 2.5rem 0 0.8rem; color: var(--accent); }
.tc-prose h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.tc-prose p, .tc-prose li { font-size: 0.97rem; color: var(--muted); line-height: 1.9; }
.tc-prose ul { padding-left: 1.5rem; list-style: disc; margin: 0.8rem 0; }
.tc-prose li { margin-bottom: 0.4rem; }
.tc-prose a { color: var(--accent); text-decoration: underline; }

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .tc-hero { grid-template-columns: 1fr; min-height: auto; }
  .tc-hero-left { clip-path: none; padding: 4rem 2rem; max-width: 100%; }
  .tc-hero-left .tc-wrap { margin: 0; max-width: 100%; }
  .tc-hero-right { height: 320px; }
  .tc-hero-accent { display: none; }
  .tc-features-row { grid-template-columns: repeat(2, 1fr); }
  .tc-bikes-grid, .tc-bikes-full { grid-template-columns: repeat(2, 1fr); }
  .tc-tours-grid, .tc-tours-full { grid-template-columns: 1fr; }
  .tc-mc-inner { grid-template-columns: 1fr; gap: 3rem; }
  .tc-footer-grid { grid-template-columns: 1fr 1fr; }
  .tc-contact-grid { grid-template-columns: 1fr; }
  .tc-about-duo { grid-template-columns: 1fr; }
  .tc-team-row { grid-template-columns: repeat(2, 1fr); }
  .tc-pillars { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE 560px ── */
@media (max-width: 560px) {
  .tc-nav { display: none; }
  .tc-burger { display: flex; }
  .tc-bikes-grid, .tc-bikes-full { grid-template-columns: 1fr; }
  .tc-features-row { grid-template-columns: repeat(2, 1fr); }
  .tc-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tc-section { padding: 3.5rem 0; }
  .tc-footer-bottom { flex-direction: column; text-align: center; }
  .tc-cookie { flex-direction: column; text-align: center; gap: 0.6rem; padding: 1rem; }
}
