/* ================================
   THEME (Purple • Green • Gray) — MID RANGE
================================== */
:root{
  --purple:#5B2EFF;
  --purple2:#7C4DFF;
  --green:#2ED47A;
  --green2:#19B86A;

  /* ✅ Mid range backgrounds (less dark) */
  --bg0:#151a2c;   /* base */
  --bg1:#1a2040;   /* mid */
  --bg2:#222a52;   /* deeper */

  /* ✅ brighter cards */
  --card:rgba(255,255,255,.10);

  --text:rgba(255,255,255,.94);
  --muted:rgba(255,255,255,.76);
  --muted2:rgba(255,255,255,.62);

  --border:rgba(255,255,255,.14);
  --border2:rgba(255,255,255,.20);

  --radius:18px;
  --radius2:16px;

  /* ✅ softer shadows */
  --shadow: 0 16px 40px rgba(7,10,18,.25);
  --shadowSoft: 0 12px 26px rgba(7,10,18,.20);

  --fontHead: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fontBody: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* Safe-area support */
  --safeR: env(safe-area-inset-right, 0px);
  --safeB: env(safe-area-inset-bottom, 0px);
}

/* ================================
   GLOBAL FIXES
================================== */
html, body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  font-family:var(--fontBody);
  color:var(--text);

  /* ✅ Mid-tone gradient background */
  background:
    radial-gradient(1100px 700px at 18% 0%, rgba(91,46,255,.20), transparent 60%),
    radial-gradient(900px 650px at 90% 12%, rgba(46,212,122,.16), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg1) 52%, var(--bg0));
}

img, svg, video, canvas{
  max-width:100%;
  height:auto;
}

a{ text-decoration:none; }
.text-muted-soft{ color:var(--muted) !important; }

