/* ============================================================
   HARVIK WINDOWS ENTERPRISES - style.css
   Color Palette: Deep Navy + Warm Gold + Clean White
   Font: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a3557;       /* Deep Navy */
  --primary-light: #1e4a7c;
  --primary-dark: #0f2238;
  --gold: #c8922a;          /* Warm Gold */
  --gold-light: #e0a93a;
  --gold-pale: #fdf3e3;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #eef1f5;
  --mid-gray: #b0bac6;
  --text-dark: #1a2535;
  --text-body: #4a5568;
  --text-muted: #8492a6;
  --border: #dde3ec;
  --shadow-sm: 0 2px 12px rgba(26,53,87,0.07);
  --shadow-md: 0 8px 32px rgba(26,53,87,0.12);
  --shadow-lg: 0 20px 60px rgba(26,53,87,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Section Padding ---- */
.section-pad { padding: 90px 0; }

/* ---- Section Labels & Titles ---- */
.section-label {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border-left: 3px solid var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Primary Button ---- */
.btn-primary-custom {
  background: var(--gold);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--primary-dark);
  color: var(--mid-gray);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-link {
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  font-size: 13px;
}

.topbar-link:hover { color: var(--gold-light); }
.topbar-link i { color: var(--gold); font-size: 13px; }

.topbar-social {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.topbar-social:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1050;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(26,53,87,0.13);
}

.navbar { padding: 14px 0; }

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(26,53,87,0.2);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Toggler */
.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  background: var(--white);
}

.toggler-icon { font-size: 22px; color: var(--primary); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(200,146,42,0.15); }

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

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

/* Hero slide backgrounds - replace these with your actual photos */
.hero-slide-1 { background-image: url('banner1.webp');  }
.hero-slide-2 { background-image: url('banner2.webp');  }
.hero-slide-3 { background-image: url('banner4.webp');  }
.hero-slide-4 { background-image: url('banner5.webp'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,34,56,0.88) 0%, rgba(26,53,87,0.6) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

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

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid var(--gold);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,146,42,0.35);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-ctrl {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}

.carousel-ctrl:hover { background: var(--gold); border-color: var(--gold); }
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev-icon,
.carousel-control-next-icon { display: none; }

.carousel-indicators button {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--gold);
  width: 40px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 2;
}

.about-exp-badge {
  background: var(--gold);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,146,42,0.3);
}

.exp-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.about-img-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--gold-pale);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.about-desc {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.about-feat:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.about-feat i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

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

.service-img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,87,0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-img-overlay { opacity: 1; }

.service-img-overlay i {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.service-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-text {
  color: var(--text-body);
  font-size: 14.5px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  align-self: flex-start;
}

.service-cta-btn:hover {
  background: var(--gold);
  transform: translateX(4px);
}

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

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-item:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateX(6px);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(200,146,42,0.25);
}

.why-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.why-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

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

.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.why-card h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
}

.why-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  transition: var(--transition);
}

.why-card:hover h6 { color: var(--white); }
.why-card:hover p { color: rgba(255,255,255,0.75); }
.why-card:hover i { color: var(--gold-light); }

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 70px 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='%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");
}

.counter-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-plus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--gold-light);
  display: inline;
}

.counter-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.howitworks-section { background: var(--off-white); }

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: -10px;
  transition: var(--transition);
}

.step-card:hover .step-num { color: var(--gold-pale); }

.step-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(26,53,87,0.2);
  transition: var(--transition);
}

.step-card:hover .step-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(200,146,42,0.3);
}

@media (max-width: 991px) { .step-arrow { display: none; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }

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

.gal-btn {
  background: var(--off-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.gal-btn:hover,
.gal-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(200,146,42,0.25);
}

.gallery-item { transition: all 0.4s ease; }
.gallery-item.hidden { display: none; }

.gal-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}

.gal-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,53,87,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.gal-card:hover .gal-overlay { opacity: 1; }

.gal-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section { background: var(--off-white); }

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testi-stars { color: var(--gold); margin-bottom: 14px; font-size: 14px; }
.testi-stars i { margin-right: 2px; }

.testi-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
}

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testi-ctrl {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testi-ctrl:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }

.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold) !important; }

.faq-btn {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 18px 20px !important;
  box-shadow: none !important;
  transition: var(--transition) !important;
}

.faq-btn:not(.collapsed) {
  background: var(--gold-pale) !important;
  color: var(--primary) !important;
}

.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231a3557' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}

.faq-body {
  background: var(--off-white) !important;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.75;
  padding: 18px 20px !important;
}

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

.contact-info-wrap,
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-pale);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 14.5px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a { color: var(--primary); transition: var(--transition); }
.contact-info-item a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

/* Form Controls */
.form-group-custom { display: flex; flex-direction: column; gap: 6px; }

.form-group-custom label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}

.form-control-custom::placeholder { color: var(--text-muted); }

.btn-submit-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.btn-submit-custom:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.3);
}

.form-success {
  text-align: center;
  padding: 40px;
  color: var(--primary);
}

.form-success i { font-size: 48px; color: #22c55e; margin-bottom: 14px; display: block; }
.form-success h5 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark);    overflow-x: hidden; }

.footer-top { padding: 70px 0 40px; }

.footer-brand-icon {
  background: rgba(200,146,42,0.15) !important;
  border: 1px solid rgba(200,146,42,0.3);
}

.footer-about {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'DM Sans', sans-serif;
}

.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-list li i { color: var(--gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-list li a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

.float-btn {
  position: fixed;
  bottom: 80px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  pointer-events: all;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.float-whatsapp {
  left: 20px;
  background: #25d366;
}

.float-call {
  right: 20px;
  background: var(--primary);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-4px);
  color: var(--white);
}

.float-tooltip {
  position: absolute;
  background: var(--text-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.float-whatsapp .float-tooltip { left: 62px; }
.float-call .float-tooltip { right: 62px; }
.float-btn:hover .float-tooltip { opacity: 1; }

/* Pulse animation */
.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: pulse-ring 2s infinite;
  opacity: 0;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 16px rgba(200,146,42,0.35);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-4px); }

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

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

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-main img { height: 360px; }
  .hero-title { font-size: clamp(30px, 5vw, 48px); }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }

  .navbar-nav .nav-link { padding: 10px 12px !important; }
  .nav-cta { display: block; text-align: center; margin-top: 8px; }
}
.cu-lg-wdt{
	width:250px;
}
/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .section-pad { padding: 55px 0; width: 96%;
        margin: 0 auto;}
  .hero-slide { min-height: 100vh; }
  .hero-title { font-size: 30px; }
  .hero-desc { font-size: 14.5px; }
  .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 14px; }
  .about-img-main img { height: 280px; }
  .about-exp-badge { padding: 14px 18px; }
  .exp-num { font-size: 28px; }
  .gal-img { height: 160px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-wrap, .contact-form-wrap { padding: 24px; }
  .counter-section { padding: 50px 0; }
  .brand-name { font-size: 15px; }
/*  .topbar { display: none; }*/
.cu-ds-nn{
	display:none!important
}
}

@media (max-width: 576px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .float-tooltip { display: none; }
  .gal-img { height: 140px; }
  .section-title { font-size: 24px; }
}
@media(max-width:424px)
{
	.cu-em-fnt{
		font-size:10px!important
	}
}
@media(max-width:374px)
{
	.cu-lg-wdt{
		width:220px;
	}
}