/* ============================================================
   ZURII KITCHEN AND BAR — style.css
   Colour Theme:
     Gold:   #C9A84C
     Dark:   #1A1208
     Deep:   #2C1A00
     Cream:  #FAF5EC
     Light:  #F5EDD8
     Text:   #3D2800
============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E4C97E;
  --gold-dark: #A0812C;
  --dark: #1A1208;
  --deep: #2C1A00;
  --cream: #FAF5EC;
  --light: #F5EDD8;
  --text: #3D2800;
  --text-muted: #7A6040;
  --white: #FFFFFF;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 8px 40px rgba(26,18,8,0.12);
  --shadow-hover: 0 16px 60px rgba(26,18,8,0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== SECTION UTILITIES ===== */
.section-pad { padding: 90px 0; }
.bg-light-custom { background: var(--light); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.85;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

/* ===== TOP BAR ===== */
.topbar {
  background: #cba320;
  padding: 9px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  z-index: 1000;
  position: relative;
}
.topbar-info a,
.topbar-info span {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  margin-right: 4px;
  transition: var(--transition);
}
.topbar-info i { color:#fff9f9d4; margin-right: 5px; }
.topbar-info a:hover { color: var(--gold); }

.topbar-social a {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--gold); transform: translateY(-2px); }

/* ===== HEADER / NAVBAR ===== */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 999;
}

#mainNav {
  background: rgba(26,18,8,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 14px 0;
  transition: var(--transition);
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}
.brand-z {
  color: var(--gold);
  font-size: 1.8rem;
}
.brand-divider {
  color: var(--gold);
  margin: 0 6px;
  opacity: 0.6;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 24px); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }

.btn-nav-contact {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 3px 15px rgba(201,168,76,0.35);
}
.btn-nav-contact::after { display: none !important; }
.btn-nav-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,168,76,0.5) !important;
}

.toggler-icon { font-size: 1.6rem; color: var(--gold); }
.navbar-toggler { border: none; box-shadow: none !important; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

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

.hero-img {
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,18,8,0.85) 0%,
    rgba(26,18,8,0.55) 50%,
    rgba(26,18,8,0.3) 100%
  );
}

.hero-caption {
  position: absolute;
  top: 50%;
  /* left: 6%; */
  transform: translateY(-50%);
  text-align: left;
  max-width: 100%;
  padding: 0;
  text-align:center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  /* max-width: 500px; */
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-btns { animation: fadeInUp 0.9s ease 0.6s both; }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
  transition: var(--transition);
  margin-right: 12px;
  margin-bottom: 10px;
  display: inline-block;
}
.btn-hero-primary:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201,168,76,0.6);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  margin-bottom: 10px;
  display: inline-block;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--gold); }

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
  margin: 0 4px;
}
.carousel-indicators .active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* ===== ABOUT SECTION ===== */
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-main-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.about-feature:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  transform: translateY(-2px);
}
.about-feature i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-img { transform: scale(1.08); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align:center;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.btn-service-call {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 22px;
  /* align-self: flex-start; */
  transition: var(--transition);
}
.btn-service-call:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.btn-service-call i { margin-right: 5px; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--cream); }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.why-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::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='%23C9A84C' fill-opacity='0.04'%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");
  opacity: 0.4;
}

.counter-box { position: relative; z-index: 1; }

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--cream); }

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 36px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.how-step {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.1);
  line-height: 1;
}

.how-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.how-card h5 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.how-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ===== GALLERY ===== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.gallery-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-btn:hover,
.gallery-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.gallery-card:hover .gallery-img { transform: scale(1.1); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.8rem;
  color: var(--gold);
}
.gallery-card:hover .gallery-hover { opacity: 1; }

.gallery-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.gallery-item.hide { opacity: 0; pointer-events: none; transform: scale(0.95); }

/* ===== TESTIMONIALS ===== */
.testimonial-section { background: var(--dark); }
.testimonial-section .section-label { background: rgba(201,168,76,0.15); }
.testimonial-section .section-title { color: var(--white); }
.testimonial-section .section-sub { color: rgba(255,255,255,0.6); }

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 50px 50px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.testi-quote {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 10px;
}
.testi-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testi-stars {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
}
.testi-author span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
}

