
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif
}
body{
  background:#000;
  color:#fff
}

.word-anim{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordFade .6s ease forwards;
}
@keyframes wordFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

body.nav-open{
  overflow:hidden;
}

:root{
  --bg:#04020a;
  --purple:#a855f7;
  --border:rgba(255,255,255,.08);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .75s ease, transform .75s ease, filter .75s ease;
  will-change:opacity, transform;
}
[data-animate].show{
  opacity:1;
  transform:translateY(0);
}
/* ================= HERO ================= */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden
}
.hero video{display:none;}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.06);
  animation:heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom{
  from{transform:scale(1.06) translateY(0); filter:brightness(.9);}
  to{transform:scale(1.02) translateY(-6px); filter:brightness(1);}
}
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55)
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:left;
  gap:40px;
  padding:180px 7vw 0
}
.hero-left{
  flex:1;
  display:flex;
  align-items:flex-start;
}
.hero-right{
  flex:1;
  max-width:640px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
/* ===== HERO TEXT ANIMATION ===== */
.hero h1{
  font-size:clamp(2.4rem,5vw,4rem);
  font-weight:700;
  opacity:0;
  transform:translateY(30px);
  animation:heroTitle 1.1s cubic-bezier(.22,.61,.36,1) forwards;
      color: white;

}

.hero p{
  max-width:720px;
  margin:0;
  opacity:0;
  transform:translateY(30px);
  animation:heroText 1.1s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay:.4s;
}

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{display:none;}
  .hero-img{width:100%;}
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:22px;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}
@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}


.word-anim{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
}
.word-anim span{
  display:inline-block;
  opacity:0;
  transform:translateY(10px);
  animation:wordFade .6s ease forwards;
}

@keyframes wordFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:1100px){
  .top-nav{padding:16px 0;}
  .scroll-nav .nav-inner{border-radius:32px; padding:12px 20px;}
}

@media(max-width:980px){
  .main-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:76vw;
    max-width:340px;
    height:100vh;
    flex-direction:column;
    align-items:flex-start;
    padding:110px 26px 40px;
    background:rgba(8,7,13,.98);
    backdrop-filter:blur(12px);
    gap:18px;
    transition:.35s ease;
    z-index:950;
    overflow-y:auto;
  }
  .top-nav .main-menu{border-radius:0 0 0 24px;}
  .scroll-nav .main-menu{border-radius:24px 0 0 24px;}
  .top-nav.open .main-menu,
  .scroll-nav.open .main-menu{right:0;}
  .menu-toggle{display:flex;}
  .nav-actions .btn-gradient{display:none;}
  .mobile-cta{display:block;}
  .main-menu li{width:100%;}
  .main-menu a{display:block; width:100%; padding:10px 0;}
  .dropdown,
  .sub-dropdown{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:transparent;
    padding:6px 0 0 0;
  }
  .dropdown li,
  .sub-dropdown li{
    padding:8px 0 0 14px;
  }
  .has-dropdown > a::after{display:none;}
  .top-nav .brand img{height:52px;}
  .scroll-nav .brand img{height:32px;}
}

/* ===== KEYFRAMES ===== */
@keyframes heroTitle{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes heroText{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:900px){
  .hero{
    height:auto;
    min-height:88vh;
  }
  .hero video{
    width:100%;
  }
  .hero-content{
    padding:150px 6vw 120px;
    align-items:center;
    justify-content:center;
    text-align:center;
  }
  .hero-content>div{
    align-items:center;
  }
  .hero .btn-hero{
    align-self:center;
  }
}
@media(max-width:600px){
  .hero-content{
    padding:140px 5vw 90px;
  }
  .hero p{
    line-height:1.6;
    font-size:1rem;
  }
}

/* ===========================================
   TOP NAV
   =========================================== */
.top-nav{
  position:absolute;
  top:0;
  width:100%;
  padding:22px 0;
  z-index:998;
}
.top-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

/* ===========================================
   FLOATING NAV
   =========================================== */
.scroll-nav{
  position:fixed;
  top:-120px;
  width:100%;
  z-index:998;
  transition:.5s ease
}
.scroll-nav.active{top:20px}

.scroll-nav .nav-inner{
  max-width:1200px;
  width:calc(100% - 24px);
  margin:0 auto;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(14px);
  border-radius:60px;
  padding:14px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.6)
}

