/* ===========================
   MAMCO — AURORA GLASS THEME
   Full CSS (drop-in replacement)
   =========================== */

:root{
  --bg-overlay: rgba(6, 10, 18, 0.55);
  --glass: rgba(12, 18, 32, 0.55);
  --glass-2: rgba(12, 18, 32, 0.38);
  --glass-border: rgba(255, 255, 255, 0.10);
  --text: #F5F7FF;
  --text-2: rgba(245, 247, 255, 0.78);
  --accentA: #2DE2E6; /* teal */
  --accentB: #7C3AED; /* violet */
}

/* ================= BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  color: var(--text);
  background: transparent;
}

/* Force text white by default */
h1, h2, h3, h4, h5, h6,
p, li, a, label, span {
  color: var(--text);
}

/* ================= GLOBAL VIDEO ================= */
.global-video-wrapper {
  position: fixed;
  inset: 0;
  z-index: -999;
  overflow: hidden;
  pointer-events: none;
}

.global-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.40) saturate(1.25);
}

/* ================= LAYERED SECTIONS ================= */
.navbar,
.hero,
.about,
.services,
.policy,
.contact {
  background: transparent;
  position: relative;
  z-index: 1;
}

/* ================= NAVBAR ================= */
.navbar{
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0; /* tight divider */
  background: var(--bg-overlay);
  backdrop-filter: blur(12px);
}

.nav-container{
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.brand{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo-img{
  height: 100px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.nav{
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links{
  list-style: none;
  display: flex;
  gap: 44px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-size: 0.95rem;
  opacity: 0.92;
}

.nav-links a:hover{
  opacity: 1;
  border-bottom: 2px solid rgba(245, 247, 255, 0.85);
  padding-bottom: 6px;
}

.nav-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.nav-email{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--glass-2);
  border: 1px solid var(--glass-border);
}

.nav-email:hover{
  box-shadow: 0 12px 35px rgba(45,226,230,0.12), 0 12px 35px rgba(124,58,237,0.12);
  border-color: rgba(45,226,230,0.28);
}

.email-icon{
  font-size: 1.05rem;
  line-height: 1;
}

.email-text{
  font-size: 0.95rem;
}

.nav-divider{
  height: 2px;
  width: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--accentA), var(--accentB));
  opacity: 0.7;
}

/* ================= HERO ================= */
.hero{
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 20px 70px;
  text-align: center;
}

.hero-inner{
  max-width: 1100px;
  width: 100%;
}

.hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--glass-2);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  margin-bottom: 22px;
}

.pill-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accentA);
  display: inline-block;
}

.pill-text{
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text);
}

.hero-title{
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.05;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin-bottom: 14px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-accent{
  color: var(--accentB);
}

.hero-subtitle{
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(1.2rem, 2.2vw, 2.1rem);
  margin-bottom: 18px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.hero-desc{
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-2);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-cta{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  opacity: 0.98;
}

.btn-primary{
  background: linear-gradient(90deg, var(--accentA), var(--accentB));
  color: #071018;
}

.btn-secondary{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn:hover{
  box-shadow: 0 12px 35px rgba(45,226,230,0.12), 0 12px 35px rgba(124,58,237,0.12);
}

/* ================= ABOUT ================= */
.about{
  padding: 90px 10%;
}

.about h2{
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.about-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 25px 35px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-card:hover{
  transform: translateY(-6px);
  border-color: rgba(45,226,230,0.35);
}

.about-card h3{
  color: var(--text);
  font-weight: 700;
  margin-top: 10px;
}

.about-card p{
  color: var(--text-2);
  line-height: 1.6;
}

/* Restore ABOUT images to original size */
.about-card img{
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
}

/* ================= SERVICES ================= */
.services{
  padding: 90px 10%;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 25px 35px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.35);
}

.service-card h4{
  color: var(--text);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p{
  color: var(--text-2);
  line-height: 1.6;
}

/* Restore SERVICES images to original size */
.service-card img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ================= POLICY (MATCH SERVICES CARDS) ================= */
.policy-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

.policy-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 30px 25px 35px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.policy-card:hover{
  transform: translateY(-6px);
  border-color: rgba(45,226,230,0.35);
}

.policy-card img{
  width: 100%;
  height: 200px; /* same as services images */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.policy-card h4{
  color: var(--text);
  font-weight: 700;
  margin-bottom: 10px;
}

.policy-card p{
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* bullet list inside policy cards */
.policy-card .policy-list{
  margin: 0;
  padding-left: 18px;
}

.policy-card .policy-list li{
  color: var(--text-2);
  line-height: 1.7;
  margin: 6px 0;
}

/* responsive */
@media (max-width: 900px){
  .policy-cards{
    grid-template-columns: 1fr;
  }
}


/* ================= CONTACT ================= */
.contact{
  display: flex;
  padding: 80px 10%;
  gap: 50px;
}

.contact-left,
.contact-right{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.contact-left h3,
.contact-right h3{
  color: var(--text);
  font-weight: 700;
}

.contact-left p,
.contact-right p,
.contact-left label{
  color: var(--text-2);
  line-height: 1.7;
}

.contact input,
.contact textarea{
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.30);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  outline: none;
}

.contact input::placeholder,
.contact textarea::placeholder{
  color: rgba(245, 247, 255, 0.55);
}

.contact button{
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--accentA), var(--accentB));
  color: #071018;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav{
    justify-content: flex-end;
  }

  .nav-links{
    gap: 18px;
  }

  .email-text{
    display: none; /* icon-only on mobile */
  }

  .logo-img{
    max-width: 160px;
  }

  .about-grid,
  .services-grid{
    grid-template-columns: 1fr;
  }

  .policy-grid{
    flex-direction: column;
  }

  .policy-grid img{
    width: 100%;
  }

  .contact{
    flex-direction: column;
  }
}
