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

:root {
  --red: #F5900A;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;
  --gray: #2A2A2A;
  --light-gray: #888;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ===== TOPBAR ===== */
.topbar { background: var(--red); padding: 8px 0; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; transition: transform 0.3s ease; }
.topbar-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: white; text-decoration: none; opacity: 0.9; }
.topbar a:hover { opacity: 1; }
.topbar-links { display: flex; gap: 24px; }

/* ===== HEADER ===== */
header { background: var(--dark2); position: fixed; top: 38px; left: 0; right: 0; z-index: 1000; border-bottom: 1px solid #222; transition: box-shadow 0.3s; }
header.scrolled { background: var(--dark2); border-bottom-color: #222; box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: white; text-decoration: none; }
.logo span { color: var(--red); }
nav { display: flex; align-items: center; gap: 32px; }
nav a { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #ccc; text-decoration: none; transition: color 0.2s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.3s; }
nav a:hover, nav a.active { color: white; }
nav a:hover::after, nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: white; text-decoration: none; letter-spacing: 1px; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--red); color: white; padding: 12px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; display: inline-block; clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); }
.btn-primary:hover { background: #d47800; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--red); padding: 12px 28px; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: 2px solid var(--red); cursor: pointer; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { background: var(--red); color: white; }
.btn-dark { background: #0D0D0D; color: white; padding: 16px 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.2s; display: inline-block; text-decoration: none; clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

/* ===== MOBILE NAV ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; inset: 0; top: 80px; background: #0D0D0D; z-index: 999; flex-direction: column; padding: 40px; gap: 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #ccc; text-decoration: none; transition: color 0.2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--red); }

/* ===== CONTAINER ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* ===== SECTION ===== */
.section { padding: 100px 0; }
.section-tag { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-tag::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px,5vw,60px); font-weight: 900; text-transform: uppercase; letter-spacing: -1px; line-height: 1; margin-bottom: 20px; }
.section-title em { color: var(--red); font-style: normal; }
.section-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }

