﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Anmol Facilities â€“ Main Stylesheet
   Palette: Teal #0D7377 | Teal Dark #0a5a5e | Gold accent #14A085
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  /* â”€â”€ Teal Palette â”€â”€ */
  --navy:       #0a3d40;
  --navy-light: #0d5257;
  --navy-mid:   #0D7377;
  --gold:       #14BDAC;
  --gold-light: #5ee8d6;
  --gold-dark:  #0a8a7e;

  /* Teal Gradient stops */
  --teal-1:     #0a3d40;
  --teal-2:     #0D7377;
  --teal-3:     #14BDAC;
  --teal-4:     #5ee8d6;

  --white:      #FFFFFF;
  --off-white:  #F4FAFB;
  --gray-light: #EBF5F5;
  --gray:       #5f7c7e;
  --shadow-sm:  0 4px 15px rgba(13,115,119,0.10);
  --shadow-md:  0 8px 30px rgba(13,115,119,0.18);
  --shadow-lg:  0 20px 60px rgba(13,115,119,0.22);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #2d3748;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }

a { text-decoration: none; transition: var(--transition); }

/* â”€â”€ Utility â”€â”€ */
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }
.bg-navy     { background: var(--navy) !important; }
.bg-light-gray { background: var(--gray-light) !important; }
.section-pad { padding: 90px 0; }

