/*
Theme Name: The Blades Studio 11
Theme URI: https://thebladestudio.com
Author: The Blades Studio
Description: Custom WordPress theme for The Blades Studio barbershop — bilingual BG/EN
Version: 5.1
*/

/* =============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================= */
:root {
  --bg-primary:       #0d0d0d;
  --bg-secondary:     #111111;
  --bg-card:          #1e1e1e;
  --bg-card-hover:    #252525;
  --accent-red:       #B0111E;
  --accent-red-hover: #8e0e18;
  --accent-red-bg:    rgba(212, 43, 58, 0.15);
  --text-primary:     #ffffff;
  --text-secondary:   #aaaaaa;
  --text-muted:       #555555;
  --border-color:     rgba(255, 255, 255, 0.08);
  --radius-sm:        8px;
  --radius-md:        12px;
  --radius-lg:        18px;
  --radius-pill:      50px;
  --transition:       0.3s ease;
  --container-max:    1280px;
  --header-height:    70px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
svg { flex-shrink: 0; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary { background-color: var(--accent-red); color: #fff; }
.btn-primary:hover { background-color: var(--accent-red-hover); transform: translateY(-1px); }
.btn-secondary {
  background-color: rgba(255,255,255,0.09);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background-color: rgba(255,255,255,0.15); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background-color: var(--accent-red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 22px; color: #fff;
}
.logo-text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; }
.logo-icon--image { background: none; }
.logo-icon--image img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; display: block; }

/* Desktop Nav */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 15px;
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  opacity: 0.82;
}
.site-nav a:hover, .site-nav a.active { opacity: 1; background-color: rgba(255,255,255,0.07); }

/* Header CTA */
.header-cta { display: flex; align-items: center; flex-shrink: 0; }
.btn-booking-header {
  background-color: var(--accent-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.btn-booking-header:hover { background-color: var(--accent-red-hover); }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  background: none; border: none;
  z-index: 1001;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px; transition: var(--transition);
}
.burger-btn.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  padding: 90px 32px 36px;
}
.mobile-menu.is-open { display: flex; }
.mobile-nav { display: flex; flex-direction: column; flex: 1; }
.mobile-nav a {
  font-size: 22px; font-weight: 600;
  color: var(--text-primary);
  padding: 18px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent-red); }

/* Mobile Bottom Bar — Booking + Language Toggle */
.mobile-menu-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.btn-booking-mobile {
  flex: 1;
  background-color: var(--accent-red);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600;
  text-align: center;
  transition: var(--transition);
}
.btn-booking-mobile:hover { background-color: var(--accent-red-hover); }

/* Language Toggle (shared style for mobile + footer) */
.lang-toggle {
  display: flex; align-items: center;
  background-color: var(--bg-card);
  border-radius: var(--radius-pill);
  padding: 4px; gap: 2px;
}
.lang-btn {
  padding: 8px 14px;
  border: none; border-radius: var(--radius-pill);
  background: none;
  color: var(--text-secondary);
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.lang-btn.active { background-color: var(--accent-red); color: #fff; }
.lang-btn:hover:not(.active) { background-color: rgba(255,255,255,0.07); color: #fff; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* ─────────────────────────────────────────────
   HERO BACKGROUND IMAGE
   HOW TO CHANGE:
   1. Upload your image via WordPress Admin → Media → Add New
   2. Copy the File URL from the attachment page
   3. Replace the URL in front-page.php inside the hero-bg div's style attribute
   ───────────────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.62) 50%,
    rgba(0,0,0,0.88) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 880px;
  margin: 0 auto;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff; line-height: 1;
  margin-bottom: 20px;
}
.hero-subtitle { font-size: clamp(16px, 2.5vw, 20px); font-weight: 600; color: #fff; margin-bottom: 16px; }
.hero-description {
  font-size: clamp(14px, 1.7vw, 16px);
  color: rgba(255,255,255,0.84);
  max-width: 650px; margin: 0 auto 14px;
  line-height: 1.75;
}
.hero-description-2 {
  font-size: clamp(14px, 1.7vw, 16px);
  color: rgba(255,255,255,0.84);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 50px;
}
.hero-buttons .btn { min-width: 210px; }

/* Hero Feature Cards */
.hero-features {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px; margin: 0 auto;
  padding: 0 24px 60px;
}
.feature-card {
  background-color: rgba(18,18,18,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 26px 16px; text-align: center;
  transition: var(--transition);
}
.feature-card:hover { background-color: rgba(30,30,30,0.88); transform: translateY(-3px); }
.feature-card svg {
  width: 30px; height: 30px;
  stroke: var(--accent-red);
  margin: 0 auto 10px; display: block;
}
.feature-card-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.feature-card-badge {
  font-size: 11px; font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase; letter-spacing: 1.2px;
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section { padding: 80px 0; background-color: var(--bg-primary); }
.team-card {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  max-width: 920px; margin: 0 auto;
  min-height: 480px;
  display: flex; align-items: flex-end;
}

/* ─────────────────────────────────────────────
   TEAM BACKGROUND IMAGE
   HOW TO CHANGE:
   1. Upload your team photo via WordPress Admin → Media → Add New
   2. Copy the File URL
   3. Replace the URL in front-page.php inside the team-card-bg div's style attribute
   ───────────────────────────────────────────── */
.team-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 45%;
}
.team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.05) 100%
  );
}
.team-card-content {
  position: absolute; z-index: 1;
  bottom: 0; left: 0; right: 0;
  padding: 40px 48px;
  text-align: left;
  max-width: 100%;
}
.team-card-content h2 { font-size: 48px; font-weight: 900; margin-bottom: 12px; line-height: 1; }
.team-card-content p { font-size: 15px; color: rgba(255,255,255,0.84); margin-bottom: 24px; line-height: 1.6; max-width: 560px; }