.text-gradient{
  background: linear-gradient(90deg, var(--purple), #B19BFF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.text-gradient-green{
  background: linear-gradient(90deg, var(--green), #9BFFD0);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ================================
   SECTION SPACING
================================== */
.section{ padding:86px 0; }

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.section-head .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(91,46,255,.16);
  border:1px solid rgba(91,46,255,.32);
  color:rgba(255,255,255,.92);
  font-weight:800;
  font-size:.9rem;
}

.section-title{
  font-family:var(--fontHead);
  font-weight:900;
  letter-spacing:.2px;
  margin-top:12px;
}

.section-subtitle{
  color:var(--muted);
  max-width:62ch;
}

.section-head.text-center .section-subtitle{ margin-inline:auto; }

/* ================================
   BUTTONS
================================== */
.btn-accent{
  background: linear-gradient(90deg, var(--purple), var(--green));
  border:none;
  color:#fff;
  box-shadow: 0 14px 28px rgba(91,46,255,.22);
  transition: transform .15s ease, filter .15s ease;
}
.btn-accent:hover{ transform: translateY(-1px); filter:brightness(1.06); }

.btn-outline-theme{
  border:1px solid var(--border2);
  color:rgba(255,255,255,.94);
}
.btn-outline-theme:hover{
  border-color: rgba(46,212,122,.40);
  background: rgba(46,212,122,.12);
  color:#fff;
}

.btn-ghost{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
}
.btn-ghost:hover{
  background: rgba(46,212,122,.14);
  border-color: rgba(46,212,122,.28);
}

/* ================================
   TOPBAR
================================== */
.topbar{
  background: rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.topbar-link{
  color: rgba(255,255,255,.92);
}
.topbar-link:hover{ color: var(--green); }

.badge-soft{
  background: rgba(46,212,122,.16);
  border:1px solid rgba(46,212,122,.28);
  color: rgba(255,255,255,.96);
}

/* ================================
   NAVBAR
================================== */
.header{
  position:sticky;
  top:0;
  z-index:1020;
}


/* Navbar Logo */
.brand-logo{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(91,46,255,.18);
}

.brand-logo-img{
  width:100%;
  height:100%;
  border-radius: 15px;
  object-fit:contain;  /* keeps logo clean */
  padding:8px;         /* adjust if logo looks too tight */
}

/* Optional: Slightly smaller on mobile */
@media (max-width: 575px){
  .brand-logo{ width:48px; height:48px; border-radius:14px; }
  .brand-logo-img{ padding:7px; height: 56px; }
}

.navbar{
  background: rgba(26,32,64,.66); /* ✅ lighter navbar */
  border-bottom:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.navbar-brand{
  display:flex !important;
  align-items:center;
  gap:10px;
}

.navbar-brand .brand-mark{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(91,46,255,.95), rgba(46,212,122,.82));
  box-shadow: 0 10px 24px rgba(91,46,255,.22);
  flex:0 0 auto;
}

.brand-text{ line-height:1.1; }
.brand-title{
  display:block;
  font-family:var(--fontHead);
  font-weight:900;
  letter-spacing:.3px;
}
.brand-sub{
  display:block;
  font-size:.85rem;
  color:var(--muted2);
  margin-top:2px;
}

.navbar-nav{ align-items:center; }

.nav-link{
  color: rgba(255,255,255,.92) !important;
  font-weight:800;
  padding:.58rem .95rem !important;
  border-radius:999px;
  transition: background .15s ease, color .15s ease;
  white-space:nowrap;
}

.nav-link:hover,
.nav-link.active{
  background: rgba(46,212,122,.16);
  color:#fff !important;
}

/* ================================
   HERO
================================== */
.hero .carousel-item,
.hero-slide{
  min-height:82vh;
}

.hero-slide{
  position:relative;
  display:grid;
  align-items:center;
  background-image: var(--bg);
  background-size:cover;
  background-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 580px at 20% 30%, rgba(91,46,255,.30), transparent 60%),
    radial-gradient(820px 560px at 82% 18%, rgba(46,212,122,.22), transparent 60%),
    linear-gradient(180deg, rgba(20,26,44,.18), rgba(20,26,44,.70));
  pointer-events:none;
}

.hero-slide > .container{
  position:relative;
  z-index:1;
}

.hero-card{
  padding:28px;
  border-radius:var(--radius);
  background: rgba(26,32,64,.62);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(46,212,122,.16);
  border:1px solid rgba(46,212,122,.30);
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
}

.hero-title{
  font-family:var(--fontHead);
  font-weight:950;
  letter-spacing:.2px;
  margin:0 0 10px;
}

.hero-text{
  color: var(--muted);
  margin:0;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.mini-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.94);
  font-weight:800;
}

.glass-panel{
  padding:22px;
  border-radius:var(--radius);
  background: rgba(26,32,64,.62);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadowSoft);
  backdrop-filter: blur(14px);
}

.icon-list{
  list-style:none;
  padding:0;
  margin:0;
}
.icon-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:10px 0;
  color: rgba(255,255,255,.92);
}
.icon-list i{
  color: var(--green);
  margin-top:2px;
}

/* ================================
   FEATURE GRID
================================== */
.feature-grid{ display:grid; gap:12px; }

