:root {
  --primary: #2c0301;
  --primary-light: #4a0602;
  --secondary: #f3e1c7;
  --secondary-dark: #e8cab0;
  --accent: #c9983b;
  --text-dark: #1a0101;
  --text-light: #f3e1c7;
  --white: #ffffff;
}

/* ===== GLOBAL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--accent); }

/* ===== PAGE TRANSITION ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  animation: pageReveal 0.7s cubic-bezier(0.77,0,0.18,1) forwards;
  pointer-events: none;
}

@keyframes pageReveal {
  0%   { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ===== KEYFRAME DEFINITIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes flipInX {
  from { opacity: 0; transform: perspective(400px) rotateX(-20deg); }
  to   { opacity: 1; transform: perspective(400px) rotateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,152,59,0.5); }
  70%  { transform: scale(1.03); box-shadow: 0 0 0 14px rgba(201,152,59,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201,152,59,0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes underlineGrow {
  from { width: 0; }
  to   { width: 60px; }
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

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

/* ===== SCROLL-TRIGGERED ANIMATION BASE ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.from-bottom { transform: translateY(50px); }
.reveal.from-left   { transform: translateX(-50px); }
.reveal.from-right  { transform: translateX(50px); }
.reveal.zoom        { transform: scale(0.85); }
.reveal.flip        { transform: perspective(600px) rotateY(-15deg); opacity: 0; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotateY(0) perspective(600px);
}

/* Stagger delays for child reveal groups */
.stagger-group .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-group .reveal:nth-child(2) { transition-delay: 0.15s; }
.stagger-group .reveal:nth-child(3) { transition-delay: 0.25s; }
.stagger-group .reveal:nth-child(4) { transition-delay: 0.35s; }
.stagger-group .reveal:nth-child(5) { transition-delay: 0.45s; }
.stagger-group .reveal:nth-child(6) { transition-delay: 0.55s; }
.stagger-group .reveal:nth-child(7) { transition-delay: 0.65s; }
.stagger-group .reveal:nth-child(8) { transition-delay: 0.75s; }

/* ===== TOPBAR ===== */
.topbar {
  background-color: var(--primary);
  color: var(--secondary);
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid #4a0602;
  animation: slideDown 0.5s ease 0.3s both;
}

.topbar a { color: var(--secondary); transition: color 0.2s; }
.topbar a:hover { color: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--white) !important;
  box-shadow: 0 2px 12px rgba(44,3,1,0.12);
  padding: 0;
  animation: slideDown 0.6s ease 0.1s both;
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(44,3,1,0.2);
}

.navbar-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.navbar-brand:hover img { transform: scale(1.05); }

.navbar-nav .nav-link {
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 0.85rem !important;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  text-transform: uppercase;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

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

.navbar-nav .dropdown-menu {
  background-color: var(--white);
  border: none;
  border-top: 3px solid var(--accent);
  box-shadow: 0 6px 24px rgba(44,3,1,0.13);
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  animation: fadeInDown 0.25s ease both;
}

.navbar-nav .dropdown-item {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 9px 20px;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.navbar-nav .dropdown-item:hover {
  background-color: var(--secondary);
  color: var(--primary);
  padding-left: 28px;
}

.navbar-toggler {
  border-color: var(--primary);
  transition: transform 0.3s;
}
.navbar-toggler:hover { transform: rotate(90deg); }

.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='%232c0301' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-submenu { position: relative; }
.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -3px;
}
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu { display: block !important; }
}
@media (max-width: 991px) {
  .dropdown-submenu .dropdown-menu {
    position: static;
    left: 0;
    margin-top: 0;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: rgba(44,3,1,0.04);
  }
}

/* ===== HERO BANNER ===== */
.hero-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #5a0804 60%, #8b1a10 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  color: var(--secondary);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated background dots */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="%23f3e1c7" opacity="0.15"/></svg>') repeat;
  animation: float 6s ease-in-out infinite;
}

/* Floating decorative orbs */
.hero-banner::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,152,59,0.12) 0%, transparent 70%);
  right: -80px;
  top: -80px;
  animation: float 7s ease-in-out infinite reverse;
}

.hero-banner .container { position: relative; z-index: 1; }

.hero-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  animation: fadeInLeft 0.9s ease 0.5s both;
}