/* ===== PAGE HERO ===== */
.page-hero { background: #141414; border-bottom: 1px solid #222; padding: 140px 0 60px; }
.breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 13px; color: #555; margin-bottom: 24px; }
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #444; }
.page-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(48px,7vw,90px); font-weight: 900; text-transform: uppercase; letter-spacing: -2px; line-height: 1; }
.page-title em { color: var(--red); font-style: normal; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 60px; }
.service-card { background: #141414; padding: 40px 36px; border: 1px solid #1C1C1C; transition: border-color 0.3s, transform 0.3s; cursor: pointer; position: relative; overflow: hidden; text-decoration: none; color: white; display: block; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(245,144,10,0.05) 0%,transparent 60%); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(245,144,10,0.3); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 52px; height: 52px; background: rgba(245,144,10,0.1); border: 1px solid rgba(245,144,10,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--red); }
.service-num { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--red); margin-bottom: 12px; opacity: 0.6; }
.service-name { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.service-arrow { position: absolute; bottom: 32px; right: 32px; color: var(--red); opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* ===== WHY CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 60px; }
.why-card { padding: 36px 28px; border: 1px solid #1C1C1C; background: #141414; text-align: center; transition: border-color 0.3s; }
.why-card:hover { border-color: rgba(245,144,10,0.3); }
.why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: rgba(245,144,10,0.15); line-height: 1; margin-bottom: 8px; }
.why-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.why-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-top: 60px; }
.portfolio-item { position: relative; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.portfolio-item.large { grid-column: span 1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.85) 0%,transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 24px; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.portfolio-cat { font-size: 12px; color: var(--red); letter-spacing: 2px; text-transform: uppercase; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testimonial { background: #0D0D0D; border: 1px solid #1C1C1C; padding: 36px; }
.testimonial-stars { color: var(--red); font-size: 16px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { font-weight: 600; font-size: 14px; }
.testimonial-car { font-size: 12px; color: #555; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--red); padding: 80px 0; }
.cta-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,4vw,54px); font-weight: 900; text-transform: uppercase; letter-spacing: -1px; line-height: 1.1; }
.cta-sub { font-size: 16px; opacity: 0.85; margin-top: 8px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.contact-card { background: #141414; border: 1px solid #222; padding: 28px; display: flex; gap: 20px; margin-bottom: 20px; }
.contact-card-icon { width: 48px; height: 48px; background: rgba(245,144,10,0.1); border: 1px solid rgba(245,144,10,0.2); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 6px; }
.contact-card-value { font-size: 16px; font-weight: 600; color: white; }
.contact-card-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.cc-form { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cc-input { background: #141414; border: 1px solid #2A2A2A; padding: 14px 20px; color: white; font-family: 'Barlow', sans-serif; font-size: 15px; outline: none; transition: border-color 0.2s; width: 100%; }
.cc-input:focus { border-color: var(--red); }
.cc-input::placeholder { color: #555; }
textarea.cc-input { resize: vertical; min-height: 140px; }
select.cc-input { appearance: none; cursor: pointer; }
.form-note { font-size: 12px; color: #555; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-img-secondary { position: absolute; width: 55%; aspect-ratio: 4/3; object-fit: cover; bottom: -40px; right: -40px; border: 4px solid #0D0D0D; }
.about-badge { position: absolute; top: 32px; left: -32px; background: var(--red); padding: 20px 28px; }
.about-badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; line-height: 1; color: white; }
.about-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.about-text p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }
.feature-item::before { content: ''; display: block; width: 8px; height: 8px; background: var(--red); flex-shrink: 0; }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 60px; }
.service-detail-card { background: #141414; border: 1px solid #1C1C1C; padding: 48px 40px; transition: border-color 0.3s; }
.service-detail-card:hover { border-color: rgba(245,144,10,0.2); }
.service-detail-name { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; margin-top: 28px; }
.service-detail-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; }
.service-detail-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-detail-list li { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; }
.service-detail-list li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }

/* ===== LOCATION CARDS ===== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.location-card { background: #141414; border: 1px solid #1C1C1C; padding: 40px; }
.location-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.location-card-title svg { color: var(--red); flex-shrink: 0; }
.location-card-addr { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; white-space: pre-line; }
.location-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.location-tag { font-size: 12px; background: #0D0D0D; border: 1px solid #2A2A2A; padding: 6px 14px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

/* ===== MAP ===== */
.map-wrap { margin-top: 40px; height: 320px; overflow: hidden; border: 1px solid #222; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg); }

/* ===== FILTER BUTTONS ===== */
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }
.filter-btn { background: #141414; color: #888; border: 1px solid #2A2A2A; padding: 10px 24px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--red); color: white; border-color: var(--red); }

/* ===== FOOTER ===== */
.footer { background: #141414; border-top: 1px solid #222; }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; color: white; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li a { font-size: 14px; color: #666; text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: var(--red); }
.footer-desc { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; background: #1C1C1C; border: 1px solid #2A2A2A; display: flex; align-items: center; justify-content: center; color: #888; transition: all 0.2s; text-decoration: none; }
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-bottom { border-top: 1px solid #1C1C1C; padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #444; flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner a { color: #666; text-decoration: none; }
.footer-bottom-inner a:hover { color: var(--red); }

/* ===== BACK TO TOP ===== */
.back-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--red); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity 0.3s; z-index: 999; border: none; clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
.back-top svg { width: 20px; height: 20px; }
.back-top.visible { opacity: 1; }
.back-top:hover { background: #d47800; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-item.large { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-links { display: none; }
  .topbar-inner { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .phone-link { display: none; }
}

/* Logo image */
.logo-img { display: flex; align-items: center; text-decoration: none; }
.logo-img img { height: 44px; display: block; }
@media (max-width: 768px) {
  .logo-img img { height: 36px; }
}

/* ===== REELS ===== */
.reels-section { padding: 48px 0 0; background: #0D0D0D; }
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.reel-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
  background: #0D0D0D;
}
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.reel-item:hover .reel-video { transform: scale(1.03); }
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.reel-item:hover .reel-overlay { background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%); }
.reel-play {
  width: 60px;
  height: 60px;
  background: rgba(245,144,10,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  clip-path: none;
}
.reel-play svg { width: 24px; height: 24px; margin-left: 4px; }
.reel-item:hover .reel-play { transform: scale(1.1); background: #F5900A; }
.reel-item.playing .reel-play { background: rgba(255,255,255,0.2); }
.reel-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
/* Pause icon when playing */
.reel-item.playing .reel-play svg { display: none; }
.reel-item.playing .reel-play::before,
.reel-item.playing .reel-play::after {
  content: '';
  display: block;
  width: 4px;
  height: 16px;
  background: white;
  border-radius: 2px;
  margin: 0 3px;
}
.reel-item.playing .reel-play { display: flex; flex-direction: row; align-items: center; justify-content: center; }

@media (max-width: 768px) {
  .reels-grid { grid-template-columns: 1fr; gap: 4px; }
  .reel-item { aspect-ratio: 9/16; max-height: 70vh; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== PAGE HERO WITH BG IMAGE ===== */
.page-hero-bg {
  position: relative;
  border-bottom: 1px solid #222;
  padding: 100px 0 70px;
  overflow: hidden;
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(0.8);
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.45) 50%, rgba(13,13,13,0.15) 100%);
  z-index: 1;
}
.page-hero-bg .container {
  position: relative;
  z-index: 2;
}
.page-hero-bg .breadcrumb { margin-bottom: 24px; }
.page-hero-bg .page-title { text-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.page-hero-bg.bg-hizmetler::before { background-image: url('img/page-hizmetler.jpg'); }
.page-hero-bg.bg-hakkimizda::before { background-image: url('img/page-hakkimizda.jpg'); }
.page-hero-bg.bg-portfolyo::before { background-image: url('img/page-galeri.jpg'); }
.page-hero-bg.bg-iletisim::before { background-image: url('img/page-iletisim.jpg'); }

/* ===== YT BACKGROUND ===== */
.yt-bg { display: block; }
@media (max-width: 768px) {
  /* Mobilde video yüklenmesin, fotoğraf fallback görünsün */
  .yt-bg { display: none; }
}

/* İç sayfalarda header fixed olduğu için padding-top ekle */
.page-hero-bg { padding-top: 160px; padding-bottom: 70px; }
.inner-page header { background: var(--dark2); border-bottom-color: #222; }
.inner-page .page-hero, .inner-page .page-hero-bg { padding-top: 180px; }

/* ===== SABİT SAĞ BUTONLAR ===== */
.side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.side-btn {
  width: 72px;
  background: #F5900A;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
  border: none;
}
.side-btn:nth-child(2) { background: #1C1C1C; }
.side-btn:nth-child(3) { background: #141414; }
.side-btn:hover { background: #d47800; width: 80px; }
.side-btn:nth-child(2):hover { background: #2A2A2A; }
.side-btn:nth-child(3):hover { background: #222; }
.side-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

@media (max-width: 768px) {
  .side-btns { display: none; }
}

/* ===== WHATSAPP BUTONU ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 90px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.whatsapp-btn svg { width: 30px; height: 30px; }
@media (max-width: 768px) {
  .whatsapp-btn { right: 20px; bottom: 24px; }
}
