/* ============================================================
   SACHI CATERS (PURE VEG) - Custom Stylesheet
   Color Palette:
   - Primary  : #e8722a  (Warm Orange)
   - Secondary: #7d1616  (Deep Maroon)
   - Accent   : #f4c430  (Saffron Gold)
   - Dark     : #1c0d00
   - Light BG : #fff9f0
============================================================ */

/* ── Google Font (local system fallback) ─────────────── */
:root {
  --primary   : #e8722a;
  --primary-d : #c9601e;
  --secondary : #7d1616;
  --secondary-d: #5a0e0e;
  --accent    : #f4c430;
  --dark      : #1c0d00;
  --text      : #2c1810;
  --light-bg  : #fff9f0;
  --white     : #ffffff;
  --card-shadow: 0 6px 30px rgba(232,114,42,.18);
  --transition : all .35s ease;
}

/* ── Reset / Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; }

/* ── Section Titles ───────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 30px;
  margin-bottom: .75rem;
  /* Ensure badge is always on its own line */
  clear: both;
}

.section-title {
  display: block;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: .5rem;
  line-height: 1.25;
}

.section-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: .5rem 0 0;              /* left-aligned by default */
}

/* Centre the underline when inside a .text-center wrapper */
.text-center .section-title::after {
  margin: .5rem auto 0;
}

.section-subtitle {
  color: #7a5c4a;
  font-size: 1rem;
  max-width: 600px;
  margin: .75rem auto 2.5rem;    /* auto centres for .text-center parents */
}

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  color: var(--white);
  border: none;
  padding: .65rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(232,114,42,.4);
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-d), var(--secondary));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,114,42,.5);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: .6rem 1.7rem;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-secondary-custom:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: .5rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── NAVBAR ───────────────────────────────────────────── */
#mainNav {
  background: linear-gradient(135deg, var(--secondary-d), var(--secondary));
  padding: .85rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

#mainNav.scrolled {
  padding: .5rem 0;
  background: linear-gradient(135deg, rgba(90,14,14,.97), rgba(125,22,22,.97));
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 25px rgba(0,0,0,.35);
}

.navbar-brand {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: .5px;
}

.navbar-brand .brand-leaf {
  color: var(--accent);
  font-size: 1.4rem;
}

.navbar-brand small {
  font-size: .7rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 400;
  display: block;
  color: rgba(255,255,255,.75);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .9rem !important;
  border-radius: 5px;
  transition: var(--transition);
  letter-spacing: .3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(255,255,255,.08);
}

.btn-call-nav {
  background: linear-gradient(135deg, var(--primary), #d4611d);
  color: var(--white) !important;
  padding: .4rem 1.2rem !important;
  border-radius: 25px;
  font-weight: 600 !important;
  font-size: .88rem !important;
  box-shadow: 0 3px 12px rgba(232,114,42,.5);
}
.btn-call-nav:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary)) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(232,114,42,.6);
}

.navbar-toggler {
  border-color: rgba(255,255,255,.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO SLIDER ──────────────────────────────────────── */
#heroSlider {
  margin-top: 0;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,13,0,.78) 0%,
    rgba(125,22,22,.62) 50%,
    rgba(28,13,0,.50) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn .8s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.hero-title span { color: var(--accent); }

.hero-desc {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  margin: 0 5px;
}
.carousel-indicators button.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  opacity: .8;
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(5px);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(232,114,42,.6);
  opacity: 1;
}

/* ── SLIDE BACKGROUNDS ────────────────────────────────── */
/* Gradient fallbacks + background images (replace .jpg with real food photos) */
/* ── SLIDE BACKGROUNDS (real food photos) ─────────────── */
.slide-1 {
  background-color: #3d1a06;
  background-image: url('../images/slide1.jpg');
}
.slide-2 {
  background-color: #4a0808;
  background-image: url('../images/slide2.jpg');
}
.slide-3 {
  background-color: #4a3000;
  background-image: url('../images/slide3.jpg');
}

/* ── ABOUT SECTION ────────────────────────────────────── */
#about {
  padding: 90px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '॥';
  position: absolute;
  font-size: 300px;
  color: rgba(232,114,42,.04);
  top: -50px;
  right: -30px;
  font-family: serif;
  pointer-events: none;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-img-wrap img {
  border-radius: 18px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 15px 50px rgba(125,22,22,.25);
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: .75rem;
  line-height: 1.3;
  box-shadow: 0 8px 25px rgba(232,114,42,.45);
  border: 4px solid var(--white);
}

.about-img-badge .num {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}

.about-content .lead {
  font-size: 1.05rem;
  color: #6b4332;
  line-height: 1.8;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-weight: 500;
  color: var(--text);
}
.about-feature .bi {
  font-size: 1.2rem;
  color: var(--primary);
}

/* ── SERVICES SECTION ─────────────────────────────────── */
#services {
  padding: 90px 0;
  background: var(--white);
}

.service-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(232,114,42,.28);
}

.service-card .card-img-top {
  height: 210px;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .card-img-top {
  transform: scale(1.06);
}

.service-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(28,13,0,.35));
}

.service-card .card-body {
  padding: 1.4rem 1.5rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: .8rem;
  box-shadow: 0 4px 12px rgba(232,114,42,.35);
}

