/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #f97316; --orange-dark: #ea6c09; --black: #0f0f0f;
  --dark: #1a1a1a; --dark2: #242424; --gray: #6b7280;
  --light: #f5f5f5; --white: #ffffff; --green: #25d366;
  --radius: 12px; --shadow: 0 4px 24px rgba(0,0,0,0.18); --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: "Montserrat", sans-serif; background: var(--light); color: var(--dark); overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.accent { color: var(--orange); }

/* NAVBAR */
.navbar { position: fixed; top:0; left:0; right:0; z-index:1000; background: rgba(8,8,8,0.98); backdrop-filter: blur(16px); border-bottom: 2px solid var(--orange); transition: all 0.35s ease; box-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.navbar.scrolled { background: rgba(5,5,5,1); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:82px; gap:20px; transition: height 0.35s ease; }
.navbar.scrolled .nav-inner { height:66px; }
.logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.logo-img { height: 76px; width: auto; object-fit: contain; background: var(--white); border-radius: 10px; padding: 4px 8px; transition: height 0.35s ease, transform 0.3s ease; }
.navbar.scrolled .logo-img { height: 56px; }
.logo-img:hover { transform: scale(1.05); }
.nav-links { display:flex; gap:4px; }
.nav-links a { color:#bbb; text-decoration:none; font-weight:600; font-size:0.82rem; letter-spacing:0.8px; transition: all var(--transition); text-transform:uppercase; padding: 8px 14px; border-radius: 6px; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%; height: 2px; background: var(--orange); transition: all 0.3s ease; border-radius: 2px; }
.nav-links a:hover { color: var(--white); background: rgba(249,115,22,0.08); }
.nav-links a:hover::after { left: 14px; right: 14px; }
.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { left: 14px; right: 14px; }
.nav-actions { display:flex; gap:10px; align-items:center; }

/* BUTTONS */
.btn { display:inline-flex; align-items:center; gap:8px; padding:11px 20px; border-radius:8px; font-weight:700; font-size:0.88rem; text-decoration:none; transition:var(--transition); cursor:pointer; border:none; white-space:nowrap; font-family:inherit; }
.btn-primary { background:var(--orange); color:var(--white); }
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(249,115,22,0.4); }
.btn-wp { background: var(--green); color: var(--white); }
.btn-wp:hover { background: #1ebe58; transform:translateY(-2px); box-shadow:0 6px 20px rgba(37,211,102,0.4); }
.btn-wp-hero { background: rgba(37,211,102,0.15); color: var(--white); border: 2px solid var(--green); }
.btn-wp-hero:hover { background: var(--green); }
.btn-acil { background:var(--orange); color:var(--white); padding:10px 16px; font-size:0.83rem; border-radius:8px; }
.btn-acil:hover { background:var(--orange-dark); }
.btn-outline-dark { background:transparent; color:var(--dark); border:2px solid #d1d5db; padding:14px 32px; font-size:0.95rem; border-radius:8px; }
.btn-outline-dark:hover { border-color:var(--orange); color:var(--orange); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:25px; height:3px; background:var(--white); border-radius:3px; transition:var(--transition); }

/* HERO */
.hero { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-bg-img { width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(30,15,0,0.85) 100%); }
.hero-content { position:relative; z-index:2; padding-top:82px; display:flex; flex-direction:column; gap:24px; max-width:720px; }
.badge { display:inline-flex; align-items:center; gap:8px; background:rgba(249,115,22,0.15); border:1px solid var(--orange); color:var(--orange); padding:6px 16px; border-radius:50px; font-size:0.78rem; font-weight:700; letter-spacing:1px; text-transform:uppercase; width:fit-content; }
.badge i { font-size:0.6rem; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero h1 { font-size:clamp(1.9rem, 4.5vw, 3.2rem); font-weight:900; color:var(--white); line-height:1.15; }
.hero p { font-size:1.05rem; color:#bbb; max-width:540px; line-height:1.75; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats { display:flex; align-items:center; gap:24px; margin-top:8px; flex-wrap:wrap; }
.hero-stat { display:flex; flex-direction:column; gap:2px; }
.hero-stat strong { color:var(--white); font-size:1.4rem; font-weight:900; }
.hero-stat span { color:#888; font-size:0.75rem; text-transform:uppercase; letter-spacing:0.5px; }
.hero-stat-divider { width:1px; height:36px; background:#333; }
.hero-scroll-hint { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); color:var(--orange); font-size:1.1rem; animation:bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ACIL BAR */
.acil-bar { background:var(--orange); padding:13px 0; }
.acil-inner { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.acil-inner > i { font-size:1.2rem; color:var(--white); animation:pulse 1.5s infinite; }
.acil-inner span { color:var(--white); font-weight:600; font-size:0.95rem; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.btn-acil-bar { background:var(--black); color:var(--white); padding:8px 18px; border-radius:6px; font-weight:700; font-size:0.85rem; }
.btn-acil-bar:hover { background:#222; }
.btn-acil-wp { background: var(--green); }
.btn-acil-wp:hover { background: #1ebe58; }

/* SECTIONS */
.section { padding:90px 0; }
.section-dark { background:var(--dark); }
.section-header { text-align:center; margin-bottom:56px; display:flex; flex-direction:column; align-items:center; gap:12px; }
.section-tag { background:rgba(249,115,22,0.12); border:1px solid var(--orange); color:var(--orange); padding:5px 14px; border-radius:50px; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; width:fit-content; }
.section-header h2 { font-size:clamp(1.6rem, 3.5vw, 2.4rem); font-weight:900; }
.section-dark .section-header h2 { color:var(--white); }
.section-header p { color:var(--gray); max-width:540px; line-height:1.7; }
.section-dark .section-header p { color:#888; }

/* CARDS */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:24px; }
.card { background:var(--white); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); border:1px solid #e5e7eb; transition:var(--transition); }
.card:hover { transform:translateY(-6px); border-color:var(--orange); box-shadow:0 16px 40px rgba(249,115,22,0.18); }
.card-img-wrap { position:relative; height:200px; overflow:hidden; }
.card-img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.card:hover .card-img { transform:scale(1.06); }
.card-icon-overlay { position:absolute; top:12px; right:12px; width:44px; height:44px; background:rgba(249,115,22,0.85); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.2rem; backdrop-filter:blur(4px); }
.card-body { padding:22px 24px; display:flex; flex-direction:column; gap:10px; }
.card-body h3 { font-size:1.05rem; font-weight:700; color:var(--dark); }
.card-body p { color:var(--gray); font-size:0.9rem; line-height:1.65; }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-bottom:60px; }
.about-img-wrap { position:relative; border-radius:16px; overflow:hidden; }
.about-img { width:100%; height:420px; object-fit:cover; display:block; }
.about-badge-float { position:absolute; bottom:20px; left:20px; background:var(--orange); color:var(--white); display:flex; align-items:center; gap:10px; padding:12px 20px; border-radius:10px; font-weight:700; font-size:0.9rem; box-shadow:0 6px 20px rgba(249,115,22,0.5); }
.about-text { display:flex; flex-direction:column; gap:20px; }
.about-text h2 { font-size:clamp(1.6rem, 3vw, 2.2rem); font-weight:900; color:var(--white); }
.about-text p { color:#aaa; line-height:1.75; font-size:0.97rem; }
.about-list { list-style:none; display:flex; flex-direction:column; gap:11px; }
.about-list li { display:flex; align-items:center; gap:12px; color:#ccc; font-size:0.94rem; font-weight:600; }
.about-list li i { color:var(--orange); font-size:1rem; }
.about-cta { display:flex; gap:12px; flex-wrap:wrap; }

/* STATS */
.stats-row { display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; }
.stat-box { background:var(--dark2); border:1px solid #2a2a2a; border-radius:var(--radius); padding:28px 20px; text-align:center; display:flex; flex-direction:column; gap:4px; transition:var(--transition); }
.stat-box:hover { border-color:var(--orange); transform:translateY(-4px); }
.stat-num { font-size:2.8rem; font-weight:900; color:var(--orange); line-height:1; display:inline; }
.stat-plus { font-size:1.5rem; font-weight:900; color:var(--orange); }
.stat-label { font-size:0.75rem; color:#777; font-weight:600; text-transform:uppercase; letter-spacing:0.5px; margin-top:6px; }

/* GALLERY */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.gallery-item { border-radius:10px; overflow:hidden; aspect-ratio:4/3; cursor:pointer; position:relative; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; display:block; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-hover { position:absolute; inset:0; background:rgba(0,0,0,0.5); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; }
.gallery-hover i { color:var(--white); font-size:1.8rem; }
.gallery-item:hover .gallery-hover { opacity:1; }
.gallery-hidden { display:none; }
.gallery-more-wrap { text-align:center; margin-top:36px; }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:20px; max-width:860px; margin:0 auto; }
.contact-card { background:var(--dark2); border:1px solid #2a2a2a; border-radius:var(--radius); padding:36px 24px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:10px; transition:var(--transition); text-decoration:none; }
.contact-card:hover { border-color:var(--orange); transform:translateY(-4px); }
.contact-card-wp:hover { border-color:var(--green); }
.contact-icon { width:64px; height:64px; background:rgba(249,115,22,0.12); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.6rem; color:var(--orange); }
.contact-card-wp .contact-icon { background:rgba(37,211,102,0.12); color:var(--green); }
.contact-card h3 { color:var(--white); font-weight:700; font-size:1rem; }
.contact-detail { color:var(--orange); font-weight:700; font-size:1rem; }
.contact-card-wp .contact-detail { color:var(--green); }
.contact-sub { color:#777; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.5px; font-weight:600; }

/* FOOTER */
.footer { background:var(--black); border-top:2px solid var(--orange); padding:30px 0; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.footer-logo { display:flex; align-items:center; gap:14px; }
.footer-logo-img { height:58px; width:auto; object-fit:contain; background:var(--white); border-radius:8px; padding:3px 6px; }
.footer-brand-wrap { display:flex; flex-direction:column; gap:3px; }
.footer-brand { color:var(--white); font-weight:700; font-size:1rem; }
.footer-tagline { color:#555; font-size:0.78rem; }
.footer-copy { color:#444; font-size:0.8rem; }
.footer-btns { display:flex; gap:10px; flex-wrap:wrap; }
.footer-btn { padding:10px 18px; font-size:0.83rem; }

/* FIXED BUTTONS */
.fixed-buttons { position:fixed; bottom:24px; right:24px; z-index:999; display:flex; flex-direction:column; gap:12px; }
.fixed-btn { display:flex; align-items:center; gap:9px; padding:14px 20px; border-radius:50px; font-weight:700; font-size:0.88rem; text-decoration:none; box-shadow:0 6px 24px rgba(0,0,0,0.3); transition:var(--transition); }
.fixed-btn:hover { transform:scale(1.05); }
.fixed-btn i { font-size:1.1rem; }
.fixed-btn-call { background:var(--orange); color:var(--white); animation:ring 4s infinite; }
.fixed-btn-wp { background:var(--green); color:var(--white); }
@keyframes ring { 0%,85%,100%{box-shadow:0 6px 20px rgba(249,115,22,0.5)} 90%{box-shadow:0 0 0 14px rgba(249,115,22,0.15),0 6px 20px rgba(249,115,22,0.5)} }

/* LIGHTBOX */
.lightbox { display:none; position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.95); align-items:center; justify-content:center; }
.lightbox.active { display:flex; }
.lb-img-wrap { max-width:90vw; max-height:85vh; display:flex; align-items:center; justify-content:center; }
.lb-img-wrap img { max-width:90vw; max-height:85vh; object-fit:contain; border-radius:8px; }
.lb-close,.lb-prev,.lb-next { position:absolute; background:rgba(255,255,255,0.1); border:none; color:var(--white); cursor:pointer; border-radius:50%; width:44px; height:44px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; transition:var(--transition); }
.lb-close:hover,.lb-prev:hover,.lb-next:hover { background:var(--orange); }
.lb-close { top:20px; right:20px; }
.lb-prev { left:20px; top:50%; transform:translateY(-50%); }
.lb-next { right:20px; top:50%; transform:translateY(-50%); }
.lb-counter { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); color:#aaa; font-size:0.85rem; font-family:"Montserrat",sans-serif; }

/* RESPONSIVE */
@media(max-width:900px) {
  .about-grid { grid-template-columns:1fr; gap:36px; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display:none; position:absolute; top:82px; left:0; right:0; background:rgba(8,8,8,0.99); flex-direction:column; padding:20px; gap:8px; border-bottom:2px solid var(--orange); backdrop-filter:blur(16px); }
  .nav-links.open { display:flex; }
  .hamburger { display:flex; }
  .nav-actions .btn-acil { display:none; }
  .hero-btns { flex-direction:column; max-width:280px; }
  .footer-inner { flex-direction:column; text-align:center; }
  .footer-logo { justify-content:center; }
}
@media(max-width:480px) {
  .gallery-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
  .fixed-btn span { display:none; }
  .fixed-btn { padding:15px; border-radius:50%; }
}
