:root{
  --g1:#FF0000;
  --g2:#FF0000;
  --g3:#FF0000;

  --text:#1c1417;
  --muted:#6a5c63;
  --border:rgba(0,0,0,.08);

  --grad: linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
}



/* =========================
   GLOBAL
========================= */
body{
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 500px at 50% -10%,
    rgba(244,149,65,.18) 0%,
    rgba(221,93,151,.08) 45%,
    rgba(173,33,103,.06) 75%,
    #fff 100%);
  color: var(--text);
}

/* Smooth overall motion */
*{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

/* 3D background glow */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(244,149,65,.20), transparent 60%),
    radial-gradient(700px 400px at 90% 20%, rgba(221,93,151,.18), transparent 60%),
    radial-gradient(700px 400px at 40% 90%, rgba(173,33,103,.15), transparent 60%);
  filter: blur(10px);
}

/* =========================
   NAVBAR (MORE TRANSPARENT)
========================= */
/* NAVBAR TRANSPARENT RED GLASS */
.custom-navbar{
  background: rgba(255, 0, 0, 0.75) !important; /* transparent red */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}

/* Brand text */
.custom-navbar .brand-name{
  color: #fff !important;
}

/* Nav links */
.custom-navbar .custom-link{
  color: rgba(255,255,255,.88) !important;
}

.custom-navbar .custom-link:hover{
  color: #fff !important;
}

/* Underline on hover */
.custom-navbar .custom-link::after{
  background: #fff !important;
}

/* Toggler */
.custom-navbar .custom-toggler{
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  color: #fff !important;
}


/* =========================
   HERO SLIDER (AS PER YOUR HTML)
   (carousel inside container)
========================= */
.hero-slider-section{
  padding-top: 10px;
}

/* keep your rounded premium look */
.hero-carousel{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  transform: translateZ(0);
  position: relative;
}

/* Hero image height */
.hero-img{
  height: 520px;
  object-fit: cover;
  width: 100%;
  transform: scale(1.04);
  transition: transform 6.5s ease-in-out;
}

/* background photo moves behind caption */
.carousel-item.active .hero-img{
  transform: scale(1.16);
}

/* =========================
   HERO CAPTION (STABLE + TRANSPARENT)
========================= */
.hero-caption{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(860px, 92%);
  text-align: center;
  z-index: 10;

  /* transparent glass */
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
}

.hero-caption .hero-title{
  font-family:"Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 44px);
  margin-bottom: 6px;
  color: #fff !important;
  background: none !important;
}

.hero-caption .hero-sub{
  font-size: 14px;
  color: rgba(255,255,255,.88) !important;
  margin: 0;
}

/* Responsive Hero */
@media (max-width: 768px){
  .hero-img{
    height: 360px;
  }
  .hero-caption{
    bottom: 12px;
    padding: 14px;
    border-radius: 16px;
  }
}

/* =========================
   SCROLL REVEAL EFFECT
========================= */
.reveal{
  opacity: 0;
  transform: translateY(25px);
  transition: all .7s ease;
}

.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   PREMIUM 3D CARDS
========================= */
.community-card,
.service-card,
.story-card,
.hero-card,
.info-box,
.contact-form-card,
.mini-card{
  border-radius: 22px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.60);
  box-shadow: 0 16px 40px rgba(20,10,12,.10);
  transform-style: preserve-3d;
}

/* Lift on hover */
.community-card:hover,
.service-card:hover,
.story-card:hover,
.hero-card:hover,
.info-box:hover,
.contact-form-card:hover,
.mini-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 70px rgba(20,10,12,.18);
}

/* Mobile performance */
@media (max-width: 768px){
  .community-card,
  .service-card,
  .story-card,
  .hero-card,
  .mini-card,
  .info-box,
  .contact-form-card{
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* =========================
   CARDS + SECTIONS
========================= */
.hero-card{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 40px rgba(20, 10, 12, .10);
  padding: 18px;
}

.hero-note{
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(244,149,65,.12);
  border: 1px solid rgba(244,149,65,.18);
}

.mini-card{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  padding: 14px;
  height: 100%;
}

.mini-card h6{
  margin: 0 0 6px;
  font-weight: 800;
}

.mini-card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-soft{
  background: rgba(244,149,65,.06);
}

.section-title{
  font-family:"Playfair Display", serif;
  font-size: clamp(26px, 3vw, 38px);
}

.section-sub{
  color: var(--muted);
  line-height: 1.7;
}

.sub-title{
  font-weight: 800;
}

/* Info Box */
.info-box{
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  padding: 16px;
}

.list-check{
  padding-left: 18px;
  margin: 0;
}

.list-check li{
  margin: 8px 0;
  color: var(--muted);
}

/* Services */
.service-card{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.86);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 10, 12, .08);
}

.service-card h5{
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Community cards */
.community-card{
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.88);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 10, 12, .08);
}