.feature-tile{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  border-radius:var(--radius2);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.feature-tile i{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background: rgba(91,46,255,.18);
  border:1px solid rgba(91,46,255,.30);
  flex:0 0 auto;
}

.feature-tile h6{
  margin:0;
  font-weight:950;
  font-family:var(--fontHead);
}
.feature-tile p{
  margin:2px 0 0;
  color: var(--muted);
  font-size:.95rem;
}

/* ================================
   ABOUT
================================== */
.about-points{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.point{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px;
  border-radius:var(--radius2);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.point i{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius:16px;
  background: rgba(46,212,122,.16);
  border:1px solid rgba(46,212,122,.28);
  color: var(--green);
  flex:0 0 auto;
  font-size:1.2rem;
}

.point h6{
  margin:0;
  font-family:var(--fontHead);
  font-weight:950;
}
.point p{
  margin:3px 0 0;
  color: var(--muted);
}

/* About Image Block */
.about-image-wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  box-shadow: var(--shadowSoft);
}

.about-image{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.about-image-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    radial-gradient(600px 380px at 20% 20%, rgba(91,46,255,.22), transparent 60%),
    radial-gradient(600px 380px at 80% 20%, rgba(46,212,122,.16), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.45));
}

.about-image-badge{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(26,32,64,.62);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.about-image-badge i{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(46,212,122,.16);
  border: 1px solid rgba(46,212,122,.28);
  color: #fff;
  flex: 0 0 auto;
}

.about-image-badge strong{
  display:block;
  font-family: var(--fontHead);
  font-weight: 950;
  line-height: 1.1;
}
.about-image-badge span{
  display:block;
  color: rgba(255,255,255,.74);
  font-size: .92rem;
  margin-top: 2px;
}

.about-image-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Chips */
.chip{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-weight:800;
}

/* ================================
   SERVICES WITHOUT IMAGE
================================== */
.service-card{
  height:100%;
  padding:30px 22px;
  border-radius:var(--radius);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-align:center;
}

.service-card:hover{
  transform: translateY(-8px);
  border-color: rgba(46,212,122,.40);
  box-shadow: 0 20px 46px rgba(7,10,18,.22);
}

.service-icon{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background: linear-gradient(135deg, rgba(91,46,255,.20), rgba(46,212,122,.20));
  border:1px solid rgba(255,255,255,.20);
  font-size:1.8rem;
  transition: transform .6s ease, background .3s ease;
}

.service-card:hover .service-icon{
  transform: rotate(360deg);
  background: linear-gradient(135deg, rgba(46,212,122,.26), rgba(91,46,255,.26));
}

.service-card h5{
  font-family:var(--fontHead);
  font-weight:950;
  margin:5px 0 0;
}

.service-card p{
  margin:0;
  color:var(--muted);
  font-size: .95rem;
}

/* ================================
   WHY CHOOSE
================================== */
.why-list{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.why-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px;
  border-radius:var(--radius2);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.why-ico{
  width:48px; height:48px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(46,212,122,.16);
  border:1px solid rgba(46,212,122,.28);
  color: var(--green);
  flex:0 0 auto;
  font-size:1.2rem;
}

.why-item h6{
  margin:0;
  font-family:var(--fontHead);
  font-weight:950;
}
.why-item p{
  margin:3px 0 0;
  color: var(--muted);
}

.why-panel{
  height:100%;
  padding:22px;
  border-radius:var(--radius);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadowSoft);
}

.bonus{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px;
  border-radius:var(--radius2);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.bonus-icon{
  width:48px; height:48px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(91,46,255,.18);
  border:1px solid rgba(91,46,255,.30);
  flex:0 0 auto;
}

.tag-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.95);
  font-weight:800;
  font-size:.95rem;
}

.cta-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  border-radius:var(--radius2);
  background: linear-gradient(135deg, rgba(91,46,255,.18), rgba(46,212,122,.14));
  border:1px solid rgba(255,255,255,.18);
}
.cta-box p{ margin:0; color:var(--muted); }

/* ================================
   ACHIEVEMENTS
================================== */
.stat-card{
  padding:22px;
  border-radius:var(--radius);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  text-align:center;
}

.stat-ico{
  width:58px; height:58px;
  border-radius:20px;
  margin:0 auto 12px;
  display:grid; place-items:center;
  background: rgba(91,46,255,.18);
  border:1px solid rgba(91,46,255,.30);
  font-size:1.35rem;
}

.stat-num{
  font-family:var(--fontHead);
  font-weight:950;
  letter-spacing:.3px;
  font-size:2rem;
}

.stat-label{ color:var(--muted); font-weight:800; }

/* ================================
   GALLERY
================================== */
.gallery-item{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.gallery-item:hover{
  transform: translateY(-6px);
  border-color: rgba(46,212,122,.32);
  box-shadow: 0 18px 44px rgba(7,10,18,.22);
}

.gallery-item img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.45));
  opacity:0;
  transition: opacity .18s ease;
}
.gallery-item:hover .gallery-overlay{ opacity:1; }

.gallery-caption{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.gallery-caption .cap{
  font-family:var(--fontHead);
  font-weight:950;
}
.gallery-caption .zoom{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}

/* ================================
   LIGHTBOX
================================== */
.modal-content.lightbox{
  background: rgba(26,32,64,.95);
  border:1px solid rgba(255,255,255,.16);
}
.lightbox-img{
  max-height:82vh;
  object-fit:contain;
  background: rgba(0,0,0,.15);
}

/* ================================
   CONTACT
================================== */
.contact-card, .form-card{
  padding:22px;
  border-radius:var(--radius);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadowSoft);
}