.hero-banner h1 span {
  color: var(--accent);
  display: inline-block;
  animation: float 4s ease-in-out 1.4s infinite;
}

.hero-banner p {
  font-size: 1.1rem;
  color: var(--secondary);
  opacity: 0.92;
  max-width: 600px;
  animation: fadeInLeft 0.9s ease 0.7s both;
}

.hero-banner .d-flex {
  animation: fadeInUp 0.8s ease 0.9s both;
}

.hero-banner .col-lg-5 > div {
  animation: fadeInRight 0.9s ease 0.6s both;
}

/* ===== HERO SLIDER ===== */
.hero-slider-section { position: relative; }

.hero-slide {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-slide-1 {
  background: url('../images/heroslider/10511.jpg') center center / cover no-repeat;
}
.hero-slide-2 {
  background: url('../images/heroslider/58297.jpg') center center / cover no-repeat;
}
.hero-slide-3 {
  background: url('../images/heroslider/2148085313.jpg') center center / cover no-repeat;
}
.hero-slide-4 {
  background: url('../images/heroslider/2151110995.jpg') center center / cover no-repeat;
}

/* Animated dot pattern overlay on each slide */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="%23f3e1c7" opacity="0.12"/></svg>') repeat;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

/* Gold orb */
.hero-slide::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,152,59,0.14) 0%, transparent 70%);
  right: -100px;
  top: -100px;
  animation: float 7s ease-in-out infinite reverse;
  z-index: 0;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 2, 1, 0.58);
  z-index: 0;
}

.hero-slide .container { position: relative; z-index: 1; }

/* Active slide text animations */
.carousel-item.active .hero-tagline  { animation: fadeInDown 0.7s ease 0.2s both; }
.carousel-item.active .hero-heading  { animation: fadeInLeft 0.8s ease 0.4s both; }
.carousel-item.active .hero-sub      { animation: fadeInLeft 0.8s ease 0.6s both; }
.carousel-item.active .d-flex        { animation: fadeInUp  0.8s ease 0.8s both; }
.carousel-item.active .hero-badges   { animation: fadeInUp  0.8s ease 1s   both; }

.hero-tagline {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 0;
}

.hero-heading span {
  color: var(--accent);
  display: inline-block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--secondary);
  opacity: 0.92;
  max-width: 580px;
  margin-top: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  background: rgba(243,225,199,0.12);
  border: 1px solid rgba(201,152,59,0.35);
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  opacity: 1;
}

.hero-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201,152,59,0.25);
  border: 2px solid rgba(201,152,59,0.5);
  color: var(--secondary);
  font-size: 1.2rem;
  transition: background 0.3s, border-color 0.3s;
}

.hero-ctrl:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* Indicators */
#heroSlider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(243,225,199,0.45);
  border: none;
  margin: 0 5px;
  transition: background 0.3s, transform 0.3s;
}

#heroSlider .carousel-indicators .active {
  background: var(--accent);
  transform: scale(1.35);
}

@media (max-width: 767px) {
  .hero-slide { min-height: 88vh; padding-top: 100px; padding-bottom: 60px; }
  .hero-heading { font-size: 1.9rem; }
  .hero-ctrl { width: 36px; height: 36px; font-size: 1rem; }
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #e8c37a, var(--accent));
  background-size: 200% auto;
  border-radius: 2px;
  margin-top: 8px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: shimmer 2s linear infinite;
}

.section-title.visible::after,
.reveal.visible .section-title::after,
.section-title-wrap.visible .section-title::after {
  width: 60px;
}

.section-subtitle {
  color: #777;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44,3,1,0.09);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(44,3,1,0.06);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 16px 40px rgba(44,3,1,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 1.5s linear infinite;
}

