/* ===================================
   RUMBAREEL MEDIA — MAIN STYLESHEET
   =================================== */

/* ----- VARIABLES ----- */
:root {
  --bg:        #080808;
  --bg-2:      #111111;
  --bg-3:      #1a1a1a;
  --border:    #252525;
  --text:      #f0f0f0;
  --text-muted:#888888;
  --accent:    #E8B84B;
  --accent-2:  #c99a30;
  --white:     #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;

  --nav-h: 70px;
  --max-w: 1200px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ----- LANGUAGE SWITCHER ----- */
.lang-switcher {
  display: flex;
  gap: 3px;
  align-items: center;
  margin-left: 16px;
}

.lang-btn {
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.lang-btn:hover { color: var(--white); border-color: var(--border); }
.lang-btn.active { color: var(--accent); border-color: var(--accent); }

@media (max-width: 768px) {
  .lang-switcher { margin-left: auto; margin-right: 10px; }
}

/* ----- UTILITIES ----- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,184,75,0.3); }

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--nav {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.btn--nav:hover { background: var(--accent-2); }

.btn--full { width: 100%; justify-content: center; }

/* ----- SECTIONS ----- */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.section__sub {
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), border-bottom var(--transition);
}

.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.logo-accent { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links li a:hover { color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 24px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    pointer-events: none;
  }
  .nav__links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav__links li a { display: block; padding: 16px 0; font-size: 15px; }
  .nav__links li:last-child { border-bottom: none; padding-top: 16px; }
  .btn--nav { width: 100%; justify-content: center; }
  .nav__burger { display: flex; }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

/* Animated gradient background */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(232,184,75,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(232,184,75,0.05) 0%, transparent 60%);
  animation: bgPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bgPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* Grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: calc(var(--nav-h) + 60px) 48px 80px 60px;
  max-width: none;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeUp 1s 0.1s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 100px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 40px;
  animation: fadeUp 1s 0.3s ease both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 1s 0.8s ease both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero visual panel (right side) */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #111 0%, #0d0d0d 100%);
  padding-top: var(--nav-h);
}

/* Gold glow radial background */
.hero__visual-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 60% 50%, rgba(232,184,75,0.09) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal separator on left edge of right panel */
.hero__visual::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 64px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

/* Film strip perforations on right edge */
.hero__visual::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 22px;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px, transparent 10px,
    var(--bg) 10px, var(--bg) 18px,
    transparent 18px, transparent 28px
  );
  opacity: 0.3;
  z-index: 1;
}

/* Vertical label */
.hero__visual-label {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.35);
  white-space: nowrap;
  z-index: 3;
}

/* Film frame placeholder */
.hero__frame {
  position: relative;
  z-index: 1;
  width: 72%;
  max-width: 300px;
  aspect-ratio: 2/3;
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(145deg, rgba(26,26,26,0.9), rgba(8,8,8,0.7));
  overflow: hidden;
}

/* Gold bottom accent on frame */
.hero__frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Camera icon inside frame */
.hero__frame-icon {
  color: rgba(232,184,75,0.35);
}
.hero__frame-icon svg {
  width: 60px;
  height: 60px;
}

.hero__frame-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.3);
}

/* Film strip perforations across top and bottom of frame */
.hero__frame-strip {
  position: absolute;
  left: -12px;
  right: -12px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
}
.hero__frame-strip--top { top: 0; }
.hero__frame-strip--bottom { bottom: 0; }

.hero__frame-strip span {
  display: block;
  width: 10px;
  height: 12px;
  border: 1px solid rgba(232,184,75,0.15);
  border-radius: 2px;
  background: rgba(0,0,0,0.6);
  flex-shrink: 0;
}

/* ===========================
   SERVICES
   =========================== */
.services {
  background: var(--bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-2);
  padding: 40px 32px;
  transition: background var(--transition);
}
.service-card:hover { background: var(--bg-3); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-card__link:hover { text-decoration: underline; }

.service-card--cta {
  background: linear-gradient(135deg, rgba(232,184,75,0.08), rgba(232,184,75,0.02));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px !important;
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio {
  position: relative;
  overflow: hidden;
}

/* Film strip accent line at top of portfolio section */
.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 16px,
    rgba(232,184,75,0.25) 16px, rgba(232,184,75,0.25) 24px
  );
}

.portfolio__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.portfolio__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-3);
}

.portfolio__grid:active { cursor: grabbing; }

.portfolio__grid::-webkit-scrollbar { height: 4px; }
.portfolio__grid::-webkit-scrollbar-track { background: var(--bg-3); border-radius: 2px; }
.portfolio__grid::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.portfolio-item {
  flex: 0 0 clamp(260px, 34vw, 400px);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition);
}
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-item.hidden { display: none; }