.community-card h5{
  font-weight: 800;
  margin-bottom: 8px;
}

.community-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.card-keywords{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(106, 92, 99, .85);
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.12);
}

/* Stories */
.story-card{
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 10, 12, .08);
}

.story-img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-quote{
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 10px;
}

.story-name{
  font-weight: 800;
}

/* Contact */
.contact-box{
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.82);
  padding: 16px;
}

.contact-form-card{
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.86);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 10, 12, .08);
}

/* Highlight text in headings */
.highlight{
  color: #FF0000;
  font-weight: 800;
}

/* =========================
   FOOTER
========================= */
/* FOOTER RED TRANSPARENT */
.custom-footer{
  background: rgba(255, 0, 0, 0.75) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255,255,255,.92);
  box-shadow: 0 -20px 50px rgba(0,0,0,.18);
}

.footer-badge{
  border: 1px solid rgba(255,255,255,.22);
}

.footer-desc{
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}

.footer-title{
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.footer-link{
  display:block;
  padding: 6px 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  text-decoration:none;
}

.footer-link:hover{
  color:#fff;
}

.footer-bottom{
  font-size: 12px;
  color: rgba(255,255,255,.80);
}

.custom-footer .btn-light{
  border-radius: 14px;
  border: none;
}
.custom-footer .btn-light:hover{
  transform: translateY(-2px);
}
.custom-footer{
  background: rgba(255, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.92);
  box-shadow: 0 -20px 50px rgba(0,0,0,.18);
}


/* =========================
   FLOATING BUTTONS
========================= */
.floating-buttons{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
  z-index: 999;
}

.float-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  color:#fff;
  text-decoration:none;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  font-size: 13px;
}

.float-btn.whatsapp{
  background: #25D366;
}

.float-btn.call{
  background: var(--grad);
}
/* =========================
   FOOTER BUTTON FIX
========================= */
.custom-footer .btn{
  border-radius: 14px;
  font-weight: 800;
  padding: 10px 14px;
}

/* WhatsApp button inside footer */
.custom-footer .btn-gradient{
  background: #ffffff !important;
  color: #ff0000 !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

.custom-footer .btn-gradient:hover{
  opacity: .95;
  transform: translateY(-2px);
}

/* Call button inside footer */
.custom-footer .btn-outline-gradient{
 background: #ffffff !important;
  color: #ff0000 !important;
  border: 1px solid rgba(255,255,255,.65) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

.custom-footer .btn-outline-gradient:hover{
  background: rgba(255,255,255,.18) !important;
  transform: translateY(-2px);
}


/* =========================
   PREMIUM CONTACT FORM UI
========================= */

.contact-form-card{
  position: relative;
  overflow: hidden;
}

/* soft gradient shine effect */
.contact-form-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: var(--grad);
  opacity: .18;
  filter: blur(18px);
  z-index: 0;
}

/* inner layer */
.contact-form-card > *{
  position: relative;
  z-index: 1;
}

/* Form inputs premium */
.contact-form-card .form-control,
.contact-form-card .form-select,
.contact-form-card textarea{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  padding: 12px 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

/* Placeholder style */
.contact-form-card .form-control::placeholder,
.contact-form-card textarea::placeholder{
  color: rgba(28,20,23,.45);
  font-weight: 500;
}

/* Label style */
.contact-form-card .form-label{
  font-weight: 800;
  font-size: 13px;
  color: rgba(28,20,23,.85);
  margin-bottom: 6px;
}

/* Focus glow effect */
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus,
.contact-form-card textarea:focus{
  outline: none;
  border-color: rgba(173,33,103,.45);
  background: rgba(255,255,255,.92);
  box-shadow:
    0 0 0 4px rgba(221,93,151,.18),
    0 18px 40px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

/* Hover subtle lift */
.contact-form-card .form-control:hover,
.contact-form-card .form-select:hover,
.contact-form-card textarea:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0,0,0,.09);
}

/* Submit button animation */
.contact-form-card .btn-gradient{
  border-radius: 18px;
  padding: 13px 16px;
  font-size: 15px;
  letter-spacing: .2px;
}

.contact-form-card .btn-gradient:active{
  transform: translateY(0px) scale(.98);
}

/* Extra spacing for mobile */
@media (max-width: 768px){
  .contact-form-card{
    padding: 16px !important;
  }
  .contact-form-card .form-control,
  .contact-form-card .form-select,
  .contact-form-card textarea{
    border-radius: 14px;
  }
}
.formbtn{
     background: radial-gradient(1000px 500px at 50% -10%,
    rgba(220, 19, 19, 0.18) 0%,
    rgba(216, 5, 5, 0.08) 45%,
    rgba(173,33,103,.06) 75%,
    #fff 100%);
}

.highlight-red{
  color: #ff0000 !important;
  font-weight: 800;
}