.service-card-img {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-icon {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(44,3,1,0.15);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-card-icon {
  transform: translateX(-50%) scale(1.15) rotate(8deg);
  box-shadow: 0 8px 24px rgba(201,152,59,0.35);
}

.service-card .card-body { text-align: center; padding: 36px 20px 24px; }

.service-card h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(120deg, var(--primary) 0%, #5a0804 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: var(--white);
  padding: 60px 0 50px;
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><circle cx="40" cy="40" r="1" fill="%23f3e1c7" opacity="0.1"/></svg>') repeat;
  animation: float 8s ease-in-out infinite;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.page-hero p {
  color: var(--secondary);
  opacity: 0.9;
  animation: fadeInLeft 0.8s ease 0.4s both;
}

.page-hero nav {
  animation: fadeInDown 0.6s ease 0.1s both;
}

.breadcrumb-item a { color: var(--secondary); opacity: 0.75; }
.breadcrumb-item.active { color: var(--accent); }

/* ===== FEATURE SECTION ===== */
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.feature-item:hover { transform: translateX(6px); }

.feature-item .icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.feature-item:hover .icon-box {
  transform: scale(1.15) rotate(-5deg);
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px rgba(44,3,1,0.25);
}

.feature-item h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.feature-item p { font-size: 0.88rem; color: #666; margin: 0; }

/* ===== GALLERY GRID ===== */
.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(44,3,1,0.1);
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.gallery-card:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 12px 32px rgba(44,3,1,0.2);
}

.gallery-card .gallery-label {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.gallery-card .gallery-label span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 8px;
  animation: float 3s ease-in-out infinite;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
  background: var(--secondary);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--secondary-dark);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              box-shadow 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(44,3,1,0.05), transparent);
  transition: height 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44,3,1,0.16);
}

.why-card:hover::before { height: 100%; }

.why-card .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.why-card h5 { font-weight: 700; color: var(--primary); font-size: 1rem; }
.why-card p { font-size: 0.85rem; color: #666; margin: 0; }

/* ===== STATS COUNTER ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #5a0804 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1.5" fill="%23f3e1c7" opacity="0.08"/></svg>') repeat;
  animation: float 10s ease-in-out infinite;
}

.stat-item { text-align: center; position: relative; z-index: 1; }

.stat-item .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: inline-block;
}

.stat-item.counted .number {
  animation: countUp 0.5s ease both;
}

.stat-item .label {
  color: var(--secondary);
  font-size: 0.92rem;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.9;
}

/* Sparkle effect on stat numbers */
.stat-item .number::after {
  content: '✦';
  position: absolute;
  top: -8px;
  right: -14px;
  font-size: 0.7rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-item.counted .number::after {
  opacity: 1;
  animation: sparkle 1.5s ease 0.5s both;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(44,3,1,0.08);
  border-left: 4px solid var(--accent);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201,152,59,0.08) 0%, transparent 60%);
  transition: transform 0.5s ease;
  transform: scale(0);
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(44,3,1,0.15); }
.testimonial-card:hover::before { transform: scale(2); }

.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  animation: float 4s ease-in-out infinite;
  display: inline-block;
}

.testimonial-card p { font-size: 0.9rem; color: #555; font-style: italic; margin: 10px 0; }
.testimonial-card .author { font-weight: 700; color: var(--primary); font-size: 0.88rem; }
.testimonial-card .stars { color: var(--accent); font-size: 0.9rem; }

/* ===== CTA BAND ===== */
.cta-section {
  background: var(--secondary);
  border-top: 4px solid var(--accent);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(44,3,1,0.04);
  left: -100px; top: -100px;
  animation: float 8s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,152,59,0.08);
  right: -60px; bottom: -60px;
  animation: float 6s ease-in-out infinite reverse;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
}

.cta-section p { color: #666; font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background-color: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(243,225,199,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary-custom:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,3,1,0.3);
}

.btn-primary-custom:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary-custom:active { transform: translateY(-1px); }

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-outline-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,3,1,0.2);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  animation: pulse-ring 2s ease infinite;
}

.btn-accent:hover {
  background-color: #b0832a;
  border-color: #b0832a;
  color: var(--white);
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 8px 24px rgba(201,152,59,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #e8c37a, var(--accent), var(--primary));
  background-size: 300% auto;
  animation: shimmer 3s linear infinite;
}

.footer h5 {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
}

.footer p, .footer li {
  font-size: 0.88rem;
  color: rgba(243,225,199,0.82);
  line-height: 1.8;
}

.footer ul { list-style: none; padding: 0; }

.footer ul li a {
  color: rgba(243,225,199,0.82);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  font-size: 0.88rem;
  display: inline-block;
}

.footer ul li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-bottom {
  background-color: #1a0101;
  padding: 16px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(243,225,199,0.6);
  position: relative;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(243,225,199,0.12);
  color: var(--secondary);
  margin-right: 8px;
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
}

.footer .social-icons a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
}