.portfolio-item__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Gradient placeholders — replace with real thumbnail images */
.portfolio-item__thumb        { background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%); }
.portfolio-item__thumb--2     { background: linear-gradient(135deg, #1a1a2a 0%, #0a1a2a 100%); }
.portfolio-item__thumb--3     { background: linear-gradient(135deg, #2a1a1a 0%, #1a0a0a 100%); }
.portfolio-item__thumb--4     { background: linear-gradient(135deg, #1a2a1a 0%, #0a1a0a 100%); }
.portfolio-item__thumb--5     { background: linear-gradient(135deg, #2a2a1a 0%, #1a1a0a 100%); }
.portfolio-item__thumb--6     { background: linear-gradient(135deg, #1a1a1a 0%, #2a0a2a 100%); }

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-start;
  padding: 12px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }

.portfolio-item__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 2px;
}

.portfolio-item__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.portfolio-item:hover .portfolio-item__play {
  background: var(--accent);
  color: var(--bg);
  transform: translate(-50%, -50%) scale(1.1);
}
.portfolio-item__play svg { width: 20px; height: 20px; margin-left: 2px; }

.portfolio-item__info {
  padding: 14px 0 4px;
}
.portfolio-item__info h4 {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-item__info p { font-size: 13px; color: var(--text-muted); }

.portfolio__scroll-hint {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 10px 0 4px;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

.portfolio__more {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--bg-2);
  overflow: hidden;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-frame {
  position: relative;
}

.about__img-placeholder {
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.about__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,184,75,0.05), transparent);
}

.about__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  pointer-events: none;
}

.about__text .section__title { text-align: left; }
.about__text .section__eyebrow { text-align: left; }

.about__lead {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent);
  letter-spacing: 0.03em;
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 860px) {
  .about__layout { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 400px; margin: 0 auto; width: 100%; }
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.testimonial-card__stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}
.testimonial-card__author span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ===========================
   BOOKING
   =========================== */
.booking {
  background: var(--bg-2);
}

.booking__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* Form */
.booking__form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,184,75,0.12);
}

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-group select option { background: var(--bg-2); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Input validation */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e04040;
}

/* Info sidebar */
.booking__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking__info-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.booking__info-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-list li a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-list li a:hover { color: var(--accent); }

.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.process-list li span {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  min-width: 28px;
}

@media (max-width: 1000px) {
  .booking__layout { grid-template-columns: 1fr; }
  .booking__info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .booking__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .booking__info { grid-template-columns: 1fr; }
}

/* ===========================
   CONTACT CTA BAND
   =========================== */
.contact {
  background: var(--bg);
  padding: 80px 0;
}

.contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
  background: linear-gradient(135deg, rgba(232,184,75,0.04), transparent);
}

.contact__text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.05;
}
.contact__text p { color: var(--text-muted); margin-top: 8px; }

.contact__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .contact__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .contact__actions { justify-content: center; }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  padding: 64px 24px;
}

.footer__brand .logo-text { font-size: 20px; }
.footer__brand p {
  max-width: 280px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

.footer__links h5,
.footer__social h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links ul li a:hover { color: var(--white); }

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link:hover { color: var(--accent); }

.contact__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}
.social-icon-btn svg { width: 18px; height: 18px; }
.social-icon-btn:hover { color: var(--accent); border-color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer__bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--accent); }

@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
}

/* ===========================
   TOAST NOTIFICATION
   =========================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--accent);
  color: var(--bg);
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast svg { width: 18px; height: 18px; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MOBILE BREAKPOINTS
   =========================== */

/* Hero: use dynamic viewport height so mobile browser chrome doesn't cut it off */
@supports (min-height: 100dvh) {
  .hero { min-height: 100dvh; }
}

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }
  .container { padding: 0 16px; }

  /* Hero: collapse to single column, re-center */
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }
  .hero__content {
    text-align: center;
    padding: calc(var(--nav-h) + 48px) 24px 64px;
  }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__ctas { justify-content: center; }
  .hero__visual { display: none; }

  /* Portfolio: narrower cards on mobile */
  .portfolio-item { flex: 0 0 260px; }
}

/* Testimonials: 2-col on tablets before collapsing to 1 */
@media (min-width: 580px) and (max-width: 860px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

/* Phone (≤ 480px) */
@media (max-width: 480px) {
  /* Global */
  .section { padding: 48px 0; }
  .section__header { margin-bottom: 28px; }
  .hero__scroll-hint { display: none; }
  .lang-btn { padding: 6px 8px; font-size: 10px; min-height: 36px; }

  /* Services */
  .service-card { padding: 28px 20px; }

  /* Portfolio */
  .portfolio__filters { gap: 6px; }
  .filter-btn { padding: 10px 16px; min-height: 44px; font-size: 12px; }

  /* About — stats wrap to 2×2 so numbers don't squeeze */
  .about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat__number { font-size: 32px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Booking */
  .booking__info-card { padding: 24px 20px; }

  /* Contact CTA */
  .contact__inner { padding: 32px 20px; }
  .contact__social { gap: 8px; }
  .social-icon-btn { width: 46px; height: 46px; } /* larger touch target */

  /* Footer */
  .footer__inner { padding: 40px 16px; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