.service-card .card-title {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: .4rem;
}

.service-card .card-text {
  font-size: .88rem;
  color: #7a5c4a;
  margin-bottom: 1rem;
}

/* ── WHY CHOOSE US ────────────────────────────────────── */
#why-us {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--secondary-d) 0%, var(--secondary) 50%, #9b2020 100%);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  height: 100%;
}

.why-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-8px);
  border-color: rgba(244,196,48,.4);
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(244,196,48,.35);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h5 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.why-card p {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  margin: 0;
  line-height: 1.6;
}

/* ── STATS STRIP ──────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-d));
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Georgia, serif;
  display: block;
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  font-size: .85rem;
  opacity: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── GALLERY ──────────────────────────────────────────── */
#gallery {
  padding: 90px 0;
  background: #0d0604;
}

#gallery .section-title { color: var(--accent); }
#gallery .section-subtitle { color: rgba(255,255,255,.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232,114,42,.0) 0%,
    rgba(232,114,42,.75) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay .bi {
  font-size: 2.5rem;
  color: var(--white);
  transform: scale(.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay .bi { transform: scale(1); }

/* ── LIGHTBOX ─────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backdrop-filter: blur(6px);
}
#lightbox.active { display: flex; }

#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  animation: lbFade .3s ease;
}
@keyframes lbFade {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: .8;
  transition: var(--transition);
  background: none;
  border: none;
}
#lightbox-close:hover { opacity: 1; color: var(--accent); transform: rotate(90deg); }

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover, #lightbox-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ── CONTACT SECTION ──────────────────────────────────── */
#contact {
  padding: 90px 0;
  background: var(--light-bg);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-d));
  border-radius: 18px;
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}

.contact-info-card h4 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item .icon-box {
  width: 45px;
  height: 45px;
  background: rgba(244,196,48,.15);
  border: 1px solid rgba(244,196,48,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item .info p {
  margin: 0;
  font-size: .88rem;
  opacity: .7;
}
.contact-item .info a {
  color: var(--white);
  font-weight: 600;
}
.contact-item .info a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(125,22,22,.12);
  height: 100%;
}

.contact-form-card h4 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.form-control, .form-select {
  border: 1.5px solid #e8d5c9;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: var(--transition);
  background: #fffaf7;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(232,114,42,.15);
  background: var(--white);
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  margin-top: 2.5rem;
}

.map-wrap iframe {
  display: block;
  border: none;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: linear-gradient(135deg, #150700, var(--secondary-d));
  color: rgba(255,255,255,.75);
  /* padding: 65px 0 0; */
}

footer h5 {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .5rem;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

footer a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
  display: block;
  margin-bottom: .4rem;
}
footer a:hover { color: var(--accent); padding-left: 5px; }

footer p { font-size: .9rem; line-height: 1.8; }

.social-icons { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white) !important;
  transition: var(--transition);
  border: none;
}
.social-icon.fb  { background: #1877f2; }
.social-icon.wa  { background: #25d366; }
.social-icon.ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon.yt  { background: #ff0000; }
.social-icon:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,.3); }

.footer-divider {
  border-color: rgba(255,255,255,.08);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 1.2rem 0;
}

.footer-bottom p {
  margin: 0;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom span { color: var(--primary); }

/* ── FLOATING CALL BUTTON ─────────────────────────────── */
.float-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.float-call-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: floatPulse 2s infinite;
  text-decoration: none;
}

.float-call-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,.65);
  color: var(--white);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 35px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.15); }
}

.float-call-phone {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #d4611d);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 25px rgba(232,114,42,.5);
  transition: var(--transition);
  text-decoration: none;
}

.float-call-phone:hover {
  transform: scale(1.12);
  color: var(--white);
  box-shadow: 0 10px 35px rgba(232,114,42,.65);
}

.float-label {
  background: var(--dark);
  color: var(--white);
  font-size: .7rem;
  padding: .2rem .6rem;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  white-space: nowrap;
  pointer-events: none;
}

.float-call:hover .float-label { opacity: 1; transform: translateX(0); }

/* ── BACK TO TOP ──────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 33px;
  z-index: 8999;
  width: 42px;
  height: 42px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: 2px solid rgba(244,196,48,.3);
  text-decoration: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover   { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── FORM ALERT ───────────────────────────────────────── */
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: .9rem;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-slide { height: 90vh; }
  #mainNav .navbar-collapse { background: rgba(90,14,14,.97); border-radius: 10px; padding: 1rem; margin-top: .5rem; }
  .about-img-badge { width: 90px; height: 90px; font-size: .68rem; right: -10px; bottom: -10px; }
  .about-img-badge .num { font-size: 1.3rem; }
}

@media (max-width: 767.98px) {
  .hero-slide { height: 85vh; min-height: 520px; }
  .hero-title { font-size: 1.65rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.6rem; }
  .about-img-wrap img { height: 280px; }
  .contact-info-card, .contact-form-card { padding: 1.8rem; }
  .float-call { bottom: 20px; right: 18px; }
  #backToTop { right: 23px; }
  .stats-strip .stat-num { font-size: 2rem; }
}

@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-control-prev, .carousel-control-next { display: none; }
}