/* ===== ABOUT PAGE ===== */
.owner-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(44,3,1,0.12);
  border-left: 6px solid var(--accent);
  transition: transform 0.3s, box-shadow 0.3s;
}

.owner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,3,1,0.2);
}

.owner-card .name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.owner-card .title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== CONTACT PAGE ===== */
.contact-card {
  background: var(--secondary);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  border: 1px solid var(--secondary-dark);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44,3,1,0.15);
}

.contact-card .icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .icon { transform: scale(1.2) rotate(-10deg); }

.contact-card h5 {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-card p, .contact-card a { font-size: 0.88rem; color: #666; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44,3,1,0.1);
  padding: 40px 36px;
}

.contact-form-wrap .form-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.88rem;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid var(--secondary-dark);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,152,59,0.15);
  transform: translateY(-1px);
}

/* ===== PACKAGE CARDS ===== */
.package-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,3,1,0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  border: 1px solid rgba(44,3,1,0.06);
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(44,3,1,0.22);
}

.package-card .pkg-header {
  background: linear-gradient(135deg, var(--primary) 0%, #5a0804 100%);
  color: var(--secondary);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package-card .pkg-header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.package-card .pkg-header::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.package-card .pkg-header h5 {
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
  position: relative; z-index: 1;
}

.package-card .pkg-header .price {
  display: none;
}

.package-card .pkg-header .price sup { display: none; }

.package-card .pkg-body {
  background: var(--white);
  padding: 24px 22px;
}

.package-card .pkg-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-card .pkg-body ul li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: #555;
  border-bottom: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}

.package-card:hover .pkg-body ul li { padding-left: 4px; }

.package-card .pkg-body ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== SERVICE DETAIL ===== */
.detail-section { padding: 70px 0; }

.detail-section.bg-light-custom { background-color: #fdf8f3; }

.detail-img-placeholder {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 16px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 5rem;
  box-shadow: 0 8px 24px rgba(44,3,1,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.detail-img-placeholder::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(44,3,1,0.12);
  animation: rotateSlow 12s linear infinite;
}

.detail-img-placeholder::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px dashed rgba(201,152,59,0.3);
  animation: rotateSlow 8s linear infinite reverse;
}

.detail-img-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(44,3,1,0.2);
}

.detail-img-placeholder > span {
  font-size: 5rem;
  position: relative; z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.detail-img-placeholder p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
  position: relative; z-index: 1;
}

.detail-img {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 8px 28px rgba(44,3,1,0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(44,3,1,0.22);
}

.detail-img:hover img {
  transform: scale(1.06);
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.float-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.float-phone,
.float-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 14px;
  border-radius: 30px 0 0 30px;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transform: translateX(calc(100% - 50px));
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}

.float-phone:hover,
.float-whatsapp:hover {
  transform: translateX(0);
  color: #fff;
}

.float-phone {
  background: var(--primary);
  box-shadow: -3px 3px 16px rgba(44,3,1,0.35);
}

.float-phone:hover {
  box-shadow: -5px 5px 22px rgba(44,3,1,0.5);
}

.float-whatsapp {
  background: #25D366;
  box-shadow: -3px 3px 16px rgba(37,211,102,0.4);
}

.float-whatsapp:hover {
  box-shadow: -5px 5px 22px rgba(37,211,102,0.55);
}

.float-phone i,
.float-whatsapp i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .float-phone,
  .float-whatsapp {
    font-size: 0.75rem;
    padding: 9px 14px 9px 11px;
    transform: translateX(calc(100% - 44px));
  }
  .float-phone i,
  .float-whatsapp i {
    font-size: 1.1rem;
  }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 1000;
  background: var(--primary);
  color: var(--secondary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(44,3,1,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ===== LOADING SPINNER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(243,225,199,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: rotateSlow 0.8s linear infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 12px 0;
    border-top: 1px solid var(--secondary);
    margin-top: 4px;
    animation: fadeInDown 0.3s ease both;
  }

  .dropdown-submenu .dropdown-menu {
    left: 0;
    top: 100%;
  }

  .hero-banner { padding: 70px 0 55px; }
}

@media (max-width: 767px) {
  .hero-banner h1 { font-size: 1.9rem; }
  .page-hero h1 { font-size: 1.7rem; }
  .stat-item .number { font-size: 2rem; }
  .scroll-top { bottom: 20px; right: 20px; }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
