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

:root {
  --red: #EF4444; 
  --red-dark: #B91C1C; 
  --orange: #F97316;
  --ink: #0B0303; 
  --paper: #FFF8F5; 
  --grey: #8A7A78; 
  --line: rgba(239, 68, 68, 0.18);
}

body.bx-root {
  background: var(--ink); 
  color: #F5EDEC; 
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%; 
  overflow-x: hidden; 
  position: relative; 
  min-height: 100vh;
}

.bx-root * { box-sizing: border-box; }
.bx-root a, .bx-root button { font-family: inherit; }

/* Utility */
.mb-3 { margin-bottom: 1rem; }

.bx-wrap { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
@media(max-width:680px) { .bx-wrap { padding: 0 1.2rem; } }

.bx-disp { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }
.bx-eyebrow { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); }

/* GSAP Animations setup */
.gsap-reveal { opacity: 0; visibility: hidden; }

/* NAV */
.bx-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: rgba(11,3,3,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.bx-brand { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; text-decoration: none; }
.bx-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 3px; color: #fff; }
.bx-brand-name span { color: var(--red); }
.bx-nav-links { display: flex; align-items: center; gap: 1.7rem; }
.bx-nav-link { background: none; border: none; color: #C9BAB8; font-size: 0.85rem; letter-spacing: 0.3px; cursor: pointer; transition: color 0.2s; text-decoration: none; }
.bx-nav-link:hover { color: #fff; }
.bx-nav-cta { background: var(--red); color: #fff; border: none; padding: 0.65rem 1.4rem; border-radius: 30px; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.2s; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center;}
.bx-nav-cta:hover { background: var(--red-dark); transform: scale(1.05); }
.bx-burger { display: none; background: none; border: none; color: #fff; cursor: pointer; font-size: 1.5rem; }
.bx-mobile-menu { display: none; }

@media(max-width:900px) {
  .bx-nav-links { display: none; } 
  .bx-burger { display: block; }
  .bx-mobile-menu.open { display: flex; flex-direction: column; gap: 0.2rem; padding: 1rem 1.2rem 1.4rem; background: rgba(11,3,3,0.97); border-bottom: 1px solid var(--line); position: fixed; top: 60px; left: 0; right: 0; z-index: 99; }
  .bx-mobile-menu .bx-nav-link { text-align: left; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .bx-mobile-menu .bx-nav-cta { margin-top: 0.8rem; width: 100%; justify-content: center; }
}

/* HERO */
.bx-hero { position: relative; text-align: center; padding: 10rem 1rem 6rem; }
.bx-hero::before { content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%,-50%); width: 760px; height: 760px; background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 65%); pointer-events: none; }
.bx-tag-pill { display: inline-block; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); border: 1px solid var(--red); padding: 0.4rem 1.1rem; border-radius: 30px; margin-bottom: 1.8rem; position: relative; }
.bx-hero h1 { font-size: clamp(2.8rem, 9vw, 6.4rem); line-height: 0.98; position: relative; color: #fff; margin: 0;}
.bx-hero h1 span { color: var(--red); }
.bx-hero-sub { color: #A89492; font-size: 1rem; max-width: 520px; margin: 1.6rem auto 0; line-height: 1.8; position: relative; }
.bx-hero-pulse { margin: 2.4rem auto 0; position: relative; display: flex; justify-content: center;}
.bx-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; position: relative; }
.bx-btn-primary { background: var(--red); color: #fff; border: none; padding: 0.9rem 1.8rem; border-radius: 30px; font-weight: 700; font-size: 0.88rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; transition: transform 0.2s, background 0.2s, box-shadow 0.2s; text-decoration: none; }
.bx-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(239,68,68,0.3); }
.bx-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 0.9rem 1.8rem; border-radius: 30px; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.bx-btn-ghost:hover { border-color: var(--red); background: rgba(239,68,68,0.08); }

/* SECTION SHELL */
.bx-section { padding: 5.5rem 0; position: relative; }
.bx-section-head { max-width: 600px; margin-bottom: 3rem; }
.bx-section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bx-section-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; margin-top: 0.6rem; margin-bottom: 0; }
.bx-rule { width: 56px; height: 2px; background: var(--red); margin-top: 1rem; }
.bx-section-head.center .bx-rule { margin-left: auto; margin-right: auto; }

/* ABOUT */
.bx-about { background: #0E0404; }
.bx-about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.bx-about-visual { background: #150505; border: 1px solid var(--line); border-radius: 16px; padding: 3rem; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.bx-about-visual::after { content: ''; position: absolute; top:0;left:0;right:0;bottom:0; background: linear-gradient(45deg, transparent, rgba(239,68,68,0.1), transparent); transform: translateX(-100%); animation: shine 3s infinite; }
@keyframes shine { 100% { transform: translateX(100%); } }
.bx-about p { color: #B5A4A2; line-height: 1.85; font-size: 0.98rem; margin-bottom: 1.1rem; }
.bx-about strong { color: #fff; }
@media(max-width:840px) { .bx-about-grid { grid-template-columns: 1fr; } }

/* SERVICES */
.bx-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bx-service-card { background: #150505; border: 1px solid var(--line); border-radius: 14px; padding: 2rem 1.7rem; transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s; }
.bx-service-card:hover { border-color: var(--red); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(239,68,68,0.15); }
.bx-service-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(239,68,68,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--red); font-size: 1.4rem; }
.bx-service-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 0.6rem; margin-top: 0; }
.bx-service-card p { color: #998886; font-size: 0.87rem; line-height: 1.65; margin: 0; }
@media(max-width:900px) { .bx-service-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .bx-service-grid { grid-template-columns: 1fr; } }

/* STATS */
.bx-stats { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.bx-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.bx-stat-num { font-size: clamp(2.4rem, 6vw, 3.6rem); color: #fff; }
.bx-stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 0.3rem; }
@media(max-width:680px) { .bx-stats-grid { grid-template-columns: 1fr 1fr; row-gap: 2rem; } }

/* WORK */
.bx-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bx-work-card { background: #150505; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; }
.bx-work-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: 0 15px 30px rgba(239,68,68,0.15); }
.bx-work-top { height: 160px; background: linear-gradient(135deg, rgba(239,68,68,0.25), rgba(11,3,3,0.9)); display: flex; align-items: center; justify-content: center; }
.bx-work-body { padding: 1.5rem 1.6rem 1.8rem; }
.bx-work-tag { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem; }
.bx-work-name { font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.bx-work-result { color: #998886; font-size: 0.85rem; }
@media(max-width:900px) { .bx-work-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.bx-testi { background: #0E0404; overflow: hidden;}
.bx-testi-wrap { position: relative; }
.bx-testi-slider { display: flex; transition: transform 0.5s ease; }
.bx-testi-slide { min-width: 100%; }
.bx-testi-card { background: #150505; border: 1px solid var(--line); border-radius: 18px; padding: 3rem 2.5rem; max-width: 680px; margin: 0 auto; text-align: center; }
.bx-testi-quote { color: #D9CDCB; font-size: 1.15rem; line-height: 1.7; font-family: 'Syne', sans-serif; font-weight: 600; }
.bx-testi-name { color: #fff; font-weight: 700; margin-top: 1.6rem; }
.bx-testi-role { color: var(--red); font-size: 0.8rem; margin-top: 0.2rem; }
.bx-testi-nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2rem; }
.bx-testi-arrow { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.bx-testi-arrow:hover { border-color: var(--red); background: rgba(239,68,68,0.1); }

/* BLOG (public) */
.bx-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.bx-blog-card { background: #150505; border: 1px solid var(--line); border-radius: 14px; padding: 1.8rem; cursor: pointer; transition: transform 0.4s, border-color 0.4s; text-decoration: none; display: block;}
.bx-blog-card:hover { transform: translateY(-6px); border-color: var(--red); }
.bx-blog-tag { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 0.7rem; }
.bx-blog-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; margin-top: 0; margin-bottom: 0.6rem; line-height: 1.35; }
.bx-blog-card p { color: #998886; font-size: 0.85rem; line-height: 1.6; margin: 0; }
.bx-blog-read { margin-top: 1rem; color: var(--red); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }
@media(max-width:900px) { .bx-blog-grid { grid-template-columns: 1fr; } }
.bx-post { max-width: 720px; margin-top: 6rem; }
.bx-post-title { font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-top: 0.6rem; margin-bottom: 1rem; }
.bx-post-para { color: #C9BAB8; line-height: 1.9; font-size: 1.05rem; margin-bottom: 1.5rem; }

/* FAQ */
.bx-faq { max-width: 760px; margin: 0 auto; }
.bx-faq-item { border-bottom: 1px solid var(--line); }
.bx-faq-q { width: 100%; background: none; border: none; color: #fff; text-align: left; padding: 1.4rem 0; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.98rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 1rem; }
.bx-faq-q i { color: var(--red); flex-shrink: 0; transition: transform 0.3s; }
.bx-faq-q.open i { transform: rotate(180deg); }
.bx-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: #998886; font-size: 0.9rem; line-height: 1.75; }
.bx-faq-a.open { max-height: 400px; padding-bottom: 1.4rem; }

/* CONTACT */
.bx-contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }
.bx-form { display: flex; flex-direction: column; gap: 1rem; }
.bx-input, .bx-textarea { background: #150505; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 0.9rem 1.1rem; color: #fff; font-size: 0.9rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; font-family: 'DM Sans', sans-serif; }
.bx-input:focus, .bx-textarea:focus { border-color: var(--red); box-shadow: 0 0 10px rgba(239,68,68,0.2); }
.bx-textarea { resize: vertical; min-height: 110px; }
.bx-sent-msg { color: #4ADE80; font-size: 0.85rem; margin-top: 0.6rem; display: none;}
.bx-error-msg { color: #F87171; font-size: 0.85rem; margin-top: 0.6rem; display: none;}
.bx-contact-info { background: #150505; border: 1px solid var(--line); border-radius: 16px; padding: 2.4rem; display: flex; flex-direction: column; gap: 1.4rem; justify-content: center; }
.bx-contact-info .row { display: flex; flex-direction: column; }
.bx-contact-info .k { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.bx-contact-info .v { color: #fff; font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; }
.bx-socials { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.bx-social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(239,68,68,0.1); display: flex; align-items: center; justify-content: center; color: var(--red); transition: background 0.2s, transform 0.2s; cursor: pointer; text-decoration: none;}
.bx-social-btn:hover { background: var(--red); color: #fff; transform: translateY(-3px);}
@media(max-width:840px) { .bx-contact-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.bx-footer { border-top: 1px solid var(--line); padding: 3rem 0 1.6rem; margin-top: 4rem;}
.bx-footer-top { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; padding-bottom: 2.4rem; }
.bx-footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.bx-footer-links a { color: #998886; font-size: 0.85rem; text-decoration: none; cursor: pointer; transition: color 0.2s; }
.bx-footer-links a:hover { color: var(--red); }
.bx-newsletter { display: flex; gap: 0.6rem; }
.bx-newsletter input { background: #150505; border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 0.65rem 1.1rem; color: #fff; font-size: 0.82rem; outline: none; width: 200px; }
.bx-newsletter button { background: var(--red); border: none; border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; flex-shrink: 0; transition: transform 0.2s;}
.bx-newsletter button:hover { transform: scale(1.1); }
.bx-footer-bottom { text-align: center; color: #665; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.05); }
.bx-admin-link { color: #554; cursor: pointer; text-decoration: underline; }
.bx-admin-link:hover { color: var(--red); }

/* ADMIN LOGIN */
.bx-admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.bx-admin-login-card { background: #150505; border: 1px solid var(--line); border-radius: 18px; padding: 2.6rem; width: 100%; max-width: 360px; text-align: center; }
.bx-login-input-wrap { display: flex; align-items: center; gap: 0.6rem; background: #0B0303; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 0 0.9rem; color: #998886; margin-top:1rem;}
.bx-login-input-wrap .bx-input { background: transparent; border: none; padding: 0.9rem 0; width: 100%;}
.bx-back-link { background: none; border: none; color: #998886; font-size: 0.8rem; margin-top: 1.2rem; cursor: pointer; display: flex; align-items: center; gap: 0.4rem; justify-content: center; width: 100%; }
.bx-back-link:hover { color: #fff; }

/* ADMIN SHELL */
.bx-admin-shell { display: flex; min-height: 100vh; }
.bx-admin-sidebar { width: 230px; flex-shrink: 0; background: #0E0404; border-right: 1px solid var(--line); padding: 1.6rem 1.2rem; display: flex; flex-direction: column; gap: 0.3rem; }
.bx-admin-tab { display: flex; align-items: center; gap: 0.7rem; background: none; border: none; color: #998886; font-size: 0.85rem; padding: 0.7rem 0.8rem; border-radius: 10px; cursor: pointer; text-align: left; transition: background 0.2s, color 0.2s; }
.bx-admin-tab:hover { background: rgba(239,68,68,0.08); color: #fff; }
.bx-admin-tab.active { background: var(--red); color: #fff; }
.bx-admin-exit { margin-top: auto; border-top: 1px solid var(--line); padding-top: 1rem; }
.bx-admin-main { flex: 1; padding: 2.4rem 2.6rem; overflow-y: auto; }
.bx-admin-header { margin-bottom: 1.6rem; }
.bx-admin-header h2 { font-size: 1.8rem; color: #fff; margin:0;}
.bx-admin-header p { color: #998886; font-size: 0.85rem; margin-top: 0.3rem; }
@media(max-width:800px) { .bx-admin-shell { flex-direction: column; } .bx-admin-sidebar { width: 100%; flex-direction: row; overflow-x: auto; flex-wrap: nowrap;} .bx-admin-exit { margin-top: 0; border-top: none; } .bx-admin-main { padding: 1.6rem; } }

/* ADMIN FORMS / CARDS */
.bx-admin-form { display: flex; flex-direction: column; gap: 1rem; max-width: 600px; margin-top: 1.2rem; }
.bx-admin-form label { display: flex; flex-direction: column; gap: 0.4rem; color: #C9BAB8; font-size: 0.82rem; }
.bx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bx-form-actions { display: flex; gap: 0.8rem; margin-top: 0.6rem; }
.bx-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
.bx-admin-card { background: #150505; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; position: relative; }
.bx-admin-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; color: #fff; font-size: 1rem; margin-top: 0.4rem; }
.bx-admin-quote { color: #C9BAB8; font-size: 0.87rem; font-style: italic; line-height: 1.6; margin:0;}
.bx-mini-badge { display: inline-block; background: rgba(239,68,68,0.15); color: var(--red); font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 8px; margin-bottom: 0.4rem; }
.bx-admin-card-actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.bx-icon-btn { display: flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.06); border: none; color: #fff; font-size: 0.78rem; padding: 0.45rem 0.8rem; border-radius: 8px; cursor: pointer; transition: background 0.2s; }
.bx-icon-btn:hover { background: rgba(255,255,255,0.12); }
.bx-icon-btn.danger { color: #F87171; }
.bx-icon-btn.danger:hover { background: rgba(239,68,68,0.15); }
.bx-empty { color: #998886; font-size: 0.88rem; margin-top: 1rem; }

/* LEADS LIST */
.bx-lead-list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.4rem; }
.bx-lead-card { background: #150505; border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.4rem; }
.bx-lead-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.bx-lead-top strong { color: #fff; font-size: 0.95rem; display: block; }
.bx-lead-date { color: #665; font-size: 0.72rem; }
.bx-lead-row { display: flex; align-items: center; gap: 0.4rem; color: #B5A4A2; font-size: 0.83rem; margin-top: 0.2rem; }
.bx-lead-msg { color: #998886; font-size: 0.85rem; margin-top: 0.6rem; line-height: 1.6; }
