/* ===== KLN GARAGE — Stylesheet ===== */
:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --bg-3: #1a1a1a;
  --card: #161616;
  --gold: #d4af37;
  --gold-2: #f4cf5a;
  --red: #c1272d;
  --red-2: #e63946;
  --text: #f5f5f5;
  --muted: #a0a0a0;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --grad-gold: linear-gradient(135deg,#d4af37 0%,#f4cf5a 50%,#d4af37 100%);
  --grad-red: linear-gradient(135deg,#c1272d 0%,#e63946 50%,#8b0000 100%);
  --container: 1200px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .3s ease; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.hide-mobile { display: inline-block; }

h1,h2,h3,h4,h5 { font-family:'Bebas Neue',sans-serif; letter-spacing:1px; line-height:1.1; }


/* ===== Topbar ===== */
.topbar {
  background: linear-gradient(90deg, #000 0%, #1a0000 100%);
  border-bottom:1px solid var(--border);
  padding:8px 0;
  font-size:13px;
}
.topbar-inner {
  display:flex; justify-content:space-between; align-items:center; gap:12px;
}
.topbar a { color:#ddd; margin-right:18px; }
.topbar a:hover { color: var(--gold); }
.topbar a i { color: var(--gold); margin-right:6px; }
.topbar-wa {
  background: #25D366; color:#fff !important; padding:4px 14px; border-radius:20px;
  font-weight:600;
}
.topbar-wa:hover { background:#128C7E; color:#fff !important; }
.topbar-wa i { color:#fff !important; }
.topbar-right { display:flex; align-items:center; gap:10px; }
.topbar-social {
  width:28px; height:28px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(212,175,55,0.12); color: var(--gold) !important;
  margin:0 !important; font-size:13px;
  transition: all .3s ease;
}
.topbar-social:hover { background: var(--gold); color:#000 !important; transform: translateY(-2px); }
.topbar-social i { color: inherit !important; margin: 0 !important; }

/* ===== Header ===== */
.site-header {
  position: sticky; top:0; z-index:1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s ease;
}
.site-header.scrolled { padding: 0; box-shadow: var(--shadow); }
.header-inner {
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 20px; gap:20px;
}
.brand { display:flex; align-items:center; gap:12px; }
.brand img { height:55px; width:auto; }
.brand-text { display:flex; flex-direction:column; line-height:1; }
.brand-name {
  font-family:'Bebas Neue',sans-serif; font-size:24px;
  background: var(--grad-gold); -webkit-background-clip:text;
  background-clip:text; color:transparent; letter-spacing:2px;
}
.brand-sub { font-size:9px; letter-spacing:2px; color:var(--muted); margin-top:2px; }

.main-nav { display:flex; align-items:center; gap:6px; }
.main-nav a {
  padding:10px 14px; font-size:14px; font-weight:600;
  color:#ddd; position:relative; letter-spacing:0.5px;
}
.main-nav a:not(.nav-cta):hover { color:var(--gold); }
.main-nav a:not(.nav-cta).active { color:var(--gold); }
.main-nav a:not(.nav-cta)::after {
  content:''; position:absolute; bottom:5px; left:14px; right:14px;
  height:2px; background: var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .3s ease;
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after { transform:scaleX(1); }
.nav-cta {
  background: #25D366; color:#fff !important; padding:10px 18px !important;
  border-radius:30px; margin-left:8px;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.nav-cta:hover { background:#128C7E; transform: translateY(-2px); }

.nav-toggle {
  display:none; background:none; border:none; cursor:pointer;
  flex-direction:column; gap:5px; padding:8px;
}
.nav-toggle span {
  width:26px; height:3px; background:var(--gold); border-radius:2px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position:relative; min-height: 92vh;
  display:flex; align-items:center; overflow:hidden;
  background: #000;
}
.hero-bg {
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index:0;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.3) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(10,0,0,0.85) 100%);
}
.hero-overlay::after {
  content:''; position:absolute; inset:0; opacity:.25; pointer-events:none;
  background: radial-gradient(circle at 80% 40%, rgba(193,39,45,0.4), transparent 50%);
}
.hero-content { position:relative; z-index:2; padding:80px 0; width:100%; }
.hero-scroll-indicator {
  position:absolute; bottom:30px; left:50%; transform: translateX(-50%);
  z-index:2; width:24px; height:38px; border:2px solid var(--gold);
  border-radius:14px; display:flex; justify-content:center; padding-top:6px;
  opacity:.7;
}
.hero-scroll-indicator span {
  display:block; width:3px; height:8px; background:var(--gold);
  border-radius:2px; animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity:1; }
  100% { transform: translateY(14px); opacity:0; }
}
.hero-badge {
  display:inline-block; padding:8px 20px; border:1px solid var(--gold);
  border-radius:30px; font-size:12px; letter-spacing:3px; color:var(--gold);
  margin-bottom:24px; text-transform:uppercase; font-weight:600;
  background: rgba(212,175,55,0.05);
}
.hero h1 {
  font-size: clamp(40px, 7vw, 92px); font-weight:900;
  margin-bottom:20px;
}
.hero h1 .accent {
  background: var(--grad-gold); -webkit-background-clip:text;
  background-clip:text; color:transparent;
  display:inline-block;
}
.hero p {
  font-size: clamp(15px, 1.6vw, 19px); color:#d0d0d0;
  max-width:640px; margin-bottom:36px;
}
.hero-cta { display:flex; gap:16px; flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 30px; border-radius:50px; font-weight:700;
  font-size:14px; letter-spacing:1px; text-transform:uppercase;
  border:2px solid transparent; cursor:pointer;
  transition: all .3s ease; position:relative; overflow:hidden;
}
.btn-primary {
  background: var(--grad-red); color:#fff;
  box-shadow: 0 6px 24px rgba(193,39,45,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow:0 10px 30px rgba(193,39,45,.6); }
.btn-gold {
  background: var(--grad-gold); color:#000;
  box-shadow: 0 6px 24px rgba(212,175,55,.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow:0 10px 30px rgba(212,175,55,.6); }
.btn-outline {
  background: transparent; color:var(--gold); border:2px solid var(--gold);
}
.btn-outline:hover { background:var(--gold); color:#000; }
.btn-wa {
  background:#25D366; color:#fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-wa:hover { background:#128C7E; transform: translateY(-3px); }

/* ===== Featured Work Grid (homepage) ===== */
.featured-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap:14px;
}
.featured-item {
  position:relative; overflow:hidden; border-radius:14px;
  aspect-ratio: 1/1; border:1px solid var(--border);
  display:block; background:#0a0a0a;
}
.featured-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(0.85);
}
.featured-item:hover img { transform: scale(1.1); filter: brightness(1); }
.featured-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:18px; gap:8px;
  transform: translateY(0); transition: all .3s ease;
}
.featured-overlay strong { color:#fff; font-size:13px; line-height:1.3; }
.featured-overlay i {
  position:absolute; top:14px; right:14px;
  width:38px; height:38px; border-radius:50%;
  background: var(--gold); color:#000;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; opacity:0; transform: translateX(-10px);
  transition: all .3s ease;
}
.featured-item:hover .featured-overlay i { opacity:1; transform: translateX(0); }

/* ===== Stats Strip ===== */
.stats {
  background: linear-gradient(135deg, #c1272d 0%, #8b0000 100%);
  padding: 40px 0;
}
.stats-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap:30px;
  text-align:center;
}
.stats-grid-3 { grid-template-columns: repeat(3, 1fr); text-align:left; }
.stats-grid-3 .stat-item {
  display:flex; align-items:center; gap:18px;
}
.stat-icon {
  width:60px; height:60px; flex-shrink:0;
  background: rgba(0,0,0,0.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:#fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.stat-text strong {
  display:block; font-family:'Bebas Neue',sans-serif;
  font-size:24px; color:#fff; letter-spacing:1.5px;
}
.stat-text span { color: rgba(255,255,255,0.85); font-size:13px; }
.stat-item .num {
  font-family:'Bebas Neue',sans-serif;
  font-size:54px; color:#fff; line-height:1;
}
.stat-item .label {
  color:rgba(255,255,255,.85); letter-spacing:2px;
  font-size:13px; margin-top:8px; text-transform:uppercase;
}

/* ===== Sections ===== */
section { padding: 90px 0; position:relative; }
.section-head { text-align:center; margin-bottom:60px; }
.section-eyebrow {
  display:inline-block; color:var(--gold); font-weight:600;
  letter-spacing:5px; font-size:12px; margin-bottom:14px;
  text-transform:uppercase;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px); font-weight:900;
}
.section-title .accent {
  background: var(--grad-gold); -webkit-background-clip:text;
  background-clip:text; color:transparent;
}
.section-sub { color:var(--muted); max-width:680px; margin:18px auto 0; font-size:16px; }

/* ===== Service cards ===== */
.services-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:26px;
}
.service-card {
  background: linear-gradient(160deg, var(--card) 0%, #0c0c0c 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align:center;
  position:relative; overflow:hidden;
  transition: all .4s ease;
  cursor: default;
}
.service-card::before {
  content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 60%);
  opacity:0; transition: opacity .4s ease;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(212,175,55,0.15); }
.service-card:hover::before { opacity:1; }
.service-card .icon {
  width:84px; height:84px; margin:0 auto 22px;
  background: var(--grad-gold);
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; font-size:36px; color:#000;
  position:relative; z-index:2;
  box-shadow: 0 8px 30px rgba(212,175,55,0.3);
  transition: transform .4s ease;
}
.service-card:hover .icon { transform: rotate(360deg) scale(1.1); }
.service-card h3 {
  font-size: 24px; margin-bottom:10px; color:var(--gold); position:relative; z-index:2;
}
.service-card .price {
  font-family:'Bebas Neue',sans-serif; color:#fff; font-size:22px;
  margin-bottom:14px; position:relative; z-index:2;
}
.service-card .price strong { color:var(--gold-2); font-size:28px; }
.service-card p { color:var(--muted); font-size:14px; position:relative; z-index:2; }

/* Service detail blocks */
.service-block {
  background: linear-gradient(160deg, var(--card), #0c0c0c);
  border:1px solid var(--border); border-radius:20px;
  padding:40px; margin-bottom:30px;
  display:grid; grid-template-columns: 100px 1fr; gap:30px;
  align-items:flex-start; transition: all .3s ease;
}
.service-block:hover { border-color:var(--gold); transform: translateX(8px); }
.service-block .sb-icon {
  width:90px; height:90px; border-radius:18px;
  background: var(--grad-gold); color:#000;
  display:flex; align-items:center; justify-content:center;
  font-size:42px; box-shadow: 0 8px 30px rgba(212,175,55,0.25);
}
.service-block h3 { font-size:30px; color:var(--gold); margin-bottom:8px; }
.service-block .price-tag {
  display:inline-block; background: var(--grad-red); color:#fff;
  padding:6px 18px; border-radius:20px; font-weight:700;
  font-size:14px; margin-bottom:16px;
}
.service-block ul { margin-top:14px; }
.service-block li {
  padding:8px 0 8px 28px; position:relative; color:#d0d0d0;
}
.service-block li::before {
  content:'\f00c'; font-family:'Font Awesome 6 Free'; font-weight:900;
  color:var(--gold); position:absolute; left:0; top:8px;
}
.tier-list {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap:14px; margin-top:18px;
}
.tier {
  background: rgba(255,255,255,0.03); border:1px solid var(--border);
  padding:16px; border-radius:12px;
}
.tier strong { display:block; color:var(--gold); margin-bottom:4px; font-size:15px; }
.tier .tprice { color:var(--gold-2); font-family:'Bebas Neue',sans-serif; font-size:22px; }
.tier small { color:var(--muted); display:block; font-size:12px; margin-top:4px; }

/* ===== About ===== */
.about-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center;
}
.about-img {
  position:relative; border-radius:20px; overflow:hidden;
  box-shadow: var(--shadow); border:2px solid var(--gold);
}
.about-img img { width:100%; height:auto; display:block; }
.about-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(45deg, rgba(193,39,45,0.2), transparent);
}
.about-text h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom:20px; }
.about-text h2 .accent { background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent; }
.about-text p { color:#c0c0c0; margin-bottom:18px; font-size:15px; }
.feature-list { margin-top:24px; }
.feature-list li {
  display:flex; align-items:flex-start; gap:14px; padding:10px 0;
}
.feature-list li i {
  color:var(--gold); font-size:20px; flex-shrink:0; margin-top:3px;
}
.feature-list strong { color: var(--text); }

/* ===== Why Choose Us ===== */
.why-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:24px;
}
.why-card {
  text-align:center; padding:32px 22px;
  background: var(--card); border-radius: 16px; border: 1px solid var(--border);
  transition: all .3s ease;
}
.why-card:hover { transform:translateY(-6px); border-color: var(--gold); }
.why-card .why-icon {
  width:70px; height:70px; margin:0 auto 18px;
  border-radius:18px; background: rgba(212,175,55,0.1);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold); font-size:32px;
  border: 1px solid var(--gold);
}
.why-card h4 { font-size:22px; color:var(--text); margin-bottom:10px; }
.why-card p { color:var(--muted); font-size:14px; }

/* ===== Gallery ===== */
.gallery-filters {
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-bottom:36px;
}
.gallery-filters button {
  padding:10px 22px; background:transparent; border:1px solid var(--border);
  color:var(--muted); border-radius:30px; cursor:pointer;
  font-family:'Montserrat',sans-serif; font-weight:600; font-size:13px;
  letter-spacing:1px; transition: all .3s ease; text-transform:uppercase;
}
.gallery-filters button:hover, .gallery-filters button.active {
  background: var(--grad-gold); color:#000; border-color: var(--gold);
}
.gallery-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap:20px;
}
.gallery-item {
  position:relative; overflow:hidden; border-radius:14px; cursor:pointer;
  aspect-ratio: 4/3; background:#0a0a0a;
  border:1px solid var(--border);
}
.gallery-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 50%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:20px; opacity:0; transition: opacity .3s ease;
}
.gallery-item:hover .overlay { opacity:1; }
.gallery-item .overlay strong { color:var(--gold); font-size:14px; }
.gallery-item .overlay i { color:#fff; font-size:34px; align-self:center; margin:auto auto 10px; }

/* Lightbox */
.lightbox {
  position:fixed; inset:0; background:rgba(0,0,0,0.95);
  display:none; align-items:center; justify-content:center;
  z-index:99998; padding:20px;
}
.lightbox.active { display:flex; }
.lightbox img { max-width:92%; max-height:88vh; border-radius:12px; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position:absolute; background:rgba(255,255,255,0.1); color:#fff;
  border:none; width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:22px; transition: all .3s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover {
  background: var(--gold); color:#000;
}
.lightbox .lb-close { top:20px; right:20px; }
.lightbox .lb-prev { left:20px; top:50%; transform:translateY(-50%); }
.lightbox .lb-next { right:20px; top:50%; transform:translateY(-50%); }
.lightbox .lb-caption {
  position:absolute; bottom:20px; left:0; right:0; text-align:center;
  color:#fff; font-weight:600;
}

/* ===== FAQ ===== */
.faq-list { max-width:900px; margin:0 auto; }
.faq-item {
  background: var(--card); border:1px solid var(--border);
  border-radius:14px; margin-bottom:14px; overflow:hidden;
  transition: all .3s ease;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding:22px 26px; font-weight:700; font-size:16px;
  cursor:pointer; display:flex; justify-content:space-between; align-items:center;
  color:var(--text); gap:20px;
}
.faq-q .faq-icon {
  flex-shrink:0; width:36px; height:36px; border-radius:50%;
  background: rgba(212,175,55,0.1); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  transition: all .3s ease;
}
.faq-item.open .faq-icon {
  background: var(--gold); color:#000;
  transform: rotate(45deg);
}
.faq-a {
  max-height:0; overflow:hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 26px;
}
.faq-item.open .faq-a {
  max-height: 500px; padding: 0 26px 22px;
}
.faq-a p { color:var(--muted); font-size:15px; }

/* ===== Contact ===== */
.contact-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap:50px;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--card), #0c0c0c);
  border:1px solid var(--border); border-radius:20px;
  padding:36px;
}
.contact-info-card h3 { font-size:28px; color:var(--gold); margin-bottom:24px; }
.contact-method {
  display:flex; gap:18px; padding:20px 0; align-items:center;
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom:none; }
.contact-method .cm-icon {
  width:54px; height:54px; flex-shrink:0; border-radius:14px;
  background: var(--grad-gold); color:#000;
  display:flex; align-items:center; justify-content:center; font-size:22px;
}
.contact-method strong { display:block; color:var(--text); font-size:16px; margin-bottom:3px; }
.contact-method a, .contact-method span { color:var(--muted); font-size:14px; }
.contact-method a:hover { color:var(--gold); }

.contact-cta-grid {
  display:grid; gap:14px;
}
.contact-cta-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding:30px; border-radius:18px; color:#fff;
  display:flex; align-items:center; gap:20px;
  transition: transform .3s ease;
  box-shadow: 0 10px 30px rgba(37,211,102,0.25);
}
.contact-cta-card:hover { transform: translateY(-4px); color:#fff; }
.contact-cta-card.call { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%); color:#000; box-shadow:0 10px 30px rgba(212,175,55,0.25); }
.contact-cta-card .cta-icon {
  width:64px; height:64px; flex-shrink:0;
  background: rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:30px;
}
.contact-cta-card.call .cta-icon { background: rgba(0,0,0,0.15); }
.contact-cta-card h4 { font-size: 26px; margin-bottom:4px; }
.contact-cta-card p { font-size:14px; opacity:.9; }

.map-wrap {
  margin-top:50px; border-radius:20px; overflow:hidden;
  border:2px solid var(--gold); height:400px;
}
.map-wrap iframe { width:100%; height:100%; border:0; filter: invert(0.9) hue-rotate(180deg); }

/* ===== Page header ===== */
.page-header {
  position:relative; padding: 100px 0 80px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(20,0,0,0.7) 100%),
    radial-gradient(circle at 70% 50%, rgba(193,39,45,0.3), transparent 60%);
  text-align:center; overflow:hidden;
}
.page-header::before {
  content:''; position:absolute; inset:0; opacity:.2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92'><polygon points='40,2 78,24 78,68 40,90 2,68 2,24' fill='none' stroke='%23d4af37' stroke-width='1'/></svg>");
  background-size: 80px 92px;
}
.page-header h1 {
  font-size: clamp(42px, 7vw, 78px); position:relative; z-index:2;
}
.page-header h1 .accent { background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent; }
.page-header p { color:var(--muted); margin-top:12px; position:relative; z-index:2; }
.breadcrumb {
  margin-top:18px; color:var(--muted); font-size:14px; position:relative; z-index:2;
}
.breadcrumb a { color:var(--gold); }
.breadcrumb a:hover { color:var(--gold-2); }

/* ===== CTA Banner ===== */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(193,39,45,0.85), rgba(0,0,0,0.85)),
    repeating-linear-gradient(45deg, transparent 0 50px, rgba(212,175,55,.04) 50px 51px);
  padding: 80px 0; text-align:center;
}
.cta-banner h2 { font-size: clamp(32px, 5vw, 56px); color:#fff; margin-bottom:14px; }
.cta-banner h2 .accent { background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; color:transparent; }
.cta-banner p { color:#e0e0e0; max-width:600px; margin: 0 auto 30px; }
.cta-banner .hero-cta { justify-content:center; }

/* ===== Footer ===== */
.site-footer {
  background: #050505; padding: 70px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display:grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap:50px;
  padding-bottom:50px;
}
.footer-brand { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.footer-brand img { height:60px; }
.footer-brand strong { display:block; font-family:'Bebas Neue',sans-serif; font-size:22px; color:var(--gold); letter-spacing:2px; }
.footer-brand span { font-size:11px; color:var(--muted); letter-spacing:2px; }
.footer-about { color:var(--muted); font-size:14px; line-height:1.8; margin-bottom:18px; }
.footer-social { display:flex; gap:10px; margin-top:18px; }
.footer-social a {
  width:40px; height:40px; border-radius:50%;
  background: rgba(212,175,55,0.1); border:1px solid var(--gold);
  color: var(--gold);
  display:flex; align-items:center; justify-content:center; font-size:16px;
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold); color:#000; transform: translateY(-3px); }
.footer-col h4 {
  font-size:18px; color:var(--gold); margin-bottom:18px;
  position:relative; padding-bottom:10px;
}
.footer-col h4::after {
  content:''; position:absolute; left:0; bottom:0; width:30px; height:2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom:10px; }
.footer-col ul li a { color:#c0c0c0; font-size:14px; }
.footer-col ul li a:hover { color:var(--gold); padding-left:5px; }
.footer-contact li { display:flex; align-items:flex-start; gap:10px; color:#c0c0c0; font-size:14px; }
.footer-contact li i { color:var(--gold); margin-top:5px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  text-align:center; color:var(--muted); font-size:13px;
}
.footer-bottom a { color:var(--gold); }

/* ===== Floating buttons ===== */
.float-wa, .float-call {
  position:fixed; bottom:30px; width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:28px; color:#fff; z-index:9000;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .3s ease;
}
.float-wa { right:30px; background: linear-gradient(135deg,#25D366,#128C7E); }
.float-call { right:100px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color:#000; font-size:24px; }
.float-wa:hover, .float-call:hover { transform: scale(1.1) rotate(8deg); color:#fff; }
.float-call:hover { color:#000; }
.float-wa-pulse {
  position:absolute; inset:-6px; border-radius:50%;
  background: rgba(37,211,102,.4);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.8); opacity:1; }
  100% { transform: scale(1.6); opacity:0; }
}

/* ===== Back to top ===== */
#back-to-top {
  position:fixed; bottom:30px; left:30px;
  width:50px; height:50px; border-radius:50%;
  background: var(--card); border:2px solid var(--gold); color:var(--gold);
  display:none; align-items:center; justify-content:center;
  font-size:18px; cursor:pointer; z-index:9000;
  transition: all .3s ease;
}
#back-to-top.show { display:flex; }
#back-to-top:hover { background: var(--gold); color:#000; transform: translateY(-4px); }

/* ===== Admin Panel ===== */
.admin-body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
  min-height:100vh;
}
.admin-login-wrap {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  padding:20px;
}
.admin-card {
  width:100%; max-width: 420px;
  background: var(--card); border:1px solid var(--border);
  border-radius:20px; padding:40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.admin-card .alogo { text-align:center; margin-bottom:24px; }
.admin-card .alogo img { height:80px; margin: 0 auto 14px; }
.admin-card h2 { font-size:28px; color:var(--gold); text-align:center; margin-bottom:6px; }
.admin-card .ahint { text-align:center; color:var(--muted); font-size:13px; margin-bottom:30px; }
.admin-form .form-group { margin-bottom:18px; }
.admin-form label {
  display:block; color:var(--muted); font-size:13px; margin-bottom:8px;
  letter-spacing:1px; text-transform:uppercase; font-weight:600;
}
.admin-form input, .admin-form textarea, .admin-form select {
  width:100%; padding: 14px 16px; background:#0a0a0a;
  border:1px solid var(--border); border-radius:10px;
  color:#fff; font-family:'Montserrat',sans-serif; font-size:14px;
  transition: border-color .3s ease;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus {
  outline:none; border-color: var(--gold);
}
.admin-form .btn { width:100%; justify-content:center; }
.admin-msg {
  padding:12px 16px; border-radius:10px; margin-bottom:20px;
  font-size:14px;
}
.admin-msg.error { background:rgba(193,39,45,0.15); color:#ff8a8a; border:1px solid rgba(193,39,45,0.4); }
.admin-msg.success { background:rgba(37,211,102,0.15); color:#86efac; border:1px solid rgba(37,211,102,0.4); }

.admin-header {
  background:#000; border-bottom:1px solid var(--border);
  padding:16px 0;
}
.admin-header-inner {
  display:flex; justify-content:space-between; align-items:center;
}
.admin-logo {
  display:flex; align-items:center; gap:12px;
}
.admin-logo img { height:40px; }
.admin-logo strong { color:var(--gold); font-family:'Bebas Neue',sans-serif; font-size:20px; letter-spacing:2px; }
.admin-logo span { color:var(--muted); font-size:11px; }
.admin-actions { display:flex; gap:10px; align-items:center; }
.admin-actions a {
  padding:8px 18px; border-radius:8px; font-weight:600; font-size:13px;
}
.admin-actions .view { background:transparent; border:1px solid var(--gold); color:var(--gold); }
.admin-actions .view:hover { background:var(--gold); color:#000; }
.admin-actions .logout { background: var(--red); color:#fff; }
.admin-actions .logout:hover { background: var(--red-2); }

.admin-content { padding:50px 0; }
.admin-section {
  background: var(--card); border:1px solid var(--border);
  border-radius:18px; padding:30px; margin-bottom:30px;
}
.admin-section h3 { color:var(--gold); margin-bottom:20px; font-size:24px; }
.admin-grid {
  display:grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap:20px;
}
.admin-photo {
  background:#0a0a0a; border:1px solid var(--border);
  border-radius:12px; overflow:hidden;
}
.admin-photo img {
  width:100%; aspect-ratio: 4/3; object-fit:cover;
}
.admin-photo-info { padding:14px; }
.admin-photo-info input, .admin-photo-info select {
  background:#000; border:1px solid var(--border); color:#fff;
  width:100%; padding:8px 10px; border-radius:6px; font-size:13px; margin-bottom:8px;
}
.admin-photo-actions { display:flex; gap:6px; }
.admin-photo-actions button {
  flex:1; padding:8px; border:none; border-radius:6px; cursor:pointer;
  font-size:12px; font-weight:600;
}
.admin-photo-actions .save { background: var(--gold); color:#000; }
.admin-photo-actions .delete { background: var(--red); color:#fff; }
.admin-photo-actions .save:hover { background: var(--gold-2); }
.admin-photo-actions .delete:hover { background: var(--red-2); }

.upload-box {
  border: 2px dashed var(--gold);
  border-radius: 14px; padding: 40px; text-align:center;
  background: rgba(212,175,55,0.05); cursor: pointer;
  transition: all .3s ease;
}
.upload-box:hover { background: rgba(212,175,55,0.12); }
.upload-box i { font-size:54px; color:var(--gold); margin-bottom:14px; }
.upload-box p { color:var(--muted); }
.upload-box input[type=file] { display:none; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap:40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .service-block { grid-template-columns: 1fr; padding:30px; }
  .service-block .sb-icon { margin: 0 auto; }
}
@media (max-width: 768px) {
  .topbar a { margin-right:10px; font-size:12px; }
  .topbar a span, .topbar-left span { display:none !important; }
  .hide-mobile { display:none !important; }
  .nav-toggle { display:flex; }
  .main-nav {
    position:absolute; top:100%; left:0; right:0;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    flex-direction:column; padding:20px; gap:0;
    max-height:0; overflow:hidden;
    transition: max-height .4s ease;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { max-height: 500px; padding:20px; }
  .main-nav a { width:100%; padding:14px 20px; font-size:15px; }
  .main-nav a::after { display:none; }
  .nav-cta { margin-left:0; margin-top:8px; text-align:center; }
  .brand-text { display:none; }
  section { padding: 60px 0; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap:10px; }
  .footer-grid { grid-template-columns: 1fr; gap:36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap:20px; }
  .stats-grid-3 { grid-template-columns: 1fr; gap:20px; }
  .stat-item .num { font-size:42px; }
  .float-call { right:30px; bottom:100px; }
  .float-wa { right:30px; bottom:30px; }
  #back-to-top { left:20px; bottom:90px; width:44px; height:44px; }
  .topbar-left a:nth-child(2) { display:none; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 48px; }
  .hero-content { padding: 60px 0; }
  .container { padding: 0 18px; }
}
@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 14px; }
  .hero-content { padding: 50px 0; }
  .hero-cta { flex-direction:column; width:100%; }
  .hero-cta .btn { justify-content:center; width:100%; }
  .container { padding: 0 16px; }
  .topbar-left { gap:0; }
  .topbar-left a:nth-child(2) { display:none; }
}
