:root {
  --saffron: #e0781f;
  --saffron-dark: #c45f10;
  --maroon: #7a1c1c;
  --gold: #d4a017;
  --cream: #fdf6ec;
  --ink: #2c1810;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3, h4, .brand-name, .footer-brand {
  font-family: 'Playfair Display', serif;
}

/* Header */
.top-strip {
  background: var(--maroon);
  color: #fff;
  font-size: .85rem;
  padding: 6px 0;
}
.top-strip a {
  color: #fff;
  text-decoration: none;
  opacity: .9;
}
.top-strip a:hover { opacity: 1; }

.site-header nav.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  padding: .6rem 0;
  transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled nav.navbar {
  padding: .3rem 0;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.nav-link.active {
  color: var(--saffron-dark) !important;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  font-size: 2rem;
  color: var(--saffron);
}
.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--maroon);
  line-height: 1.1;
}
.brand-tag {
  font-size: .8rem;
  color: var(--saffron-dark);
}
.nav-link {
  font-weight: 500;
  color: var(--ink) !important;
}
.nav-link:hover { color: var(--saffron-dark) !important; }

.btn-saffron {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff !important;
  font-weight: 600;
}
.btn-saffron:hover {
  background: var(--saffron-dark);
  border-color: var(--saffron-dark);
  color: #fff;
}
.btn-outline-saffron {
  border: 2px solid var(--saffron);
  color: var(--saffron-dark);
  font-weight: 600;
}
.btn-outline-saffron:hover {
  background: var(--saffron);
  color: #fff;
}

/* Hero slider */
.hero-slider .carousel-item {
  height: 78vh;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(44,24,16,.35), rgba(44,24,16,.75)), #2c1810;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slider .ratio {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slider iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-caption {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  width: 100%;
}
.hero-caption h1 {
  font-size: 2.6rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-caption p.lead {
  font-size: 1.15rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero-fallback {
  background: linear-gradient(135deg, var(--maroon), var(--saffron-dark));
}
.carousel-control-prev, .carousel-control-next { width: 6%; }

/* Sections */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  margin-bottom: 45px;
}
.section-title .eyebrow {
  color: var(--saffron-dark);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .85rem;
}
.section-title h2 {
  color: var(--maroon);
  font-weight: 700;
}

.bg-cream-alt { background: #fff; }

/* Service cards */
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(122,28,28,.06);
  border-top: 3px solid var(--saffron);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(122,28,28,.14);
}
.service-card i {
  font-size: 2.2rem;
  color: var(--saffron-dark);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 10px;
}
.service-card p {
  flex-grow: 1;
}
.service-card .btn {
  align-self: flex-start;
}

/* Blog */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 20px rgba(122,28,28,.06);
  border-top: 3px solid var(--saffron);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(122,28,28,.14);
}
.blog-card-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-body h3 {
  font-size: 1.15rem;
  color: var(--maroon);
  margin: 8px 0 10px;
}
.blog-card-body p { flex-grow: 1; }
.blog-date {
  font-size: .8rem;
  color: var(--saffron-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink);
}

/* Video / gallery cards */
.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  height: 100%;
}
.video-card .ratio { background: #000; }
.video-card .video-title {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--ink);
}

/* About */
.about-photo-wrap {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  border-radius: 16px;
  padding: 10px;
}
.about-photo-wrap .placeholder-photo {
  background: rgba(255,255,255,.15);
  border: 2px dashed rgba(255,255,255,.6);
  border-radius: 12px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
}

/* Contact */
.contact-info-card {
  background: var(--maroon);
  color: #fff;
  border-radius: 16px;
  padding: 36px;
  height: 100%;
}
.contact-info-card a { color: #fff; }
.contact-info-card ul li { margin-bottom: 14px; }

.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 .2rem rgba(224,120,31,.15);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d8c9be;
  padding-top: 50px;
}
.site-footer h5, .site-footer h6 { color: #fff; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #d8c9be; text-decoration: none; }
.footer-links a:hover { color: var(--saffron); }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 1040;
  animation: pulse-whatsapp 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.05); }
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile sticky call/whatsapp bar */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  box-shadow: 0 -4px 14px rgba(0,0,0,.12);
}
.mobile-cta-bar a {
  text-align: center;
  padding: 14px 0;
  font-weight: 600;
  color: #fff;
  background: var(--maroon);
  text-decoration: none;
}
.mobile-cta-bar a.whatsapp-cta { background: #25d366; }
@media (min-width: 992px) {
  .whatsapp-float { bottom: 22px; }
}
@media (max-width: 991.98px) {
  body { padding-bottom: 54px; }
}

/* Stats counters */
.stats-section {
  background: linear-gradient(135deg, var(--maroon), var(--saffron-dark));
  color: #fff;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  display: inline-block;
}
.stat-label {
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .82rem;
  opacity: .9;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(122,28,28,.06);
  position: relative;
}
.testimonial-card .bi-quote {
  font-size: 1.8rem;
  color: var(--saffron);
  opacity: .5;
}
.testimonial-stars { color: var(--gold); letter-spacing: 2px; }
.testimonial-name {
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0;
}
.testimonial-location {
  font-size: .82rem;
  color: #8a7a70;
}

/* FAQ */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--maroon);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--saffron);
  color: #fff;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }

/* Admin */
.admin-sidebar {
  background: var(--ink);
  min-height: 100vh;
  color: #fff;
}
.admin-sidebar a {
  color: #d8c9be;
  text-decoration: none;
  display: block;
  padding: 10px 18px;
  border-radius: 8px;
}
.admin-sidebar a.active, .admin-sidebar a:hover {
  background: var(--saffron);
  color: #fff;
}
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon), var(--saffron-dark));
}
