/* ==============================
   Components CSS
   - WhatsApp floating button
   - Pulse animation
   - Swiper slider styling
   ============================== */


/* ================= WHATSAPP FLOAT ================= */

.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;

  width: 56px;
  height: 56px;

  border-radius: 16px;
  display: grid;
  place-items: center;

  z-index: 99999;

  background: rgba(231,198,162,0.35);
  border: 1px solid rgba(123,21,18,0.35);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 40px rgba(0,0,0,.18);

  transition: transform .18s ease,
              box-shadow .18s ease;
}

.wa-float:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 48px rgba(0,0,0,.25);
}

/* Pulse ring */
.wa-float::after{
  content:"";
  position:absolute;
  inset:-6px;

  border-radius: 20px;

  border: 1px solid rgba(123,21,18,0.25);

  box-shadow: 0 0 0 0 rgba(123,21,18,0.22);

  animation: waPulse 1.8s ease-out infinite;

  pointer-events:none;
}

@keyframes waPulse{
  0%{
    transform: scale(0.96);
    opacity: .6;
    box-shadow: 0 0 0 0 rgba(123,21,18,0.20);
  }
  70%{
    transform: scale(1.10);
    opacity: .12;
    box-shadow: 0 0 0 16px rgba(123,21,18,0);
  }
  100%{
    transform: scale(1.10);
    opacity: 0;
  }
}


/* ================= SWIPER BASE ================= */

.swiper{
  width: 100%;
  height: min(72vh, 560px);
}

@media (max-width: 720px){
  .swiper{
    height: 75vh;
  }
}

.swiper-slide{
  position: relative;

  display:flex;
  align-items:flex-end;

  padding: 28px;

  background-size: cover;
  background-position: center;
}

/* ==============================
   Swiper Theme Override (Brand)
   ============================== */

:root{
  /* Swiper default theme variables override */
  --swiper-theme-color: var(--maroon);
}

/* Dots */
.swiper-pagination-bullet{
  background: rgba(123,21,18,.28) !important; /* maroon tint */
  opacity: 1 !important;
  width: 7px;
  height: 7px;
}

.swiper-pagination-bullet-active{
  background: var(--maroon-2) !important; /* brand red */
  width: 18px;
  border-radius: 999px;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next{
  color: var(--maroon-2) !important;
  background: rgba(250,247,244,.45) !important;   /* glass */
  border: 1px solid rgba(123,21,18,.22) !important;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0,0,0,.22);
}

/* Arrow icon thickness */
.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 15px !important;
  font-weight: 900 !important;
}

/* Dark + warm overlay on slides */
.swiper-slide::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(900px 500px at 20% 20%, rgba(231,198,162,.40), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
}

/* Text glass box */
.slide-content{
  position: relative;

  width: min(620px, 100%);

  border-radius: 22px;
  padding: 18px;

  background: rgba(250,247,244,.55);

  border: 1px solid rgba(123,21,18,.16);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.slide-title{
  margin: 10px 0 6px;

  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.1;

  letter-spacing:-0.02em;
}

.slide-text{
  margin: 0 0 10px;
  color: #3a2520;
}


/* ================= PAGINATION ================= */

.swiper-pagination-bullet{
  background: #fff;
  opacity: .35;
}

.swiper-pagination-bullet-active{
  opacity: 1;
}


/* ================= NAV ARROWS ================= */

.swiper-button-prev,
.swiper-button-next{
  color:#fff;
  background: rgba(0,0,0,.25);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  width: 42px;
  height: 42px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.18);
}

.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 16px;
  font-weight: 900;
}


/* ================= GALLERY HOVER ================= */

.grid-3 img{
  transition: transform .35s ease,
              box-shadow .35s ease;
}

.grid-3 img:hover{
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}


/* ================= CTA STRIP MOBILE ================= */

@media (max-width: 720px){
  .cta-strip{
    flex-direction: column;
    text-align: center;
  }
}

/* ==============================
   Contact Form - Glass Inputs
   ============================== */

.contact-form{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-form .grid-2{
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;

  border: 1px solid rgba(123,21,18,.18);
  background: rgba(250,247,244,.55);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  outline: none;
  font-size: 15px;
  color: var(--text);

  box-shadow: 0 12px 28px rgba(0,0,0,.08);

  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-form textarea{
  resize: vertical;
  min-height: 140
}



/* ==============================
   About - Founder Photo Block
   ============================== */
.founder-wrap{
  margin: 14px 0 16px;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(250,247,244,.55);
  border: 1px solid rgba(123,21,18,.14);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

.founder-img{
  width: 100%;
  height: 360px;            /* full दिसायला थोडी जास्त height */
  object-fit: contain;      /* IMPORTANT: crop नको */
  background: rgba(250,247,244,.55); /* रिकामा space smooth दिसेल */
  display: block;
  padding: 10px;            /* image ला breathing space */
}


.founder-cap{
  padding: 12px 14px;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.founder-name{
  font-weight: 900;
  color: var(--maroon);
}

@media (max-width: 720px){
  .founder-img{ height: 300px; }
}

