html, body { height: 100%; }
body { background: var(--site-bg, #fff); color: var(--site-text, #212529); font-family: var(--site-font, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif); }
body { background-image: var(--site-bg-image, none); background-size: cover; background-position: center; background-attachment: fixed; }
a { color: var(--site-primary, #0d6efd); }
.btn-primary { background-color: var(--site-primary, #0d6efd); border-color: var(--site-primary, #0d6efd); }
.app-loading { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.app-loading__inner { text-align: center; }
.site-preloader { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.site-preloader__bg { position: absolute; inset: -40%; background: radial-gradient(800px 420px at 25% 20%, rgba(255,255,255,0.10), rgba(0,0,0,0)) , radial-gradient(700px 360px at 75% 60%, rgba(255,255,255,0.08), rgba(0,0,0,0)) , #0c0f14; filter: saturate(1.1); }
.site-preloader__bg::after { content: ""; position: absolute; inset: -60%; background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.10) 45%, rgba(255,255,255,0.02) 55%, transparent 65%); transform: translateX(-30%); animation: preloaderSweep 1.4s ease-in-out infinite; }
.site-preloader__inner { position: relative; text-align: center; padding: 28px 26px; border-radius: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); backdrop-filter: blur(10px); }
.site-preloader__title { margin-top: 14px; color: rgba(255,255,255,0.92); font-weight: 700; letter-spacing: 0.6px; }
.site-preloader__text { margin-top: 10px; color: rgba(255,255,255,0.65); font-size: 13px; }
.site-preloader__bar { width: min(320px, 70vw); height: 6px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; margin: 16px auto 0; }
.site-preloader__bar span { display: block; height: 100%; width: 40%; border-radius: 999px; background: linear-gradient(90deg, rgba(255,255,255,0.10), rgba(255,255,255,0.65), rgba(255,255,255,0.10)); animation: preloaderBar 1.0s ease-in-out infinite; }
body.preloading { overflow: hidden; }
.site-preloader.is-hiding { opacity: 0; visibility: hidden; transition: opacity .45s ease, visibility .45s ease; }
@keyframes preloaderSweep { 0% { transform: translateX(-35%) rotate(0.001deg); opacity: .35; } 60% { opacity: .65; } 100% { transform: translateX(35%) rotate(0.001deg); opacity: .35; } }
@keyframes preloaderBar { 0% { transform: translateX(-30%); opacity: .6; } 50% { opacity: 1; } 100% { transform: translateX(200%); opacity: .6; } }

.hero-slide { position: relative; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--slide-tint, rgba(255,255,255,0.28)) 0%, rgba(255,255,255,0) 52%), radial-gradient(800px 420px at 22% 55%, rgba(0,0,0,0.55), rgba(0,0,0,0)), linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0) 70%); pointer-events: none; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 30% 20%, rgba(255,255,255,0.14), rgba(0,0,0,0)), linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%); opacity: 0; transform: translateX(-25%); pointer-events: none; }
body:not(.preloading) .hero-slide::after { animation: heroShine 1.2s ease-out 1; }
body.preloading .hero-slide { filter: brightness(0.85) saturate(1.05); }
body:not(.preloading) .hero-slide { animation: heroReveal .6s ease-out 1; }
@keyframes heroShine { 0% { opacity: 0; transform: translateX(-30%); } 30% { opacity: .55; } 100% { opacity: 0; transform: translateX(30%); } }
@keyframes heroReveal { from { filter: brightness(0.88) saturate(1.02); } to { filter: brightness(1) saturate(1.1); } }
.topbar { background: var(--topbar-bg, #ffffff) !important; }
.topbar, .topbar a, .topbar .text-muted, .topbar i { color: var(--topbar-text, inherit) !important; }
.topbar a { text-decoration: none; }
.topbar i { font-size: 14px; }
.navbar { background: var(--navbar-bg, #ffffff) !important; }
.navbar, .navbar .nav-link, .navbar .navbar-brand, .navbar .navbar-toggler, .navbar .navbar-toggler-icon, .navbar i { color: var(--navbar-text, inherit) !important; }
.navbar .nav-link { position: relative; }
.navbar .nav-link::after { content: ""; position: absolute; left: .5rem; right: .5rem; bottom: .35rem; height: 2px; border-radius: 999px; background: var(--site-primary, #0d6efd); opacity: 0; transform: scaleX(0.35); transform-origin: center; transition: opacity .18s ease, transform .18s ease; }
.navbar .nav-link:hover, .navbar .nav-link:focus { color: var(--site-primary, var(--navbar-text, inherit)) !important; }
.navbar .nav-link:hover::after, .navbar .nav-link:focus::after { opacity: .95; transform: scaleX(1); }
.navbar .nav-link.active { color: var(--site-primary, var(--navbar-text, inherit)) !important; font-weight: 700; }
.navbar .nav-link.active::after { opacity: 1; transform: scaleX(1); }
.navbar .nav-link { font-weight: 500; letter-spacing: 0.2px; }
.navbar .nav-link i { opacity: 0.9; }
.site-footer { background: radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,0.08), rgba(0,0,0,0)) , #111; }
.site-footer .footer-title { font-weight: 700; letter-spacing: 0.6px; font-size: 13px; }
.site-footer .footer-social { width: 40px; height: 40px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); text-decoration: none; }
.site-footer .footer-social:hover { background: rgba(255,255,255,0.12); color: #fff; }
.hero { height: clamp(520px, 78vh, 760px); }
.hero .carousel-indicators { margin-bottom: 1.25rem; }
.hero .carousel-indicators [data-bs-target] { width: 10px; height: 10px; border-radius: 999px; opacity: .55; background-color: rgba(255,255,255,0.92); }
.hero .carousel-indicators .active { opacity: 1; }
.hero .carousel-control-prev-icon, .hero .carousel-control-next-icon { filter: drop-shadow(0 4px 18px rgba(0,0,0,0.55)); }
.hero .carousel-control-prev, .hero .carousel-control-next { width: 64px; }
.hero .carousel-control-prev-icon, .hero .carousel-control-next-icon { background-size: 60% 60%; }
.hero .carousel-control-prev, .hero .carousel-control-next { backdrop-filter: blur(10px); }
.hero .carousel-control-prev, .hero .carousel-control-next { border-radius: 14px; top: 50%; transform: translateY(-50%); height: 56px; }
.hero .carousel-control-prev { left: 12px; }
.hero .carousel-control-next { right: 12px; }
.carousel-item .hero-copy { opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
.carousel-item.active .hero-copy { opacity: 1; transform: translateY(0); }
@media (max-width: 575.98px) { .hero { height: clamp(420px, 70vh, 620px); } }
.hero .carousel, .hero .carousel-inner, .hero .carousel-item { height: 100%; }
.hero-slide { height: 100%; background-size: cover; background-position: center; filter: saturate(1.1); }
.hero .carousel-caption { left: 0; right: 0; top: 0; bottom: 0; display: flex; align-items: center; padding: 0; }
.hero-copy { max-width: 680px; padding: 28px 0; }
.hero-title { font-weight: 800; line-height: 1.04; letter-spacing: 0.4px; color: rgba(255,255,255,0.95); font-size: clamp(34px, 4vw, 60px); text-shadow: 0 10px 28px rgba(0,0,0,0.45); }
.hero-subtitle { margin-top: 14px; font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,0.78); max-width: 520px; text-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.hero-btn { margin-top: 22px; box-shadow: 0 14px 34px rgba(0,0,0,0.22); }
.modal-content.bg-black .carousel-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px; text-align: center; }
.modal-content.bg-black .carousel-caption .small { display: inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(0,0,0,0.55); }

.home-seo { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: 18px; border: 1px solid rgba(15, 23, 42, 0.08); background: radial-gradient(800px 260px at 10% 0%, rgba(13,110,253,0.12), rgba(255,255,255,0)) , linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.70)); backdrop-filter: blur(8px); box-shadow: 0 14px 40px rgba(15,23,42,0.08); }
.home-seo__icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(13,110,253,0.12); color: var(--site-primary, #0d6efd); border: 1px solid rgba(13,110,253,0.22); box-shadow: 0 10px 24px rgba(13,110,253,0.12); }
.home-seo__icon i { font-size: 18px; }
.home-seo__title { font-weight: 700; letter-spacing: 0.2px; color: rgba(15,23,42,0.78); font-size: 14px; margin-bottom: 6px; }
.home-seo__text { color: rgba(15,23,42,0.72); line-height: 1.55; }
.home-seo:hover { transform: translateY(-1px); transition: transform .18s ease, box-shadow .18s ease; box-shadow: 0 18px 50px rgba(15,23,42,0.12); }
@media (max-width: 575.98px) { .home-seo { padding: 14px 14px; } .home-seo__icon { width: 42px; height: 42px; flex-basis: 42px; border-radius: 12px; } }

.feature-card { height: 100%; }
.feature-card__inner { height: 100%; padding: 18px 18px; border-radius: 20px; border: 1px solid rgba(15, 23, 42, 0.08); background: radial-gradient(700px 260px at 10% 0%, rgba(13,110,253,0.10), rgba(255,255,255,0)) , linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.78)); backdrop-filter: blur(8px); box-shadow: 0 14px 40px rgba(15,23,42,0.08); position: relative; overflow: hidden; }
.feature-card__inner::after { content: ""; position: absolute; inset: -50%; background: linear-gradient(120deg, transparent 35%, rgba(13,110,253,0.08) 48%, transparent 62%); transform: translateX(-22%); opacity: 0; pointer-events: none; }
.feature-card__icon { width: 50px; height: 50px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: rgba(13,110,253,0.12); color: var(--site-primary, #0d6efd); border: 1px solid rgba(13,110,253,0.22); box-shadow: 0 10px 24px rgba(13,110,253,0.12); margin-bottom: 12px; }
.feature-card__icon i { font-size: 18px; }
.feature-card__title { font-weight: 800; letter-spacing: 0.2px; color: rgba(15,23,42,0.86); font-size: 16px; margin-bottom: 8px; }
.feature-card__text { color: rgba(15,23,42,0.70); line-height: 1.6; }
.feature-card__inner:hover { transform: translateY(-2px); transition: transform .18s ease, box-shadow .18s ease; box-shadow: 0 18px 56px rgba(15,23,42,0.12); }
.feature-card__inner:hover::after { opacity: 1; animation: featureShine 1.1s ease-out 1; }
@keyframes featureShine { 0% { transform: translateX(-28%) rotate(0.001deg); } 100% { transform: translateX(28%) rotate(0.001deg); } }

.contact-map { min-height: 520px; height: 100%; }
.contact-map iframe { width: 100% !important; height: 100% !important; min-height: 520px; border: 0; display: block; }

.contact-map--half { min-height: 340px; height: 100%; }
.contact-map--half iframe { min-height: 340px; }

.brands-marquee { overflow: hidden; border-radius: 14px; border: 1px solid rgba(15, 23, 42, 0.08); background: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.brands-marquee__track { display: flex; width: max-content; animation: brandsScroll var(--brands-speed, 18s) linear infinite; }
.brands-marquee__group { display: flex; gap: 18px; padding: 16px 18px; }
.brands-marquee__item { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,0.06); border: 1px solid rgba(15, 23, 42, 0.06); }
.brands-marquee__item img { width: 90px; height: 90px; object-fit: contain; display: block; padding: 10px; }
@keyframes brandsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brands-marquee__track { animation: none; } }