/* ===========================================
   BRAND
   =========================================== */
.brand{
  display:flex;
  align-items:center;
  gap:10px
}
.top-nav .brand img{height:60px}
.scroll-nav .brand img{height:36px}
.brand span{
  font-weight:600;
  font-size:18px
}

/* ===========================================
   MAIN MENU
   =========================================== */
.main-menu{
  display:flex;
  gap:24px;
  list-style:none
}
.main-menu li{
  position:relative
}
.main-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding:6px 0;
  display:block;
}

/* underline animation */
.main-menu li:not(.has-mega-dropdown) > a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:linear-gradient(90deg,#a855f7,#ec4899);
  transition:.35s ease
}
.main-menu li:not(.has-mega-dropdown):hover>a::after{
  width:100%
}

/* Services trigger special styling */
.has-mega-dropdown > a {
  cursor: pointer;
  transition: color .3s ease;
}
.has-mega-dropdown:hover > a,
.has-mega-dropdown.active > a {
  color: #a855f7;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  z-index: 1001;
  position: relative;
}
.menu-toggle{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  display:none;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  cursor:pointer;
  transition:.3s ease;
  padding:0;
}
.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:.3s ease;
}
.menu-toggle:focus-visible{
  outline:2px solid #a855f7;
  outline-offset:3px;
}
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:997;
}
body.nav-open .menu-overlay{
  opacity:1;
  visibility:visible;
}
.mobile-cta{
  display:none;
}
.mobile-cta .btn-gradient{
  width:100%;
  text-align:center;
}

/* ===========================================
   MEGA DROPDOWN
   =========================================== */
.mega-dropdown {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  display: none;
  border-top: 3px solid linear-gradient(135deg, #a855f7, #ec4899);
  z-index: 1000;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.scroll-nav.active ~ .mega-dropdown {
  top: 94px;
}

.mega-dropdown.open {
  display: block !important;
}

.mega-wrapper {
  display: flex;
  width: 100%;
  min-height: 400px;
  max-width: 100%;
}

/* ─── SIDEBAR ─────────────────────────────────────── */
.mega-sidebar {
  width: 270px;
  min-width: 270px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  padding: 8px 0;
}

.mega-sidebar ul {
  list-style: none;
}

.mega-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .18s, color .18s, border-left-color .18s;
  border-left: 4px solid transparent;
  position: relative;
  cursor: pointer;
}

.mega-sidebar ul li.sidebar-active a,
.mega-sidebar ul li a:hover {
  background: rgba(255,255,255,.15);
  border-left-color: #fff;
  color: #fff;
}

.sidebar-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-label-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sidebar-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.sidebar-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
  font-weight: 400;
}

.sidebar-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity .15s;
}

.mega-sidebar ul li.sidebar-active a .sidebar-arrow,
.mega-sidebar ul li a:hover .sidebar-arrow {
  opacity: 1;
}

/* ─── CONTENT AREA ────────────────────────────────── */
.mega-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.page-content {
  display: none;
  flex: 1;
  flex-direction: row;
}

.page-content.active {
  display: flex;
}

.mega-content {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  gap: 28px;
}

.mega-col {
  flex: 1;
}

.col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #1565c0;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8edf5;
  margin-bottom: 6px;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: color .18s, padding-left .18s;
}

.mega-col ul li:last-child a {
  border-bottom: none;
}

.mega-col ul li a:hover {
  color: #1565c0;
  padding-left: 5px;
}

.mega-col ul li a .link-dot {
  width: 6px;
  height: 6px;
  background: #1565c0;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .18s;
}

.mega-col ul li a:hover .link-dot {
  opacity: 1;
}

.more-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #1565c0 !important;
  font-weight: 700 !important;
  margin-top: 8px;
  border-bottom: none !important;
  font-size: 13px !important;
  padding-left: 0 !important;
}