/* =============================================
   CONTACTS SECTION
   ============================================= */
.contacts-section { padding: 80px 0; background-color: var(--bg-primary); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
  display: inline-block;
  padding: 7px 20px;
  border: 1.5px solid var(--accent-red);
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent-red); margin-bottom: 18px;
}
.section-title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900; text-align: center; margin-bottom: 48px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px; margin: 0 auto;
}
.contact-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--transition);
}
.contact-card:hover { background-color: var(--bg-card-hover); border-color: rgba(212,43,58,0.35); }
.contact-card-icon {
  width: 46px; height: 46px; min-width: 46px;
  background-color: var(--accent-red-bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--accent-red); }
.contact-card-info h4 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.contact-card-info p, .contact-card-info a { font-size: 14px; color: var(--accent-red); line-height: 1.6; }
.contact-card-info a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 44px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Follow block */
.footer-follow { display: flex; flex-direction: column; gap: 6px; }
.footer-follow-label { font-weight: 700; font-size: 15px; color: #fff; }
.footer-follow-text { font-size: 13px; color: var(--text-secondary); max-width: 220px; line-height: 1.55; }

/* Social icons */
.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: #fff;
}
.footer-social a:hover { background-color: var(--accent-red); border-color: var(--accent-red); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* Language block */
.footer-lang { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; }
.footer-lang-label { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

/* Footer bottom */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border-color);
}
.footer-copyright, .footer-rights { font-size: 13px; color: var(--text-muted); }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .burger-btn { display: flex; }
  .team-card-content h2 { font-size: 40px; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; min-width: unset; }
  .hero-features { gap: 10px; }

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

  .team-card { min-height: 420px; }
  .team-card-bg {
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: var(--bg-primary);
  }
  .team-card-content { padding: 24px; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-follow-text { max-width: 100%; }
  .footer-lang { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-features { gap: 8px; }
  .feature-card { padding: 18px 10px; }
  .feature-card-title { font-size: 12px; }
  .feature-card-badge { font-size: 10px; }
}

/* =============================================
   SERVICES PAGE — page-uslugi.php
   ============================================= */

/* Hero */
.services-hero {
  background: var(--bg-primary);
  padding: 120px 0 60px;
  text-align: center;
}
.services-hero__inner { max-width: 760px; margin: 0 auto; }
.services-hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 20px 0 24px;
}
.services-hero__sub {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* Grid */
.services-grid-section { padding: 60px 0 100px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Card image */
.service-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__image-placeholder {
  width: 100%; height: 100%;
  background: var(--bg-secondary);
}
.service-card__duration {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* Card body */
.service-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.service-card__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--accent-red-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-red);
}
.service-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-primary);
}
.service-card__desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.service-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
}
.service-card__book {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 15px;
  transition: opacity var(--transition);
}
.service-card__book:hover { opacity: 0.75; }

/* =============================================
   SERVICES — RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-hero { padding: 100px 0 40px; }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card__image-wrap { aspect-ratio: 16 / 9; }
  .service-card__name { font-size: 18px; }
}

/* =============================================
   TEAM PAGE — page-ekim.php
   ============================================= */

/* Hero */
.ekim-hero {
  background: var(--bg-primary);
  padding: 120px 0 60px;
  text-align: center;
}
.ekim-hero__inner { max-width: 760px; margin: 0 auto; }
.ekim-hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 20px 0 24px;
}
.ekim-hero__sub {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

/* Grid */
.ekim-grid-section { padding: 60px 0 100px; }
.ekim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Barber Card ---- */
.barber-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Photo */
.barber-card__photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
}
.barber-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.barber-card__photo--placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-secondary);
}

/* Badge (top-right scissors icon) */
.barber-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(212, 43, 58, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.barber-card__badge svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* Body */
.barber-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.barber-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
}
.barber-card__role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.barber-card__exp {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

/* Expandable skills panel */
.barber-card__skills-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  margin-bottom: 0;
}
.barber-card__skills-panel.is-open {
  max-height: 600px;
  opacity: 1;
  margin-bottom: 12px;
}