.contact-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px;
  border-radius:var(--radius2);
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  margin-top:12px;
}
.contact-row:hover{
  border-color: rgba(46,212,122,.32);
  background: rgba(46,212,122,.12);
}

.contact-ico{
  width:48px; height:48px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(91,46,255,.18);
  border:1px solid rgba(91,46,255,.30);
  flex:0 0 auto;
}

.form-label{ color: rgba(255,255,255,.86); font-weight:900; }

.form-control{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.form-control:focus{
  background: rgba(255,255,255,.12);
  border-color: rgba(46,212,122,.40);
  box-shadow: 0 0 0 .25rem rgba(46,212,122,.12);
  color:#fff;
}

/* ================================
   MAP
================================== */
.map-section{ padding: 0 0 86px; }

.map-wrap{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  box-shadow: var(--shadowSoft);
}

.map-head{
  padding:18px 18px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* ================================
   FOOTER
================================== */
.footer{
  padding:60px 0 40px;
  background: rgba(21,26,44,.78);
  border-top:1px solid rgba(255,255,255,.12);
}

.footer-title{
  font-family:var(--fontHead);
  font-weight:950;
  margin-bottom:10px;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--green); }

.address-box{
  padding:14px;
  border-radius:var(--radius2);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color: var(--muted);
}

.social-btn{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:16px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
}
.social-btn:hover{
  background: rgba(46,212,122,.14);
  border-color: rgba(46,212,122,.28);
}

/* ================================
   FLOATING BUTTONS (NO OVERFLOW)
================================== */
.float-actions{
  position:fixed;
  right: calc(16px + var(--safeR));
  bottom: calc(16px + var(--safeB));
  display:grid;
  gap:12px;
  z-index:2000;
  pointer-events:none;
}
.float-actions a{ pointer-events:auto; }

.float-btn{
  position:relative;
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 40px rgba(7,10,18,.28);
  overflow:hidden;
  contain: paint;
}

.float-btn i{
  position:relative;
  z-index:2;
  font-size:1.35rem;
}

.float-btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: conic-gradient(from 180deg,
    rgba(46,212,122,0),
    rgba(46,212,122,.55),
    rgba(91,46,255,.55),
    rgba(46,212,122,0)
  );
  filter: blur(10px);
  opacity:.65;
  animation: spin 2.6s linear infinite;
}
.float-btn::after{
  content:"";
  position:absolute;
  inset:1px;
  background: inherit;
  border-radius:17px;
  z-index:1;
}

.float-whatsapp{
  background: radial-gradient(circle at 30% 30%, rgba(46,212,122,.95), rgba(25,184,106,.92));
}
.float-call{
  background: radial-gradient(circle at 30% 30%, rgba(91,46,255,.95), rgba(124,77,255,.92));
}

.float-tip{
  position:absolute;
  right:64px;
  top:50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(26,32,64,.95);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  padding:8px 10px;
  border-radius:12px;
  font-weight:900;
  opacity:0;
  transition: all .18s ease;
  white-space:nowrap;
  pointer-events:none;
  z-index:3;
}
.float-btn:hover .float-tip{
  opacity:1;
  transform: translateY(-50%) translateX(0);
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ================================
   RESPONSIVE
================================== */
@media (max-width: 991px){
  .hero .carousel-item,
  .hero-slide{ min-height: 88vh; }

  .gallery-item img{ height: 210px; }

  .about-image{ height: 420px; }
}

@media (max-width: 575px){
  .section{ padding: 66px 0; }

  .hero-card{ padding:18px; }
  .hero-title{ font-size: 1.85rem; }

  .about-image{ height: 320px; }
  .about-image-overlay{ padding: 14px; }

  .float-actions{
    right: calc(12px + var(--safeR));
    bottom: calc(12px + var(--safeB));
    gap:10px;
  }
  .float-btn{
    width:52px;
    height:52px;
    border-radius:16px;
  }
  .float-tip{ display:none; }
}

@media(max-width:768px)
{
	.cu-mb-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
	}
}

@media (max-width: 374px) {
    .brand-logo-img {
        padding: 7px;
        height: 47px;
    }
}