/* â”€â”€ Section Header â”€â”€ */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
}
.section-tag-light {
  display: inline-block;
  background: rgba(20,189,172,0.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.2;
}
.section-sub { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* â”€â”€ Buttons â”€â”€ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(20,189,172,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20,189,172,0.5);
}
.btn-outline-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 28px;
  transition: var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-header-admin {
  background: rgba(20,189,172,0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-header-admin:hover { background: var(--gold); color: var(--navy); }

/* â”€â”€ HEADER â”€â”€ */
.header-top {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
}
.header-top span { color: rgba(255,255,255,0.75); }
.header-top i { color: var(--gold); margin-right: 5px; }

#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}
.brand-gold  { color: var(--gold); font-weight: 800; }
.brand-blue  { color: var(--navy); font-weight: 800; }
.brand-dot   { color: var(--gold); font-size: 0.9rem; font-weight: 700; }

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a3535 !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #0D7377 !important;
}
.nav-link.active {
  color: #0D7377 !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: linear-gradient(90deg, #0D7377, #14BDAC);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Mega Menu */
.mega-menu-parent { position: static !important; }
.mega-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 24px 0;
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.mega-menu-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-item a {
  display: block;
  color: var(--navy);
  padding: 6px 0;
  font-size: 0.88rem;
  font-weight: 500;
}
.mega-item a:hover { color: var(--gold); padding-left: 6px; }

/* â”€â”€ HERO â”€â”€ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider { width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,61,64,0.85) 0%, rgba(13,61,64,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 22vh;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(20,189,172,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.85;
  margin-bottom: 32px;
}
.hero-prev, .hero-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
.scroll-down-arrow {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  animation: bounceDown 2s infinite;
  margin-left: 60px;
}
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* â”€â”€ STATS â”€â”€ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 50px 0;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* â”€â”€ SERVICE CARDS â”€â”€ */
.service-card-link { display: block; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(13,61,64,0.06);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #e8f0fe, #c9d7fb);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--navy-mid);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(13,61,64,0.07);
}
.rate-badge {
  background: var(--gray-light);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.arrow-icon {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.service-card:hover .arrow-icon { background: var(--gold); color: var(--navy); }

/* â”€â”€ WHY SECTION â”€â”€ */
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.92rem;
}
.why-item i { font-size: 1.1rem; flex-shrink: 0; }
.why-img-wrap { position: relative; display: inline-block; }
.why-badge-float {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why-float-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.why-float-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,61,64,0.06);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-style: italic; color: #4a5568; margin-bottom: 20px; font-size: 0.95rem; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author img, .t-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.t-avatar {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}
.t-author strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.t-author small { color: var(--gray); font-size: 0.8rem; }

/* â”€â”€ ENQUIRY FORM â”€â”€ */
.enquiry-form .form-control,
.enquiry-form .form-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: var(--transition);
}
.enquiry-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(20,189,172,0.15);
  color: white;
}
.enquiry-form .form-select option { background: var(--navy); color: white; }

/* â”€â”€ FOOTER â”€â”€ */
.site-footer { background: #060e1a; }
.footer-top { padding: 60px 0 40px; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-top h6 { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 10px; display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}

/* â”€â”€ BACK TO TOP â”€â”€ */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); color: var(--gold); transform: translateY(-3px); }

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 991px) {
  .mega-menu { position: static; box-shadow: none; padding: 0 0 10px 16px; border: none; opacity: 1; visibility: visible; transform: none; }
  .why-list { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-content { padding-top: 16vh; }
  .why-badge-float { left: 0; bottom: -20px; }
}

/* â”€â”€ PAGE HERO (inner pages) â”€â”€ */
.page-hero {
  position: relative;
  height: 340px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: url('../images/hero-1.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero-content {
  position: relative; z-index: 2; color: #fff;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero-content p { opacity: 0.8; margin-bottom: 14px; }
.breadcrumb { background: none; margin: 0; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.6); }

/* â”€â”€ Service card large (services page) â”€â”€ */
.service-card-lg { padding: 0 0 24px; }
.service-img-wrap { width: 100%; height: 180px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin-bottom: 20px; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-card-lg h4 { padding: 0 20px; }
.service-card-lg p  { padding: 0 20px; }
.service-card-lg .service-card-footer { padding: 14px 20px 0; margin: 0 20px; }
.service-icon-lg { width: 80px; height: 80px; font-size: 2rem; margin: 20px auto 20px; }

/* â”€â”€ Admin card on frontend (enquiry sidebar) â”€â”€ */
.admin-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(13,61,64,0.06); overflow: hidden; }
.admin-card-header { padding: 14px 20px; background: #f7f9fc; border-bottom: 1px solid rgba(13,61,64,0.06); }
.admin-card-header h5 { margin: 0; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.admin-card-body { padding: 20px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLIP SERVICE CARDS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.flip-card-wrap {
  perspective: 1000px;
  height: 300px;
}

.flip-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  cursor: pointer;
}

.flip-card-wrap:hover .flip-card,
.flip-card-wrap.flipped .flip-card {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  overflow: hidden;
}

/* â”€â”€ FRONT â”€â”€ */
.flip-front {
  background: var(--white);
  border: 1px solid rgba(13,61,64,0.07);
  box-shadow: var(--shadow-sm);
}
.flip-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.flip-front-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, #e8f0fe, #c9d7fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--navy-mid);
  margin-bottom: 18px;
  transition: var(--transition);
  flex-shrink: 0;
}
.flip-card-wrap:hover .flip-front-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.flip-front h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flip-front p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}
.flip-front-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-light);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.flip-hint {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.68rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* â”€â”€ BACK â”€â”€ */
.flip-back {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  transform: rotateY(180deg);
  color: white;
  justify-content: flex-start;
  padding: 28px 24px 24px;
  text-align: left;
}
.flip-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.flip-back-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(20,189,172,0.2);
  border: 1px solid rgba(20,189,172,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.flip-back h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.flip-back-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex: 1;
}
.flip-back-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.4;
}
.flip-back-list li::before {
  content: 'âœ¦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.flip-back-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  width: 100%;
}
.flip-back-price strong {
  color: var(--gold);
  font-size: 0.9rem;
}
.flip-back-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 10px;
  transition: var(--transition);
}
.flip-back-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

@media (max-width: 767px) {
  .flip-card-wrap { height: 280px; }
  /* On mobile tap to flip instead of hover */
  .flip-card-wrap:hover .flip-card { transform: none; }
  .flip-card-wrap.flipped .flip-card { transform: rotateY(180deg); }
}


/* ═══════════════════════════════════════════════
   TEAL THEME OVERRIDES & GRADIENTS
   ═══════════════════════════════════════════════ */

/* ── Teal gradient utilities ── */
.bg-teal-gradient {
  background: linear-gradient(135deg, #0a3d40 0%, #0D7377 50%, #14BDAC 100%) !important;
}
.text-teal { color: #14BDAC !important; }

/* ── Navbar ── */
#mainNav { border-bottom: 2px solid rgba(13,115,119,0.12); }
#mainNav.scrolled { box-shadow: 0 4px 20px rgba(13,115,119,0.15); }
.nav-link::after { background: linear-gradient(90deg, #0D7377, #14BDAC); }

/* ── Hero overlay — teal gradient left ── */
.hero-overlay {
  background: linear-gradient(135deg,
    rgba(10,61,64,0.92) 0%,
    rgba(13,115,119,0.75) 60%,
    rgba(20,189,172,0.30) 100%) !important;
}

/* ── Stats section ── */
.stats-section {
  background: linear-gradient(135deg, #0a3d40 0%, #0D7377 60%, #14BDAC 100%) !important;
}

/* ── Section tag — teal ── */
.section-tag {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
  color: #fff !important;
}
.section-tag-light {
  background: rgba(13,115,119,0.15) !important;
  color: #0D7377 !important;
}
.section-header h2 { color: #0a3d40; }

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(13,115,119,0.35) !important;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #14BDAC, #5ee8d6) !important;
  color: #0a3d40 !important;
  box-shadow: 0 8px 25px rgba(13,115,119,0.5) !important;
}
.btn-outline-navy {
  border-color: #0D7377 !important;
  color: #0D7377 !important;
}
.btn-outline-navy:hover {
  background: #0D7377 !important;
  color: #fff !important;
}
.btn-header-admin {
  background: rgba(13,115,119,0.12) !important;
  color: #0D7377 !important;
  border-color: #0D7377 !important;
}
.btn-header-admin:hover {
  background: #0D7377 !important;
  color: #fff !important;
}

/* ── Service flip cards — teal ── */
.flip-front::before { background: linear-gradient(90deg, #0D7377, #14BDAC) !important; }
.flip-front-icon {
  background: linear-gradient(135deg, #d0f0ee, #a8e6e0) !important;
  color: #0D7377 !important;
}
.flip-card-wrap:hover .flip-front-icon {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
  color: #fff !important;
}
.flip-back {
  background: linear-gradient(145deg, #0a3d40 0%, #0D7377 60%, #14BDAC 100%) !important;
}
.flip-back::before { background: linear-gradient(90deg, #14BDAC, #5ee8d6) !important; }
.flip-back-icon {
  background: rgba(94,232,214,0.15) !important;
  border-color: rgba(94,232,214,0.4) !important;
  color: #5ee8d6 !important;
}
.flip-back-list li::before { color: #5ee8d6 !important; }
.flip-back-price strong { color: #5ee8d6 !important; }
.flip-back-cta {
  background: linear-gradient(135deg, #14BDAC, #5ee8d6) !important;
  color: #0a3d40 !important;
}
.flip-hint { color: #0D7377; }

/* ── Why section ── */
.why-item i { color: #14BDAC !important; }
.why-badge-float {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
  color: #fff !important;
}

/* ── Service card (services page) ── */
.service-card::before { background: linear-gradient(90deg, #0D7377, #14BDAC) !important; }
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
  color: #fff !important;
}
.service-icon-wrap { background: linear-gradient(135deg, #d0f0ee, #a8e6e0) !important; color: #0D7377 !important; }
.arrow-icon { background: #0D7377 !important; }
.service-card:hover .arrow-icon { background: #14BDAC !important; color: #0a3d40 !important; }
.rate-badge { background: #d0f0ee !important; color: #0a3d40 !important; }

/* ── Testimonials ── */
.stars { color: #14BDAC !important; }
.t-avatar {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
}

/* ── Enquiry section ── */
.enquiry-section.bg-navy,
section.bg-navy {
  background: linear-gradient(135deg, #0a3d40 0%, #0D7377 70%, #14BDAC 100%) !important;
}
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: #14BDAC !important;
  box-shadow: 0 0 0 3px rgba(20,189,172,0.2) !important;
}

/* ── Footer ── */
.site-footer { background: #061e1f !important; }
.footer-top h6 { color: #14BDAC !important; }
.footer-links a:hover { color: #14BDAC !important; }
.footer-contact i { color: #14BDAC !important; }
.footer-social a:hover { background: #0D7377 !important; border-color: #0D7377 !important; color: #fff !important; }

/* ── Page hero ── */
.page-hero {
  background: linear-gradient(135deg, #0a3d40 0%, #0D7377 60%, #14BDAC 100%) !important;
}

/* ── Back to top ── */
.back-to-top {
  background: linear-gradient(135deg, #0D7377, #14BDAC) !important;
  color: #fff !important;
}
.back-to-top:hover { background: #0a3d40 !important; color: #14BDAC !important; }

/* ── Brand name colors ── */
.brand-gold  { color: #14BDAC !important; }
.brand-blue  { color: #0a3d40 !important; }
.brand-dot   { color: #0D7377 !important; }
.brand-white { color: #5ee8d6 !important; }

/* ── Mega menu border ── */
.mega-menu { border-top-color: #0D7377 !important; }
.mega-item a:hover { color: #0D7377 !important; }

/* ── Hero badge ── */
.hero-badge {
  background: rgba(20,189,172,0.15) !important;
  border-color: #14BDAC !important;
  color: #5ee8d6 !important;
}

/* ── Hero slider dots ── */
.hero-dot.active { background: #14BDAC !important; }
.hero-prev:hover, .hero-next:hover {
  background: #0D7377 !important;
  border-color: #0D7377 !important;
  color: #fff !important;
}

/* ── Form focus ── */
.form-control:focus, .form-select:focus {
  border-color: #0D7377 !important;
  box-shadow: 0 0 0 3px rgba(13,115,119,0.18) !important;
}

/* ═══════════════════════════════════════════════
   HERO SLIDER – ENHANCED IMAGE + KEN BURNS EFFECT
   ═══════════════════════════════════════════════ */

.hero-slide {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Ken Burns slow zoom on active slide */
.hero-slide.active {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  0%   { background-size: 110%; }
  100% { background-size: 120%; }
}

/* Teal gradient overlay — left heavy so text is readable */
.hero-overlay {
  background: linear-gradient(
    110deg,
    rgba(10,61,64,0.92)  0%,
    rgba(13,115,119,0.78) 45%,
    rgba(20,189,172,0.25) 75%,
    rgba(0,0,0,0.10)      100%
  ) !important;
}

/* Slide transition — smooth crossfade */
.hero-slide {
  transition: opacity 1.4s ease-in-out !important;
}

/* Text color in hero */
.hero-content h1 { color: #fff; text-shadow: 0 3px 20px rgba(0,0,0,0.4); }
.hero-content p   { color: rgba(255,255,255,0.88); text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.text-teal { color: #5ee8d6 !important; }

/* Hero badge – teal glow */
.hero-badge {
  background: rgba(20,189,172,0.18) !important;
  border: 1px solid rgba(94,232,214,0.6) !important;
  color: #5ee8d6 !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(20,189,172,0.15);
}

/* Slider nav arrows */
.hero-prev, .hero-next {
  background: rgba(13,115,119,0.35) !important;
  border-color: rgba(94,232,214,0.4) !important;
  backdrop-filter: blur(8px);
}
.hero-prev:hover, .hero-next:hover {
  background: #0D7377 !important;
  border-color: #14BDAC !important;
  box-shadow: 0 4px 20px rgba(13,115,119,0.5);
}

/* Dots – teal */
.hero-dot { background: rgba(255,255,255,0.35) !important; }
.hero-dot.active {
  background: #14BDAC !important;
  box-shadow: 0 0 10px rgba(20,189,172,0.7);
}

/* Outline button in hero */
.hero-btns .btn-outline-light {
  border-color: rgba(94,232,214,0.7) !important;
  color: #5ee8d6 !important;
}
.hero-btns .btn-outline-light:hover {
  background: rgba(20,189,172,0.2) !important;
  border-color: #14BDAC !important;
  color: #fff !important;
}

/* Scroll arrow */
.scroll-down-arrow { color: rgba(94,232,214,0.8) !important; }

/* Hero min height for large screens */
@media (min-height: 700px) {
  .hero-section { min-height: 100vh; }
  .hero-content  { padding-top: 25vh; }
}
@media (max-width: 767px) {
  @keyframes kenBurns { 0%,100%{ background-size: cover; } }
}

/* ═══════════════════════════════════════════════
   STYLISH ADMIN LOGIN BUTTON
   ═══════════════════════════════════════════════ */
.btn-admin-stylish {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #0a3d40, #0D7377);
  border: 1px solid rgba(94,232,214,0.3);
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(13,115,119,0.3);
}
.btn-admin-stylish:hover {
  box-shadow: 0 4px 20px rgba(13,115,119,0.55);
  border-color: #14BDAC;
  transform: translateY(-1px);
}
.btn-admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(20,189,172,0.25);
  color: #5ee8d6;
  font-size: 0.8rem;
  flex-shrink: 0;
  border-radius: 50px 0 0 50px;
}
.btn-admin-text {
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.btn-admin-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 32px;
  background: #14BDAC;
  color: #0a3d40;
  font-size: 0.7rem;
  border-radius: 0 50px 50px 0;
  transition: var(--transition);
}
.btn-admin-stylish:hover .btn-admin-arrow {
  background: #5ee8d6;
  width: 32px;
}

/* ═══════════════════════════════════════════════
   FLIP CARD – SERVICE IMAGE FRONT
   ═══════════════════════════════════════════════ */
.flip-front-img {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.flip-front-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.flip-card-wrap:hover .flip-front-img img {
  transform: scale(1.08);
}
.flip-front-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,115,119,0.15) 0%, rgba(10,61,64,0.55) 100%);
  border-radius: 14px;
}
.flip-front-img-icon {
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(20,189,172,0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

/* Adjust flip-front padding when image is present */
.flip-card-wrap { height: 340px; }
.flip-front { padding: 18px 18px 40px; justify-content: flex-start; text-align: left; align-items: flex-start; }
.flip-front h4 { font-size: 0.95rem; margin-bottom: 5px; }
.flip-front p   { font-size: 0.79rem; line-height: 1.4; -webkit-line-clamp: 2; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; }
.flip-hint { color: rgba(13,115,119,0.6); font-size: 0.65rem; }

/* ═══════════════════════════════════════════════
   LOGO IN NAVBAR
   ═══════════════════════════════════════════════ */
.navbar-logo-img {
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  display: inline-block;
}
@media (max-width: 576px) {
  .navbar-logo-img { height: 38px; max-width: 140px; }
}

/* ═══════════════════════════════════════════════
   STYLISH ADMIN BUTTON (header-top)
   ═══════════════════════════════════════════════ */
.btn-admin-stylish {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #0a3d40, #0D7377);
  border: 1px solid rgba(94,232,214,0.35);
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none !important;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(13,115,119,0.35);
  vertical-align: middle;
}
.btn-admin-stylish:hover {
  box-shadow: 0 4px 20px rgba(13,115,119,0.55);
  border-color: #14BDAC;
  transform: translateY(-1px);
}
.btn-admin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(20,189,172,0.2);
  color: #5ee8d6;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.btn-admin-text {
  padding: 0 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-admin-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 30px;
  background: #14BDAC;
  color: #0a3d40;
  font-size: 0.68rem;
  transition: var(--transition);
}
.btn-admin-stylish:hover .btn-admin-arrow {
  background: #5ee8d6;
  width: 32px;
}

/* ═══════════════════════════════════════════════
   FINAL NAV FIXES
   ═══════════════════════════════════════════════ */

/* Nav link – clearly visible dark text */
#mainNav .nav-link {
  color: #1e3a3a !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.1px;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: #0D7377 !important;
}

/* Dropdown toggle arrow visible */
.dropdown-toggle::after { border-color: #1e3a3a transparent transparent !important; }

/* Logo img in navbar */
.navbar-logo-img {
  height: 46px;
  max-width: 160px;
  object-fit: contain;
  vertical-align: middle;
}

/* Always show company name text as brand fallback */
.navbar-brand-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

/* Footer company name visible on dark bg */
.site-footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.site-footer h6 {
  color: #14BDAC !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.88rem;
}
.site-footer .footer-links a:hover { color: #14BDAC !important; }

/* Footer contact list icon + text spacing */
.footer-contact li {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact a { color: rgba(255,255,255,0.65) !important; }
.footer-contact a:hover { color: #14BDAC !important; }
.footer-contact i { color: #14BDAC; margin-top: 3px; flex-shrink: 0; }

/* Mega menu visibility fix */
.mega-menu a { color: #1e3a3a !important; }
.mega-menu a:hover { color: #0D7377 !important; }

/* ═══════════════════════════════════════════════
   NAVBAR – LOGO + COMPANY NAME BESIDE IT
   ═══════════════════════════════════════════════ */
.navbar-logo-img {
  height: 44px !important;
  max-width: 150px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  display: inline-block !important;
}
.navbar-company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0a3d40 !important;
  vertical-align: middle;
  letter-spacing: -0.3px;
  display: inline-block;
}
@media (max-width: 576px) {
  .navbar-logo-img { height: 36px !important; }
  .navbar-company-name { font-size: 0.95rem !important; }
}

/* ═══════════════════════════════════════════════
   FOOTER – COMPLETE COLOR FIX
   ═══════════════════════════════════════════════ */
.site-footer * { color: inherit; }

/* All paragraph text in footer */
.site-footer p,
.site-footer .footer-top p {
  color: rgba(255,255,255,0.72) !important;
}

/* Override Bootstrap .text-muted in footer */
.site-footer .text-muted {
  color: rgba(255,255,255,0.65) !important;
}

/* Footer headings */
.site-footer h6,
.site-footer .footer-top h6 {
  color: #14BDAC !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
}

/* Quick links */
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin-bottom: 8px; }
.site-footer .footer-links a {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.87rem !important;
  text-decoration: none !important;
  transition: all 0.25s;
  display: inline-block;
}
.site-footer .footer-links a:hover {
  color: #14BDAC !important;
  padding-left: 5px;
}

/* Contact list */
.site-footer .footer-contact { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7) !important;
}
.site-footer .footer-contact li i {
  color: #14BDAC !important;
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.site-footer .footer-contact a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
}
.site-footer .footer-contact a:hover { color: #14BDAC !important; }

/* Social icons */
.site-footer .footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.82rem;
  margin-right: 6px;
  transition: all 0.3s;
  text-decoration: none !important;
}
.site-footer .footer-social a:hover {
  background: #0D7377 !important;
  border-color: #0D7377 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Footer bottom bar */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding: 16px 0 !important;
}
.site-footer .footer-bottom p {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.82rem !important;
}

/* ── Two-tone company name in navbar ── */
.name-black {
  color: #0a3d40 !important;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}
.name-teal {
  color: #0D7377 !important;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}
.navbar-company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  vertical-align: middle;
  letter-spacing: -0.3px;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 576px) {
  .navbar-company-name { font-size: 0.95rem !important; }
}

/* ═══════════════════════════════════════════════
   LOGO SIZE FIX – BIGGER & PROPERLY VISIBLE
   ═══════════════════════════════════════════════ */
.navbar-logo-img {
  height: 70px !important;
  max-width: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

/* Give navbar more height to show bigger logo */
#mainNav {
  padding: 8px 0 !important;
  min-height: 86px;
}
#mainNav.scrolled {
  padding: 5px 0 !important;
  min-height: 70px;
}
#mainNav.scrolled .navbar-logo-img {
  height: 56px !important;
}

/* Company name next to logo – slightly larger */
.navbar-company-name {
  font-size: 1.35rem !important;
}

@media (max-width: 991px) {
  .navbar-logo-img { height: 58px !important; max-width: 180px !important; }
  #mainNav { min-height: 74px !important; }
  .navbar-company-name { font-size: 1.1rem !important; }
}
@media (max-width: 576px) {
  .navbar-logo-img { height: 46px !important; max-width: 140px !important; }
  #mainNav { min-height: 62px !important; }
  .navbar-company-name { font-size: 0.9rem !important; }
}

/* ── Admin button visible on mobile inside nav ── */
@media (max-width: 991px) {
  .header-top { display: none !important; } /* keep hidden, shown in mobile menu instead */
  #navbarMain .btn-admin-stylish {
    margin: 8px 20px;
    width: calc(100% - 40px);
    justify-content: center;
  }
  #navbarMain .btn-admin-stylish .btn-admin-text { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════
   WHY SECTION – BADGE OVERLAP FIX
   ═══════════════════════════════════════════════ */

/* Badge positioned inside image wrapper, not overlapping text */
.why-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.why-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0D7377, #14BDAC);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(13,115,119,0.4);
  z-index: 10;
  min-width: 100px;
}

.why-float-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.why-float-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
}

/* On mobile: hide badge to prevent overlap */
@media (max-width: 767px) {
  .why-badge-float { display: none; }
}

/* ── HEADER TOP – always show on all screens ── */
.header-top {
  display: block !important;
  background: var(--navy);
  padding: 7px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* Admin button in header-top responsive */
@media (max-width: 575px) {
  .header-top .container {
    justify-content: flex-end !important;
  }
  .btn-admin-text {
    display: none;
  }
  .btn-admin-stylish {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    justify-content: center;
  }
  .btn-admin-icon {
    border-radius: 50%;
    width: 32px;
    height: 32px;
  }
  .btn-admin-arrow { display: none; }
}

/* ═══════════════════════════════════════════════
   WHY SECTION – STATS GRID (replaces image)
   ═══════════════════════════════════════════════ */
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-stat-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,115,119,0.25);
}
.why-stat-teal {
  background: linear-gradient(135deg, #0a3d40, #0D7377);
  color: #fff;
}
.why-stat-dark {
  background: linear-gradient(135deg, #0D7377, #14BDAC);
  color: #fff;
}
.why-stat-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  opacity: 0.9;
}
.why-stat-teal .why-stat-icon { color: #5ee8d6; }
.why-stat-dark .why-stat-icon { color: rgba(255,255,255,0.9); }
.why-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}
.why-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
}

/* First card spans full row for emphasis */
.why-stat-card:first-child {
  grid-column: span 2;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
}
.why-stat-card:first-child .why-stat-icon { font-size: 2.4rem; margin-bottom: 0; }
.why-stat-card:first-child .why-stat-num  { font-size: 3rem; }

@media (max-width: 576px) {
  .why-stats-grid { gap: 12px; }
  .why-stat-num   { font-size: 1.8rem !important; }
  .why-stat-card  { padding: 22px 16px !important; }
  .why-stat-card:first-child { gap: 12px; }
  .why-stat-card:first-child .why-stat-num { font-size: 2.2rem !important; }
}

/* ═══════════════════════════════════════════════
   HEADER TOP – ADMIN BUTTON COMPLETE REWRITE
   ═══════════════════════════════════════════════ */

/* Top bar layout */
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 36px;
}
.header-contact span {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
}
.header-contact i { color: #14BDAC; margin-right: 5px; }

/* Desktop admin button in header-top */
.header-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0D7377, #14BDAC);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px 5px 10px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(13,115,119,0.35);
}
.header-admin-btn i { font-size: 0.85rem; }
.header-admin-btn:hover {
  background: linear-gradient(135deg, #14BDAC, #5ee8d6);
  color: #0a3d40 !important;
  box-shadow: 0 4px 16px rgba(13,115,119,0.5);
  transform: translateY(-1px);
}
.header-admin-arrow { font-size: 0.7rem !important; opacity: 0.8; }

/* Mobile admin button – sits between brand and hamburger */
.mobile-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0a3d40, #0D7377);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.3s;
  border: 1px solid rgba(94,232,214,0.3);
}
.mobile-admin-btn i { color: #5ee8d6; font-size: 0.85rem; }
.mobile-admin-btn:hover {
  background: linear-gradient(135deg,#0D7377,#14BDAC);
  color: #fff !important;
}

/* On desktop: hide mobile admin btn */
@media (min-width: 992px) {
  .mobile-admin-btn { display: none !important; }
}

/* On mobile: admin btn in header-top still shows */
@media (max-width: 991px) {
  .header-top-inner { justify-content: flex-end; }
  .header-admin-btn { display: none; } /* hidden on mobile, replaced by mobile-admin-btn */
}

@media (max-width: 400px) {
  .mobile-admin-btn span { display: none; }
  .mobile-admin-btn { padding: 6px 10px; border-radius: 50%; }
}

/* ═══════════════════════════════════════════════
   FLIP CARD – COMPLETE RESPONSIVE FIX
   ═══════════════════════════════════════════════ */

/* Give cards enough height for content + button */
.flip-card-wrap { height: 360px; }

/* Front card: flex column so content fills properly */
.flip-front {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding: 18px 18px 50px 18px !important;
  overflow: hidden !important;
}

/* Back card: flex column, all content visible */
.flip-back {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  padding: 20px 20px 20px 20px !important;
  overflow: hidden !important;
}

/* Bullet list – limit lines so button doesn't get pushed off */
.flip-back-list {
  flex: 1 !important;
  overflow: hidden !important;
  max-height: 120px !important;
  margin-bottom: 10px !important;
}
.flip-back-list li { font-size: 0.78rem !important; padding: 2px 0 !important; }

/* Price text compact */
.flip-back-price {
  font-size: 0.76rem !important;
  padding-top: 8px !important;
  margin-bottom: 8px !important;
  width: 100% !important;
}

/* CTA button always at bottom, never hidden */
.flip-back-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg,#14BDAC,#5ee8d6) !important;
  color: #0a3d40 !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  margin-top: auto !important;
}

/* MOBILE: disable CSS hover flip, use JS tap only */
@media (hover: none), (max-width: 767px) {
  .flip-card-wrap:hover .flip-card { transform: none !important; }
  .flip-card-wrap.flipped .flip-card { transform: rotateY(180deg) !important; }
  .flip-card-wrap { height: 320px !important; }
  .flip-back-list { max-height: 100px !important; }
}

@media (max-width: 480px) {
  .flip-card-wrap { height: 300px !important; }
  .flip-back { padding: 16px !important; }
  .flip-back h4 { font-size: 0.88rem !important; margin-bottom: 6px !important; }
  .flip-back-list { max-height: 88px !important; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 24px;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
  color: #fff !important;
}

/* Pulse animation ring */
.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 576px) {
  .whatsapp-float { bottom: 76px; right: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════
   WHATSAPP ENQUIRY STRIP SECTION
   ═══════════════════════════════════════════════ */
.wa-strip-section {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #25D366 100%);
  padding: 32px 0;
}

.wa-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.wa-strip-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 240px;
}

.wa-strip-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
  animation: waPulse 3s ease-out infinite;
}

.wa-strip-left h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 4px;
}
.wa-strip-left p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin: 0;
}

.wa-strip-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.wa-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #075E54 !important;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.wa-strip-btn:hover {
  background: #e8fff4;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  color: #075E54 !important;
}
.wa-strip-btn i { font-size: 1.1rem; }

.wa-strip-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff !important;
}
.wa-strip-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff !important;
}

@media (max-width: 767px) {
  .wa-strip { flex-direction: column; text-align: center; }
  .wa-strip-left { flex-direction: column; text-align: center; }
  .wa-strip-right { justify-content: center; width: 100%; }
  .wa-strip-btn { flex: 1; justify-content: center; min-width: 140px; }
}

/* ═══════════════════════════════════════════════
   VISITOR COUNTER STRIP
   ═══════════════════════════════════════════════ */
.visitor-counter-strip {
  background: linear-gradient(135deg, #0a3d40 0%, #0D7377 60%, #14BDAC 100%);
  padding: 28px 0;
}
.visitor-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.visitor-strip-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5ee8d6;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.visitor-strip-title i { font-size: 1.2rem; }
.visitor-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.v-stat {
  text-align: center;
  padding: 0 28px;
}
.v-stat-highlight .v-num { color: #5ee8d6 !important; }
.v-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.v-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.v-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .visitor-strip-inner { flex-direction: column; text-align: center; }
  .v-stat { padding: 8px 16px; }
  .v-divider { width: 40px; height: 1px; }
  .v-num { font-size: 1.4rem; }
}