.testi-indicators {
  position: static;
  margin-top: 28px;
}
.testi-indicators [data-bs-target] {
  background: rgba(255,255,255,0.3) !important;
  border: none !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.testi-indicators .active {
  background: var(--gold) !important;
  width: 28px;
  border-radius: 5px;
}

/* ===== FAQs ===== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.faq-item:hover { box-shadow: 0 6px 25px rgba(201,168,76,0.15); border-color: var(--gold) !important; }

.faq-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}
.faq-btn:not(.collapsed) {
  color: var(--gold-dark);
  background: rgba(201,168,76,0.06);
  box-shadow: none;
}
.faq-btn:focus { box-shadow: none; }
.faq-btn::after {
  filter: invert(60%) sepia(80%) saturate(400%) hue-rotate(0deg);
}

.faq-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 8px 24px 24px;
  background: rgba(201,168,76,0.03);
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); }

.contact-info { padding-right: 20px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.contact-info-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}
.contact-info-item h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.contact-info-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.contact-info-item a {
  color: var(--text-muted);
  transition: var(--transition);
}
.contact-info-item a:hover { color: var(--gold-dark); }

.map-embed iframe { transition: var(--transition); }
.map-embed iframe:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 28px;
}

.custom-input {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: var(--transition);
  box-shadow: none;
}
.custom-input:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  color: var(--dark);
}
.custom-input::placeholder { color: #b0956a; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-message {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.form-message.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  padding-top: 80px;
  padding-bottom: 0;
  overflow-x: hidden;
}
.footer-top { padding-bottom: 60px; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
}
.footer-about {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer-contact-list i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-divider {
  border-color: rgba(201,168,76,0.15);
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
}

/* ===== FLOATING ICONS ===== */
.float-whatsapp,
.float-call {
  position: fixed;
  bottom: 128px;
  z-index: 1000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.float-whatsapp {
  left: 22px;
  background: #25D366;
  color: #fff;
}
.float-call {
  right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.float-whatsapp:hover,
.float-call:hover { transform: scale(1.12) translateY(-3px); color: inherit; }

.float-tooltip {
  position: absolute;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
.float-whatsapp:hover .float-tooltip,
.float-call:hover .float-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 10px;
  right: 22px;
  z-index: 999;
  width: 42px;
  height: 42px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; display: inline-block; }

/* Pulse on floating icons */
.float-whatsapp::after,
.float-call::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: pulse-ring 2.2s ease-out infinite;
}
.float-whatsapp::after { background: #25D366; }
.float-call::after { background: var(--gold); }
.cu-lg-wdth{
	width:240px;
}
/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }
  .hero-img { height: 80vh; }
  .about-badge { right: -10px; }
  .contact-info { padding-right: 0; }
  .contact-form-wrap { padding: 30px; }
  .testimonial-card { padding: 36px 28px 30px; }
}
@media(max-width:768px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
	
}
/* Mobile */
@media (max-width: 767.98px) {
  .section-pad { padding: 55px 0;overflow-x: hidden; }

  .topbar { font-size: 0.75rem; padding: 7px 0; }
  .topbar-info span { display: none; }

  .hero-img { height: 90vh; min-height: 500px; }
  .hero-caption {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 92%;
    max-width: none;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .about-main-img { height: 320px; }
  .about-badge { right: 10px; padding: 14px 18px; }
  .badge-num { font-size: 2rem; }

  .gallery-img { height: 180px; }

  .testimonial-card { padding: 30px 20px; }

  .contact-form-wrap { padding: 24px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .service-img { height: 190px; }

  .carousel-control-prev,
  .carousel-control-next { width: 40px; height: 40px; font-size: 0.8rem; }

  .hero-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; max-width: 280px; text-align: center; margin: 0; }
}

/* Very small screens */
@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .counter-num { font-size: 2.4rem; }
}
@media(max-width:374px)
{
	.cu-lg-wdth {
    width: 220px;
}
}