/* Bio text */
.barber-card__bio {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Skills table */
.barber-card__skills {
  padding: 0 4px;
}
.barber-card__skills-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.barber-card__skills-heading span { font-weight: 800; }
.barber-card__skills-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
  flex-shrink: 0;
}
.barber-card__skills-icon svg { width: 100%; height: 100%; }
.barber-card__skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-color);
}
.barber-card__skill-row:last-child { border-bottom: none; }
.barber-card__skill-name {
  font-size: 14px;
  color: var(--text-secondary);
}
.barber-card__stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 16px;
  height: 16px;
}
.star--filled {
  fill: var(--accent-red);
  stroke: var(--accent-red);
}
.star--empty {
  fill: none;
  stroke: var(--text-muted);
}

/* Actions row */
.barber-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.barber-card__book {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  font-size: 14px;
}
.barber-card__ig {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.barber-card__ig:hover { border-color: var(--accent-red); }
.barber-card__ig svg { width: 20px; height: 20px; }

/* Toggle button */
.barber-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  margin-top: 4px;
}
.barber-card__toggle:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.15);
}
.barber-card__toggle-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.barber-card__toggle[aria-expanded="true"] .barber-card__toggle-icon {
  transform: rotate(180deg);
}

/* ============================================
   TEAM PAGE — RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .ekim-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ekim-hero { padding: 100px 0 40px; }
  .ekim-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .barber-card__photo-wrap { aspect-ratio: 4 / 3; }
}

/* =============================================
   WORK WITH US PAGE — page-rabotete-s-nas.php
   ============================================= */

/* Hero */
.rabotete-hero {
  background: var(--bg-primary);
  padding: 120px 0 80px;
  text-align: center;
}
.rabotete-hero__inner { max-width: 700px; margin: 0 auto; }
.rabotete-hero__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  text-transform: uppercase;
  margin: 20px 0 24px;
}
.rabotete-hero__sub {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Feature cards */
.rabotete-features { padding: 20px 0 80px; }
.rabotete-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rabotete-feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rabotete-feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-red-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rabotete-feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-red);
}
.rabotete-feature-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
}
.rabotete-feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Form section */
.rabotete-form-section { padding: 0 0 100px; }
.rabotete-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 52px 60px;
  max-width: 780px;
  margin: 0 auto;
}
.rabotete-form-card__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.05;
}
@media (max-width: 480px) {
  .rabotete-form-card__heading { font-size: 27px; }
}

/* Form layout */
.rabotete-form { display: flex; flex-direction: column; gap: 20px; }
.rabotete-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rabotete-form__group { display: flex; flex-direction: column; gap: 8px; }
.rabotete-form__group--full { grid-column: 1 / -1; }

.rabotete-form__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.rabotete-form__input,
.rabotete-form__select,
.rabotete-form__textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.rabotete-form__input::placeholder,
.rabotete-form__textarea::placeholder { color: var(--text-muted); }
.rabotete-form__input:focus,
.rabotete-form__select:focus,
.rabotete-form__textarea:focus { border-color: var(--accent-red); }

/* Select wrapper (custom chevron) */
.rabotete-form__select-wrap { position: relative; }
.rabotete-form__select { padding-right: 40px; cursor: pointer; }
.rabotete-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--text-secondary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.rabotete-form__select option { background: var(--bg-card); color: var(--text-primary); }

.rabotete-form__textarea { resize: vertical; min-height: 140px; }

/* Submit button */
.rabotete-form__submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* Error / success states */
.rabotete-form-error {
  background: rgba(212, 43, 58, 0.12);
  border: 1px solid rgba(212, 43, 58, 0.35);
  border-radius: var(--radius-md);
  color: #B0111E;
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 8px;
}
.rabotete-form-success {
  text-align: center;
  padding: 40px 0;
  display: none !important;
}
.rabotete-form-success:not([hidden]) {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.rabotete-form-success svg {
  width: 56px;
  height: 56px;
  color: var(--accent-red);
}
.rabotete-form-success h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 40px;
  text-transform: uppercase;
}
.rabotete-form-success p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* =============================================
   WORK WITH US — RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .rabotete-features__grid { grid-template-columns: repeat(2, 1fr); }
  .rabotete-form-card { padding: 40px 36px; }
}
@media (max-width: 640px) {
  .rabotete-hero { padding: 100px 0 60px; }
  .rabotete-features__grid { grid-template-columns: 1fr; gap: 12px; }
  .rabotete-feature-card {
    padding: 32px 24px;
    align-items: center;
    text-align: center;
  }
  .rabotete-form-card { padding: 28px 20px; }
  .rabotete-form__row { grid-template-columns: 1fr; }
}