.more-link:hover {
  padding-left: 0 !important;
}

.more-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.more-link:hover svg {
  transform: translateX(4px);
}

/* ─── RIGHT PANEL ─────────────────────────────────── */
.mega-panel {
  width: 250px;
  min-width: 250px;
  background: #f5f8ff;
  border-left: 1px solid #e2e9f5;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #8899bb;
  text-transform: uppercase;
}

.panel-img {
  width: 100%;
  height: 110px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.panel-badges {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-badges li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #3a4a6b;
  font-weight: 500;
}

.check-icon {
  width: 18px;
  height: 18px;
  background: #1565c0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-cta {
  display: block;
  background: linear-gradient(135deg, #a855f7, #ec4899);;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  margin-top: 2px;
}

.panel-cta:hover {
  background: #0d47a1;
  transform: translateY(-1px);
}

/* ─── PAGE CONTENT BACKGROUNDS ───────────────────── */
.bg-seo { background: linear-gradient(135deg,#e3f0ff,#c8dcff); }
.bg-smm { background: linear-gradient(135deg,#fce4ec,#f8bbd9); }
.bg-orm { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); }
.bg-ppc { background: linear-gradient(135deg,#fff3e0,#ffe0b2); }
.bg-link { background: linear-gradient(135deg,#f3e5f5,#e1bee7); }
.bg-content { background: linear-gradient(135deg,#e0f7fa,#b2ebf2); }
.bg-white { background: linear-gradient(135deg,#f5f5f5,#e0e0e0); }
.bg-webdev { background: linear-gradient(135deg,#ede7f6,#d1c4e9); }


/* ================= BUTTON ================= */
.btn-gradient{
  background:linear-gradient(135deg,#a855f7,#ec4899);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:30px;
  cursor:pointer;
  display:inline-block;
  text-decoration:none
}
.hero .btn-hero{
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color:#000;
  border:none;
  padding:16px 28px;
  border-radius:30px;
  font-weight:600;
  display:inline-block;
  text-decoration:none;
  cursor:pointer;
  align-self:flex-start;
  box-shadow:0 10px 40px rgba(0,0,0,.28)
}
/* ================= CHAT ================= */
.chat-box{
  position:fixed;
  right:20px;
  bottom:80px;
  width:280px;
  background:#fff;
  color:#000;
  border-radius:16px;
  padding:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.4)
}
.chat-box button{
  width:100%;
  margin-top:8px;
  border-radius:20px;
  border:1px solid #a855f7;
  background:transparent;
  color:#a855f7;
  padding:8px
}

/* demo scroll */
.section{
  height:140vh;
  background:linear-gradient(120deg,#1a002a,#000)
}
/* ================= SIDE SOCIAL ================= */
.side-social{
  position:fixed;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:14px;
  opacity:0;
  pointer-events:none;
  transition:.5s ease;
  z-index:999;
}

.side-social.active{
  opacity:1;
  pointer-events:auto;
}

.side-social a{
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  transition:.35s ease;
  position:relative;
}

/* Glow ring */
.side-social a::after{
  content:"";
  position:absolute;
  inset:-5px;
  border-radius:50%;
  opacity:0;
  transition:.35s ease;
}

/* Hover animation */
.side-social a:hover{
  transform:scale(1.15);
  background:#fff;
  color:#000;
}

.side-social a:hover::after{
  opacity:1;
}

/* Platform glow colors */
.linkedin:hover::after{
  background:rgba(10,102,194,.5);
  filter:blur(12px);
}

.instagram:hover::after{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  filter:blur(12px);
}

.facebook:hover::after{
  background:rgba(24,119,242,.5);
  filter:blur(12px);
}

.youtube:hover::after{
  background:rgba(255,0,0,.5);
  filter:blur(12px);
}

@media(max-width:900px){
  .side-social{
    display:none;
  }
}

/* ===== BACKGROUND ===== */
.contact-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 40% 50%, rgba(160,70,255,.35), transparent 55%),
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    #05050a;
  background-size:auto,40px 40px,40px 40px,auto;
  padding:100px 0;
}

/* ===== LAYOUT ===== */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
}

/* ===== LEFT CONTENT ===== */
.contact-info span{
  display:flex;
  align-items:center;
  gap:10px;
  color:#b88cff;
  font-size:13px;
  letter-spacing:1px;
}

/* 🔥 DOT */
.contact-info span::before{
  content:'';
  width:8px;
  height:8px;
  background:#b88cff;
  border-radius:50%;
  box-shadow:0 0 12px rgba(184,140,255,.9);
}

.contact-info h1{
  font-size:48px;
  margin:15px 0 20px;
}

.contact-info p{
  opacity:.85;
  max-width:520px;
  line-height:1.7;
  margin-bottom:30px;
}

/* ===== IMAGE BELOW PARA ===== */
.contact-image{
  max-width:420px;
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}

.contact-image.show{
  opacity:1;
  transform:translateY(0);
}

.contact-image img{
  width:100%;
  filter:drop-shadow(0 20px 40px rgba(168,85,247,.4));
}

/* ===== FORM CARD ===== */
.form-card{
  background:
    radial-gradient(circle at 20% 20%, rgba(168,85,247,.25), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(56,189,248,.2), transparent 40%),
    rgba(12,10,22,.78);
  border:1px solid rgba(168,85,247,.25);
  box-shadow:0 30px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  border-radius:22px;
  padding:38px;
  opacity:0;
  transform:translateX(60px);
  transition:1s ease;
}

.form-card.show{
  opacity:1;
  transform:translateX(0);
}

.form-card h3{
  margin-bottom:25px;
  font-weight:500;
}

/* ===== INPUTS ===== */
.form-group{
  margin-bottom:18px;
}

.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:14px 16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  border-radius:12px;
  color:#fff;
  font-size:14px;
  outline:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color:#ccc;
}

.form-group select{
  appearance:none;
  background-color:rgba(17,15,30,.95);
  background-image:linear-gradient(45deg, transparent 50%, rgba(255,255,255,.65) 55%), linear-gradient(135deg, rgba(255,255,255,.65) 45%, transparent 50%);
  background-position:calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  cursor:pointer;
}

.form-group select option{
  background:#0f0d1c;
  color:#fff;
}

.form-group textarea{
  min-height:120px;
  resize:none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:rgba(168,85,247,.6);
  box-shadow:0 0 0 4px rgba(168,85,247,.15);
}

/* ===== BUTTON ===== */
[type="submit"],
.submit-btn{
  width:100%;
  padding:14px;
  background:linear-gradient(120deg,#a855f7 0%, #7c3aed 45%, #22d3ee 100%);
  border:none;
  border-radius:999px;
  color:#fff;
  font-size:16px;
  letter-spacing:.3px;
  cursor:pointer;
  transition:.25s ease;
  box-shadow:0 15px 45px rgba(168,85,247,.35);
}

[type="submit"]:hover,
.submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 55px rgba(168,85,247,.45);
}

.form-thankyou{
  margin-top:12px;
  color:#4ade80;
  font-weight:500;
}

/* ===== TEXT ANIMATIONS ===== */
.animate{
  opacity:0;
  transform:translateY(30px);
  transition:.8s ease;
}

.animate.show{
  opacity:1;
  transform:translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .contact-info h1{
    font-size:38px;
  }

  .form-card{
    transform:translateY(40px);
  }
}
/* ===== MAP SECTION ===== */
.map-section {
  padding: 80px 20px;
  background: #0a0a14;
  color: #fff;
  text-align: left;
}
.map-heading{
  max-width:1200px;
  margin:0 auto 20px;
  padding:0 20px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  letter-spacing:1.4px;
  color:#e6d7ff;
  text-transform:uppercase;
}
.map-heading .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#fbbf24,#f59e0b);
  box-shadow:0 0 12px rgba(251,191,36,.7);
}

.map-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.map-container iframe {
  opacity:0;
  transform:translateY(24px) scale(.98);
  transition:opacity .7s ease, transform .7s ease;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(168,85,247,.3);
}
.map-container iframe.show{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* CONTACT INFO CARDS BELOW MAP */
.contact-cards {
  display: contents;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.contact-cards .card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(168,85,247,.2);
  transition: transform 0.3s ease, opacity .6s ease, transform .6s ease;
  opacity:0;
  transform:translateY(20px);
}

.contact-cards .card:hover {
  transform: translateY(-5px);
}

.contact-cards .card h4 {
  margin-bottom: 10px;
  color: #a855f7;
}

.contact-cards .card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* Overlay cards on map */
.contact-cards-overlay {
  position: absolute;
  bottom: 63px; /* adjust vertical position */
  left: 73%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10;
}

.contact-cards-overlay .card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 20px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 15px 35px rgba(168,85,247,.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity .6s ease;
  opacity:0;
  transform:translateY(18px);
}

.contact-cards-overlay .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(168,85,247,.4);
}

.contact-cards-overlay .card h4 {
  margin-bottom: 10px;
  color: #a855f7;
}

.contact-cards-overlay .card p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
.contact-cards .card.show,
.contact-cards-overlay .card.show{
  opacity:1;
  transform:translateY(0);
}

/* Responsive adjustments */
@media(max-width:768px){
  .contact-cards-overlay {
    flex-direction: column;
    align-items: center;
    bottom: -30px;
  }
}

/* ================= FOOTER ================= */

.lavender-footer{
    position:relative;
    background:linear-gradient(180deg,#0d0a1f 0%,#140f2d 50%,#090617 100%);
    padding:120px 0 60px;
    overflow:hidden;
    color:#eae6ff;
}

/* BIG BACKGROUND TEXT */
.lavender-footer .bg-text{
    position:absolute;
    bottom:-60px;
    left:50%;
    transform:translateX(-50%);
    font-size:18vw;
    font-weight:900;
    letter-spacing:10px;
    color:rgba(255,255,255,0.03);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
}

/* Glow Effect */
.lavender-footer::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(168,85,247,0.35) 0%,transparent 70%);
    top:-250px;
    right:-250px;
    filter:blur(120px);
}

/* Floating Badge */
.floating-badge{
    position:absolute;
    bottom:80px;
    right:10%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    padding:20px 30px;
    border-radius:20px;
    border:1px solid rgba(168,85,247,0.4);
    color:#fff;
    font-weight:600;
    transform:rotate(-8deg);
    box-shadow:0 20px 40px rgba(168,85,247,0.4);
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    position:relative;
    z-index:2;
}

.footer-logo{
    margin-bottom:25px;
}

.footer-logo img{
    max-width:180px;
    height:auto;
    display:block;
    filter:drop-shadow(0 10px 20px rgba(168,85,247,0.5));
    transition:0.3s ease;
}

.footer-logo img:hover{
    transform:scale(1.05);
}

.footer-brand p{
    color:#bfb9ff;
    margin-bottom:35px;
    line-height:1.8;
}
.newsletter form{
    display:flex;
    width:100%;
}

.newsletter input{
    flex:1;
    padding:16px 20px;
    border:none;
    background:transparent;
    color:white;
    outline:none;
}

.newsletter button{
    padding:16px 30px;
    border:none;
    background:linear-gradient(135deg,#a855f7,#c084fc);
    color:white;
    font-weight:600;
    cursor:pointer;
}


/* Links */
.footer-links h4{
    margin-bottom:20px;
    font-weight:700;
    color:#c084fc;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#bfb9ff;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#fff;
    padding-left:6px;
}

/* Social Icons */
.socials{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.socials a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.socials a:hover{
    background:#a855f7;
    transform:translateY(-4px);
}

/* Bottom */
.footer-bottom{
    text-align:center;
    margin-top:100px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#9e9ac8;
    position:relative;
    z-index:2;
}

/* Responsive */
@media(max-width:992px){
    .footer-container{grid-template-columns:1fr 1fr;}
}

@media(max-width:600px){
    .footer-container{grid-template-columns:1fr;text-align:center;}
    .newsletter{flex-direction:column;border-radius:15px;}
    .newsletter button{width:100%;}
    .floating-badge{display:none;}
}