/* Core Variables & Reset */
:root {
  --primary-color: #333;
  --secondary-color: #007bff;
  --text-color: #555;
  --bg-light: #f8f9fa;
  --font-heading: "Cormorant Garamond", serif;
  /* Elegant, premium architecture feel */
  --font-body: "Montserrat", sans-serif;
  /* Clean, modern readability */
}

html, body {
  font-family: var(--font-body);
  color: var(--text-color);
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 576px) {
  .service-box, .card-custom, .gallery-img {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
    display: block;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
  /* Reduced padding */
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #000 !important;
}

.navbar-brand img {
  height: 60px;
  /* Reduced logo size */
  width: auto;
  transition: transform 0.3s ease;
}

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

/* Textured Animated Underline Effect */
.nav-link {
  font-weight: 500;
  margin-left: 1.5rem;
  color: #333 !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c9a84c;
  /* Gold — luxury accent */
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.55);
  /* Gold glow */
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #c9a84c !important;
  /* Gold text on hover/active */
  text-shadow: 0 0 1px rgba(201, 168, 76, 0.25);
}

.nav-item {
  transition: transform 0.3s ease;
}

.nav-item:hover {
  transform: translateY(-2px);
}

/* Dropdown Hover on Desktop */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInUp 0.3s ease forwards;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navbar Sizing */
@media (max-width: 991px) {
  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-brand img {
    height: 50px;
    width: auto;
  }

  .navbar .dropdown-menu {
    min-width: unset;
    width: 100%;
  }

  .navbar-collapse {
    display: none !important;
  }
}

/* Client Logo Styling */
.client-logo {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
}

.client-swiper {
  border-left: 1px solid #e0e0e0;
}

.client-swiper .swiper-slide {
  border-right: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  aspect-ratio: 1 / 1;
  height: auto;
}

.client-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/Photos/heroimage.jpg") no-repeat center
    center/cover;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  /* Light overlay for "white" feel like reference */
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #222;
}

.hero-logo-text {
  font-family: var(--font-heading);
  font-size: 6rem;
  margin-bottom: 0;
  line-height: 1;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-top: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 0.9rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Swiper Hero Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Dark overlay for white text readability */
  z-index: 1;
}

.hero-swiper .carousel-caption {
  z-index: 2;
  /* Ensure text is above overlay */
}

/* Responsive Hero Image Heights */
.hero-img-height {
  height: 100svh;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero-img-height {
    height: 75svh;
    min-height: 600px;
  }
}

@media (max-width: 992px) {
  .hero-img-height {
    height: 70svh;
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-img-height {
    height: 100svh;
    min-height: 600px;
  }

  .hero-title {
    font-size: 2rem !important;
    padding: 0 !important;
    letter-spacing: 2px !important;
    line-height: 1.2;
    margin-bottom: 1.5rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
    line-height: 1.5;
  }

  .hero-btns {
    gap: 1rem !important;
    flex-wrap: wrap;
  }

  .hero-btns .btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px;
  }

  .hero-category-btns {
    gap: 0.8rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-category-btns .btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.7rem !important;
  }
}

@media (max-width: 576px) {
  .hero-img-height {
    height: 100svh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 1.5rem !important;
    padding: 0 !important;
    letter-spacing: 1.5px !important;
    line-height: 1.1;
    margin-bottom: 1rem !important;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
    line-height: 1.4;
  }

  .hero-btns {
    gap: 0.8rem !important;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-btns .btn {
    width: auto;
    margin-bottom: 0;
    padding: 0.5rem 0.9rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0px;
  }

  .hero-category-btns {
    flex-direction: column;
    gap: 0.6rem !important;
    margin-bottom: 1rem !important;
  }

  .hero-category-btns .btn {
    width: 100%;
    padding: 0.5rem 1rem !important;
    font-size: 0.65rem !important;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.25rem !important;
    letter-spacing: 1px !important;
  }

  .hero-subtitle {
    font-size: 0.75rem !important;
    margin-bottom: 1rem !important;
  }

  .hero-btns .btn {
    font-size: 0.6rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .hero-category-btns .btn {
    font-size: 0.6rem !important;
    padding: 0.4rem 0.8rem !important;
  }
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto 0;
}

/* Card Styling */
.card-custom {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.card-custom:hover {
  transform: translateY(-10px);
}

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

/* Responsive Image Heights */
@media (max-width: 768px) {
  .card-custom img {
    height: 200px;
  }
}

.card-custom:hover img {
  transform: scale(1.05);
}

/* =========================================
   "What We Do" Service Card Hover Effects
   ========================================= */

/* Base card — fixed height so image fills it consistently */
.service-box {
  height: 300px;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}

@media (max-width: 576px) {
  .service-box {
    height: 220px;
  }
}

/* The image fills the whole box */
.service-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* Overlay — starts invisible, covers the whole card */
.service-overlay {
  background: rgba(10, 10, 10, 0.72) !important;
  /* deep dark luxury tint */
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
  /* Put overlay text/button in center */
  gap: 0;
}

/* Title inside overlay */
.service-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 1rem;
  transform: translateY(10px);
  transition: transform 0.35s ease 0.05s;
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

/* "Explore" button — starts shifted down, invisible */
.service-overlay .btn-outline-light {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.35s ease 0.1s,
    transform 0.35s ease 0.1s,
    background-color 0.25s ease,
    color 0.25s ease;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  padding: 0.5rem 1.6rem;
  border-color: rgba(255, 255, 255, 0.7);
}

/* ---------- Desktop hover ---------- */
.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
}

.service-box:hover > img {
  transform: scale(1.07);
}

.service-box:hover .service-overlay {
  opacity: 1 !important;
}

.service-box:hover .service-overlay h3,
.service-box:hover .service-overlay .btn-outline-light {
  opacity: 1;
  transform: translateY(0);
}

.service-box:hover .service-overlay .btn-outline-light:hover {
  background-color: #fff;
  color: #111;
}

/* ── About Page Enhancements ── */
.about-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 12px;
}

.text-highlight {
  color: #c9a84c;
  font-weight: 600;
}

.about-divider {
  width: 55px;
  height: 3px;
  background: #c9a84c;
  margin-bottom: 22px;
}

.about-para {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.about-para:hover {
  color: #333;
}

/* Image badge */
.about-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: 20px;
  background: #c9a84c;
  color: #fff;
  padding: 14px 22px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.about-img-badge .badge-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-img-badge .badge-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-top: 3px;
}

/* Why Choose Cards */
.why-choose-section {
  background: #f8f6f2;
}

.why-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  border-bottom: 3px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: #c9a84c;
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.18);
}

.why-icon {
  width: 62px;
  height: 62px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: #c9a84c;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.why-card:hover .why-icon {
  background: #c9a84c;
  color: #fff;
}

.why-card h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-heading {
    font-size: 1.8rem;
  }

  .about-img-badge {
    bottom: -14px;
    right: 12px;
    padding: 10px 16px;
  }

  .about-img-badge .badge-number {
    font-size: 1.4rem;
  }

  .col-lg-6[data-aos="fade-left"] {
    margin-top: 36px;
  }

  .about-eyebrow,
  .about-heading,
  .about-divider,
  .about-para,
  .btn {
    text-align: center;
  }

  .about-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .btn.mt-3 {
    display: block;
    width: fit-content;
    margin: 16px auto 0;
  }
}

/* ---------- Mobile tap  (JS adds .tapped class) ---------- */
.service-box.tapped {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
}

.service-box.tapped > img {
  transform: scale(1.07);
}

.service-box.tapped .service-overlay {
  opacity: 1 !important;
}

.service-box.tapped .service-overlay h3,
.service-box.tapped .service-overlay .btn-outline-light {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Widget */
/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1060;
  /* Higher than Back to Top */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  /* Allow clicks to pass through empty space */
}

.whatsapp-msg,
.whatsapp-float {
  pointer-events: auto;
  /* Re-enable clicks for actual elements */
}

/* ... existing styles ... */

/* Back to Top Button */
#btn-back-to-top {
  position: fixed;
  bottom: 120px;
  /* Vertically stacked above WhatsApp button */
  right: 40px;
  /* Aligned with WhatsApp button */
  display: none;
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  /* Reset global button padding to keep it circular */
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1050;
  /* Lower than WhatsApp widget */
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.whatsapp-msg {
  background: white;
  width: 280px;
  /* Fixed width */
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  /* Bouncy effect */
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Chat Header */
.whatsapp-msg::before {
  content: "Support Team";
  display: block;
  background-color: #075e54;
  color: white;
  padding: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}

.whatsapp-msg h5,
.whatsapp-msg p {
  padding: 0 15px;
}

.whatsapp-msg h5 {
  font-size: 0.85rem;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #888;
  font-weight: normal;
}

/* Chat Bubble Style */
.whatsapp-msg p {
  background-color: #dcf8c6;
  color: #333;
  padding: 10px 12px;
  border-radius: 0 12px 12px 12px;
  display: inline-block;
  margin: 0 15px 15px 15px;
  font-size: 0.9rem;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.whatsapp-msg::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: white;
}

.whatsapp-widget.active .whatsapp-msg {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Pulse Animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Mobile Adjustment for Widget */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-msg {
    width: 250px;
    /* Slightly smaller width for mobile */
    margin-bottom: 10px;
  }
}

/* Back to Top Button - Positioned above Call icon */
#btn-back-to-top {
  position: fixed;
  bottom: 172px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

#btn-back-to-top:hover {
  background-color: #c9a84c;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

#btn-back-to-top i {
  font-size: 24px;
}

@media (max-width: 768px) {
  #btn-back-to-top {
    width: 52px;
    height: 52px;
    bottom: 144px;
    right: 16px;
    font-size: 20px;
  }
}

/* Footer */

/* Hide navigation arrows and pagination on mobile if needed, or just style them */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer h3 {
  color: #fff;
  font-size: 2.5rem;
  /* Larger size */
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Subtle depth */
}

/* Brand Slogan styling */
.footer h3 + p {
  color: #ddd !important;
  /* Overriding text-muted */
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

.footer a {
  color: #ccc;
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* =========================================
   Footer Social Icons
   ========================================= */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

/* Override the broad .footer a rules for social icons */
.footer-social-icon {
  display: inline-flex !important;
  /* row, not block */
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  /* faint gold border */
  color: #c9a84c !important;
  /* gold default */
  font-size: 1.25rem;
  text-decoration: none;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  /* reset footer a:hover padding */
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  flex-shrink: 0;
}

.footer-social-icon:hover {
  transform: translateY(-5px) scale(1.12);
  padding-left: 0 !important;
  /* suppress footer generic hover padding */
}

/* Per-platform brand colors on hover using aria-label */
.footer-social-icon[aria-label="Instagram"]:hover {
  background: radial-gradient(
    ellipse at 30% 110%,
    #f9ce34,
    #ee2a7b 50%,
    #6228d7 90%
  );
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(238, 42, 123, 0.45);
}

.footer-social-icon[aria-label="YouTube"]:hover {
  background-color: #ff0000;
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.footer-social-icon[aria-label="Facebook"]:hover {
  background-color: #1877f2;
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.footer-social-icon[aria-label="WhatsApp"]:hover {
  background-color: #25d366;
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Gallery Zoom Effect */
.gallery-img {
  transition: all 0.4s ease;
  cursor: pointer;
  transform-origin: center;
}

.gallery-img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  z-index: 2;
  position: relative;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #666;
}

/* Page Headers */
.page-header {
  background: url("../images/Photos/heroimage.jpg") no-repeat center
    center/cover;
  padding: 120px 0 120px;
  /* Increased padding for better visibility */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 60px;
    margin-bottom: 30px;
  }

  .page-header.transparent {
    padding-top: 90px;
    padding-bottom: 20px;
  }
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Slight overlay for image depth */
}

/* Ensure content is relative to show above overlay */
.page-header .container {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Transparent Page Header (for Blog) */
.page-header.transparent {
  background: transparent !important;
  padding-top: 140px;
  /* Spacer for fixed navbar */
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.page-header.transparent::before {
  display: none;
  /* Hide overlay */
}

/* Ensure text is distinct if not overridden */
.page-header.transparent h1,
.page-header.transparent p {
  color: var(--primary-color);
  text-shadow: none;
}

/* =========================================
   Mobile Responsiveness Enhancements
   ========================================= */
@media (max-width: 768px) {
  .hero-logo-text {
    font-size: 3.5rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin-top: 0.5rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    padding: 0 15px;
    line-height: 1.6;
  }

  .navbar-brand img {
    height: 44px;
  }

  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .display-4,
  .display-5 {
    font-size: 1.8rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .card-custom img {
    height: 200px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Tablet (769px-992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .wwa-heading {
    font-size: 2.2rem;
  }

  .display-4,
  .display-5 {
    font-size: 2.2rem;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* Notification Modal */
.notification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.notification-modal.active {
  opacity: 1;
  visibility: visible;
}

.notification-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.notification-modal.active .notification-content {
  transform: translateY(0);
}

.notification-icon {
  width: 60px;
  height: 60px;
  background: #e6f9ed;
  /* Light green circle */
  color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.notification-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.notification-content p {
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Mega Menu Styling */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown.mega-dropdown {
    position: relative !important;
  }

  .navbar .dropdown.mega-dropdown .dropdown-menu {
    width: 280px !important;
    max-width: 95vw !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
    padding: 10px !important;
    margin-top: 0 !important;
    border-radius: 0 0 15px 15px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #ffffff !important;
    border: none;
    border-top: 3px solid var(--secondary-color);
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .navbar .dropdown.mega-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .service-list-col {
    padding: 0;
  }

  .service-list-col h6 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 5px;
    padding-left: 20px;
    letter-spacing: 1px;
    border-left: 3px solid var(--secondary-color);
  }

  .service-list-col .dropdown-item {
    padding: 5px 15px !important;
    border-radius: 8px !important;
    border-left: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: #444 !important;
    display: flex;
    align-items: center;
  }

  .service-list-col .dropdown-item:hover {
    padding-left: 30px !important;
    background-color: #f0f4ff !important;
    color: var(--secondary-color) !important;
    transform: translateX(5px);
  }
}

/* Mobile Dropdown Spacing */
@media (max-width: 991px) {
  .mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service-list-col h6 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
  }

  .dropdown-menu {
    border: none;
    padding: 10px 20px;
    background: transparent;
    box-shadow: none;
    min-width: unset;
    width: 100%;
  }

  .dropdown-item {
    padding: 8px 0;
    font-size: 0.95rem;
  }
}

/* Social Media Icons Styling */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.social-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  padding: 0;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: transparent;
  box-shadow: none;
  padding-left: 0 !important;
}

.social-icon i {
  transition: transform 0.3s ease;
}

/* Color on Hover - Text Only */
/* Pulse Animation */
@keyframes pulse-red {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 0, 0, 0.7);
  }

  70% {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 0, 0, 0);
  }
}

.social-icon.youtube {
  color: #ff0000 !important;
  background: transparent;
  box-shadow: none;
  font-size: 2.5rem;
}

.social-icon.youtube:hover {
  animation: pulse-red 1s infinite;
}

/* Facebook Icon Style */
.social-icon.facebook {
  color: #3b5998 !important;
  /* Facebook Blue */
  background: transparent;
  box-shadow: none;
  font-size: 2.5rem;
}

.social-icon.facebook:hover {
  animation: pulse-blue 1s infinite;
}

/* Instagram Icon Style */
.social-icon.instagram {
  color: #e1306c !important;
  /* Instagram Magenta */
  background: transparent;
  box-shadow: none;
  font-size: 2.5rem;
}

.social-icon.instagram:hover {
  animation: pulse-pink 1s infinite;
}

/* Animations */
@keyframes pulse-blue {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(59, 89, 152, 0.7);
  }

  70% {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(59, 89, 152, 0);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(59, 89, 152, 0);
  }
}

@keyframes pulse-pink {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(225, 48, 108, 0.7);
  }

  70% {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(225, 48, 108, 0);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(225, 48, 108, 0);
  }
}

/* Mobile Responsiveness for Footer Alignment */
@media (max-width: 768px) {
  /* Center Footer Headings & Text */
  .footer h5,
  .footer h3,
  .footer p,
  .footer .list-unstyled,
  .footer .social-links {
    text-align: center;
    justify-content: center;
  }
}

/* Project Swiper Styling */
.project-swiper {
  padding-bottom: 50px;
}

.project-swiper .swiper-slide {
  height: auto;
  /* Allow slide to grow with content */
  display: flex;
  justify-content: center;
}

.project-swiper .card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.project-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.project-swiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 6px;
  background: var(--primary-color);
  opacity: 1;
}

/* Ensure consistent height for visual balance on desktop */
@media (min-width: 992px) {
  .project-swiper .swiper-slide {
    height: 520px;
  }

  .project-swiper .card {
    width: 90%;
  }
}

/* Project swiper mobile stacking */
@media (max-width: 767px) {
  .project-swiper .swiper-slide .row {
    flex-direction: column;
  }

  .project-swiper .swiper-slide .col-md-6 {
    width: 100%;
  }

  .project-swiper .swiper-slide img {
    height: 220px !important;
  }

  .project-swiper .swiper-slide .p-4 {
    padding: 1.2rem !important;
  }

  .project-swiper .swiper-slide h3 {
    font-size: 1.4rem;
  }

  .project-swiper .swiper-slide .lead {
    font-size: 0.9rem;
  }
}

/* Badge Styling */
.badge {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Vertical Divider */
.vr {
  height: 40px;
  width: 1px;
  background-color: #dee2e6;
  margin: 0 1rem;
}

/* =========================================
   Enhanced Services Dropdown Interaction
   ========================================= */

/* Dropdown Container */
.navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 1rem;
  margin-top: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  overflow: hidden;
  min-width: 650px;
  /* Wider for better breathing room */
}

@media (min-width: 992px) {
  /* Default: hidden. Bootstrap sets display:none — we keep that. */
  .navbar .dropdown-menu {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    padding: 1.5rem 2rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Only show as a grid on hover */
  .navbar .dropdown:hover .dropdown-menu {
    display: grid !important;
  }
}

/* Dropdown Items */
.navbar .dropdown-item {
  padding: 10px 20px;
  font-weight: 500;
  color: #444;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 3px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  position: relative;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Hover State */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: #f0f7ff;
  /* Very subtle blue hint matching theme */
  color: var(--secondary-color);
  padding-left: 35px;
  /* Distinct slide-right animation */
  border-left: 3px solid var(--secondary-color);
  /* Theme color accent */
}

/* Add a subtle underline or glow if needed, but slide is clean */

/* Stats Section with Background Image */
.stats-section {
  background: url("../images/hero/280f53a68369cef33f9ecd5d274ca665.jpg")
    no-repeat center center/cover;
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Dark overlay to match the original dark theme and ensures text readability */
  z-index: 0;
}

/* Specific Folder-Based Section Title */
.folder-section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  /* Regular weight like in the image */
  text-transform: uppercase;
  color: var(--primary-color);
  border-left: 4px solid #f4c430;
  /* Yellow/Gold color similar to image */
  padding-left: 15px;
  margin-bottom: 25px;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-block;
}

/* =========================================
   Right-Side Slide Drawer Navigation
   ========================================= */
.overlay-nav {
  height: 100%;
  width: 300px;
  max-width: 85vw;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: auto;
  background-color: #1a1c1e;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

/* Backdrop */
.overlay-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.overlay-nav-backdrop.active {
  display: block;
  opacity: 1;
}

.overlay-nav.active {
  transform: translateX(0);
}

.overlay-nav .close-btn {
  position: sticky;
  top: 0;
  align-self: flex-end;
  font-size: 1.5rem;
  color: #aaa;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px 10px;
  transition: color 0.2s ease;
  z-index: 10002;
  line-height: 1;
}

.overlay-nav .close-btn:hover {
  color: #fff;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  padding: 10px 0 40px;
  flex: 1;
}

/* Gold top accent line */
.overlay-nav::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  flex-shrink: 0;
}

.overlay-nav a {
  padding: 14px 28px;
  text-decoration: none;
  font-size: 0.82rem;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    padding-left 0.25s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.overlay-nav a:hover {
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.07);
  padding-left: 34px;
}

.overlay-nav .dropdown-link-container {
  display: flex;
  flex-direction: column;
}

.overlay-nav .chevron-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: #c9a84c;
}

/* Drawer brand header */
.drawer-brand {
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.drawer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}

.drawer-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-top: 2px;
}

@media screen and (max-height: 500px) {
  .overlay-nav a {
    padding: 10px 24px;
    font-size: 0.78rem;
  }
}

/* Responsive Navbar Brand Text */
.navbar-brand span {
  font-size: 1.6rem;
  transition:
    font-size 0.3s ease,
    letter-spacing 0.3s ease;
}

@media (max-width: 1200px) {
  .navbar-brand span {
    font-size: 1.4rem;
  }
}

@media (max-width: 991px) {
  .navbar-brand span {
    font-size: 1.25rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 768px) {
  .navbar-brand span {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .navbar-brand.gap-2 {
    gap: 0.5rem !important;
  }
}

@media (max-width: 450px) {
  .navbar-brand span {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .navbar-brand img {
    height: 42px !important;
  }

  .navbar-brand.gap-2 {
    gap: 0.3rem !important;
  }
}

/* =========================================
   Global Search Component
   ========================================= */

/* The wrapper sits inside the right-hand flex group (ms-auto on mobile, order-lg-4 on desktop).
   All positioning is relative to this wrapper so the bar expands RIGHTWARD from the icon. */
/* The wrapper now sits between brand and menu on desktop. */
.nav-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 320px;
  margin: 0 auto; /* Centers it between brand and nav links */
  height: 100%;
  transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Expand the search bar on focus for interactivity */
.nav-search-wrapper:focus-within {
  width: 420px;
}

.luxury-search-group {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 8px 18px;
  transition: all 0.3s ease;
}

.luxury-search-group:focus-within, 
.luxury-search-group:hover {
  background: #fff;
  border-color: #c9a84c;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
}

.luxury-search-group i {
  color: #888;
  font-size: 1.1rem;
  order: 2; /* Icon on the right */
  cursor: pointer;
  padding: 0 0 0 5px;
  transition: color 0.3s ease;
}

.luxury-search-group:focus-within i {
  color: #c9a84c;
}

#navSearchInput {
  flex: 1;
  background: transparent;
  border: none;
  color: #1a1a1a;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0 10px 0 0;
}

#navSearchInput::placeholder {
  color: #999;
  font-family: var(--font-body);
}

/* Hide old search button if any */
.nav-search-icon {
  display: none !important;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.3s ease;
  z-index: 1050;
}

.search-results-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-result-item {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.search-result-item:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.search-no-results {
  padding: 10px 15px;
  color: #777;
  font-size: 0.9rem;
}

/* Ensure mobile search icon in overlay is still styled if needed */
.overlay-search-icon {
  color: #bbb;
  font-size: 1.1rem;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item.highlighted {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding-left: 22px;
}

.search-no-results {
  padding: 14px 18px;
  color: #888;
  font-size: 0.87rem;
  text-align: center;
}

.search-results-dropdown::-webkit-scrollbar {
  width: 5px;
}

.search-results-dropdown::-webkit-scrollbar-track {
  background: #111;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
  background: #666;
}

/* ---- Mobile (<= 991px): bar drops DOWN below the navbar, full-width.
         Uses the fixed .navbar as its containing block (navbar has position:fixed,
         so absolute children attach to it). Logo is never touched. ---- */
@media (max-width: 991px) {
  /* Make wrapper static so bar escapes to navbar */
  .nav-search-wrapper {
    position: static;
  }

  /* Position bar relative to the fixed navbar (its nearest positioned ancestor) */
  .nav-search-bar {
    position: fixed;
    /* Same stacking context as the fixed navbar */
    top: auto;
    /* Reset top */
    bottom: auto;
    left: 0;
    /* Full device width */
    right: 0;
    /* Place it immediately below the navbar height (~80px) */
    margin-top: 0;
    width: 100% !important;
    max-width: 100%;
    border-radius: 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #151515;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 1044;
    /* Position just below the navbar — dynamically set via JS */
    top: 80px;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .nav-search-bar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    overflow: visible;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease,
      visibility 0s linear 0s;
  }

  .search-input-wrapper {
    padding: 10px 16px;
    border-radius: 0;
    background: transparent;
  }

  /* Dropdown spans the full width too */
  .search-results-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    border-left: none;
    border-right: none;
    max-height: calc(100svh - 130px);
    top: 130px;
    /* navbar(~80px) + search bar (~50px) */
  }

  /* Comfortable tap targets */
  .search-result-item {
    min-height: 48px;
    padding: 13px 18px;
  }
}

/* =========================================
   Hero Global Overlay & Animated Text
   ========================================= */

/* Transparent "Image Only" overlay — Relying on text glassmorphism for contrast */
.hero-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  /* Nearly invisible */
  z-index: 2;
  pointer-events: none;
}

.hero-overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Aligned to left like reference */
  pointer-events: none;
  /* Let background interaction through to Swiper */
}

@media (max-width: 768px) {
  .hero-overlay-wrapper {
    justify-content: flex-start;
    padding-top: 100px;
  }
}

@media (max-width: 576px) {
  .hero-overlay-wrapper {
    justify-content: flex-start;
    padding-top: 80px;
  }
}

/* Enable clicks explicitly on buttons */
.hero-overlay-wrapper .hero-btns,
.hero-overlay-wrapper .hero-category-btns {
  pointer-events: auto;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  width: 100%;
  max-width: 850px;
  text-align: left;
  color: white;
  padding: 80px 0;
}

@media (max-width: 1200px) {
  .hero-content-wrapper {
    padding: 70px 0;
  }
}

@media (max-width: 992px) {
  .hero-content-wrapper {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 50px 20px;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-content-wrapper {
    padding: 40px 16px;
    max-width: 100%;
  }
}

.hero-highlight {
  color: #c9a84c; /* Theme Gold highlight */
}

.luxury-btn-category {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem !important;
  transition: all 0.3s ease;
}

.luxury-btn-category:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #c9a84c !important;
  color: #c9a84c !important;
  transform: translateY(-3px);
}

.luxury-btn {
  background-color: #c9a84c !important;
  border-color: #c9a84c !important;
  color: #fff !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.luxury-btn:hover {
  background-color: #b0913c !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.4);
}

.luxury-btn-outline {
  border: 1px solid #c9a84c !important;
  color: #c9a84c !important;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.luxury-btn-outline:hover {
  background-color: #c9a84c;
  color: #fff !important;
  transform: translateY(-2px);
}

.hero-title {
  font-family: var(--font-heading);
  color: white !important;
  /* White for "Transform Your" */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
  /* Deep high-contrast shadow */
  letter-spacing: 5px;
  animation: fadeUpIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
  background: transparent;
  padding: 0;
  display: block;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  line-height: 1.1;
  font-size: 3.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  animation: fadeUpIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
  background: transparent;
  padding: 0;
  display: block;
  backdrop-filter: none;
  margin-bottom: 2.5rem !important;
  border-radius: 0;
  line-height: 1.6;
}

/* Hero Title Highlight */
.hero-highlight {
  color: #ffd700;
  /* Bright gold for emphasis */
  font-weight: 700;
  text-shadow: 0 3px 15px rgba(255, 215, 0, 0.6);
  /* Golden glow effect */
  display: inline;
}

/* Hero Category Buttons */
.hero-category-btns {
  animation: fadeUpIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
  opacity: 0;
  transform: translateY(30px);
  margin-bottom: 2rem !important;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1200px) {
  .hero-category-btns {
    gap: 0.9rem;
    margin-bottom: 1.8rem !important;
  }
}

@media (max-width: 992px) {
  .hero-category-btns {
    gap: 0.8rem;
    margin-bottom: 1.6rem !important;
  }
}

@media (max-width: 768px) {
  .hero-category-btns {
    gap: 0.7rem;
    margin-bottom: 1.5rem !important;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero-category-btns {
    gap: 0.5rem;
    margin-bottom: 1.2rem !important;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-category-btns .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-category-btns {
    gap: 0.4rem;
    margin-bottom: 1rem !important;
  }

  .hero-category-btns .btn {
    flex: 1 1 calc(50% - 0.4rem);
  }
}

@media (max-width: 380px) {
  .hero-category-btns {
    gap: 0.35rem;
    margin-bottom: 0.8rem !important;
  }

  .hero-category-btns .btn {
    flex: 1 1 calc(50% - 0.35rem);
  }
}

.hero-category-btns .luxury-btn-category {
  border-color: #ffd700 !important;
  color: #ffd700 !important;
  background-color: transparent !important;
  border-width: 2px !important;
  transition: all 0.3s ease;
  font-weight: 600;
}

.hero-btns {
  animation: fadeUpIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1200px) {
  .hero-btns {
    gap: 1rem;
  }
}

@media (max-width: 992px) {
  .hero-btns {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .hero-btns {
    gap: 0.7rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-btns {
    gap: 0.6rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    gap: 0.5rem;
    flex-wrap: wrap;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-btns {
    gap: 0.4rem;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* Globally Unified Luxury Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.8rem 2.2rem;
  border-radius: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

@media (max-width: 576px) {
  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 1px;
  }
}

/* Primary/Dark button style (Premium Blackish) */
.btn-primary,
.btn-dark,
.luxury-btn {
  background-color: #1a1a1a !important;
  border-color: #ffd700 !important;
  color: #ffffff !important; /* Premium White text */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border-width: 2px !important;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px !important; /* Little curve */
}

.btn-primary:hover,
.btn-dark:hover,
.luxury-btn:hover {
  background-color: #ffd700 !important;
  border-color: #ffd700 !important;
  color: #1a1a1a !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

/* Hero Primary Button - Premium Blackish */
.hero-btns .btn-warning {
  background-color: #1a1a1a !important;
  border-color: #ffd700 !important;
  color: #ffd700 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border-width: 2px !important;
  border-radius: 8px !important;
}

.hero-btns .btn-warning:hover {
  background-color: #ffd700 !important;
  border-color: #ffd700 !important;
  color: #000 !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* Outline button style (Gold/White Outline) */
.btn-outline-light,
.btn-outline-dark,
.luxury-btn-outline {
  background-color: transparent !important;
  border-color: #ffd700 !important;
  /* Unified to gold outline */
  color: #ffd700 !important;
  border-width: 2px !important;
  border-radius: 8px !important; /* Little curve */
}

.btn-outline-light:hover,
.btn-outline-dark:hover,
.luxury-btn-outline:hover {
  background-color: #ffd700 !important;
  color: #1a1a1a !important;
  border-color: #ffd700 !important;
}

/* Hero Outline Buttons */
.hero-btns .btn-outline-light,
.hero-btns .luxury-btn-outline {
  border-color: #ffd700 !important;
  color: #ffd700 !important;
  background-color: rgba(26, 26, 26, 0.7) !important; /* Dark glassy background */
  border-width: 2px !important;
  border-radius: 8px !important;
}

.hero-btns .btn-outline-light:hover,
.hero-btns .luxury-btn-outline:hover {
  background-color: #ffd700 !important;
  color: #000 !important;
  border-color: #ffd700 !important;
}

/* Mobile Touch-Friendly Button States */
@media (hover: none) and (pointer: coarse) {
  /* Touch devices */
  .hero-btns .btn-warning:active,
  .hero-btns .btn-outline-light:active,
  .hero-btns .luxury-btn-outline:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-category-btns .luxury-btn-category:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  }
}

/* Focus states for keyboard navigation */
.hero-btns .btn:focus,
.hero-btns .btn:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

.hero-category-btns .btn:focus,
.hero-category-btns .btn:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* Category Buttons in Hero */
.hero-category-btns .luxury-btn-category {
  border-color: #ffd700 !important;
  color: #ffffff !important; /* White text matching solid buttons */
  background-color: rgba(26, 26, 26, 0.8) !important; /* Blackish semi-transparent */
  transition: all 0.3s ease;
  border-width: 2px !important;
  font-weight: 600;
  border-radius: 8px !important; /* Little curve */
}

.hero-category-btns .luxury-btn-category:hover {
  background-color: #ffd700 !important;
  color: #000 !important;
  border-color: #ffd700 !important;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Button Sizing - Dynamic & Fluid */
@media (max-width: 1400px) {
  .hero-btns .btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.8rem;
    min-height: 44px;
  }

  .hero-category-btns .btn {
    padding: 0.65rem 1.3rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 1200px) {
  .btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.8rem;
  }

  .hero-btns .btn {
    padding: 0.65rem 1.4rem !important;
    font-size: 0.76rem !important;
    min-height: 42px;
    letter-spacing: 1px;
  }

  .hero-category-btns .btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.72rem !important;
    min-height: 38px;
  }
}

@media (max-width: 992px) {
  .btn {
    padding: 0.7rem 1.6rem;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
  }

  .hero-btns .btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.72rem !important;
    min-height: 40px;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-category-btns .btn {
    padding: 0.55rem 1rem !important;
    font-size: 0.68rem !important;
    min-height: 36px;
    letter-spacing: 0.7px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .hero-btns .btn {
    padding: 0.55rem 1rem !important;
    font-size: 0.66rem !important;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.6px;
    border-width: 1.5px !important;
  }

  .hero-category-btns .btn {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.62rem !important;
    min-height: 36px;
    letter-spacing: 0.5px;
    border-width: 1.5px !important;
  }
}

@media (max-width: 640px) {
  .btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.65rem;
    letter-spacing: 0.8px;
  }

  .hero-btns .btn {
    padding: 0.52rem 0.95rem !important;
    font-size: 0.63rem !important;
    min-height: 39px;
    letter-spacing: 0.5px;
    border-width: 1.5px !important;
  }

  .hero-category-btns .btn {
    padding: 0.48rem 0.85rem !important;
    font-size: 0.6rem !important;
    min-height: 35px;
    letter-spacing: 0.4px;
    border-width: 1.5px !important;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.63rem;
    letter-spacing: 0.7px;
  }

  .hero-btns .btn {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.6rem !important;
    min-height: 38px;
    letter-spacing: 0.4px;
    border-width: 1.5px !important;
  }

  .hero-category-btns .btn {
    padding: 0.45rem 0.8rem !important;
    font-size: 0.58rem !important;
    min-height: 34px;
    letter-spacing: 0.3px;
    border-width: 1.5px !important;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.45rem 0.95rem;
    font-size: 0.6rem;
    letter-spacing: 0.6px;
  }

  .hero-btns .btn {
    padding: 0.48rem 0.8rem !important;
    font-size: 0.57rem !important;
    min-height: 37px;
    letter-spacing: 0.3px;
    border-width: 1.5px !important;
    flex: 1;
    min-width: calc(50% - 0.3rem);
  }

  .hero-category-btns .btn {
    padding: 0.42rem 0.75rem !important;
    font-size: 0.55rem !important;
    min-height: 33px;
    letter-spacing: 0.2px;
    border-width: 1.5px !important;
  }
}

@media (max-width: 420px) {
  .btn {
    padding: 0.42rem 0.9rem;
    font-size: 0.57rem;
    letter-spacing: 0.5px;
  }

  .hero-btns .btn {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.55rem !important;
    min-height: 36px;
    letter-spacing: 0.2px;
    border-width: 1.5px !important;
    flex: 1;
    min-width: calc(50% - 0.2rem);
  }

  .hero-category-btns .btn {
    padding: 0.4rem 0.7rem !important;
    font-size: 0.52rem !important;
    min-height: 32px;
    letter-spacing: 0px;
    border-width: 1.5px !important;
  }
}

@media (max-width: 380px) {
  .btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.55rem;
    letter-spacing: 0.4px;
  }

  .hero-btns .btn {
    padding: 0.4rem 0.7rem !important;
    font-size: 0.52rem !important;
    min-height: 35px;
    letter-spacing: 0px;
    border-width: 1.5px !important;
    flex: 1;
    min-width: calc(50% - 0.15rem);
  }

  .hero-category-btns .btn {
    padding: 0.38rem 0.65rem !important;
    font-size: 0.5rem !important;
    min-height: 31px;
    border-width: 1.5px !important;
  }
}

@media (max-width: 360px) {
  .btn {
    padding: 0.38rem 0.8rem;
    font-size: 0.53rem;
    letter-spacing: 0.3px;
  }

  .hero-btns .btn {
    padding: 0.38rem 0.65rem !important;
    font-size: 0.5rem !important;
    min-height: 34px;
    border-width: 1.5px !important;
    flex: 1;
    min-width: calc(50% - 0.15rem);
  }

  .hero-category-btns .btn {
    padding: 0.35rem 0.6rem !important;
    font-size: 0.48rem !important;
    min-height: 30px;
    border-width: 1.5px !important;
  }
}


@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments - Hero Section Fine Tuning */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.7rem !important;
    letter-spacing: 2px !important;
    padding: 0 !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
  }

  .hero-btns {
    flex-direction: row !important;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 0.8rem !important;
  }

  .hero-btns .btn {
    width: auto;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem !important;
    letter-spacing: 1.5px !important;
    padding: 0 !important;
    color: white !important;
    margin-bottom: 1rem !important;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.4;
  }

  .hero-btns {
    flex-direction: row !important;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: 0.6rem !important;
    flex-wrap: wrap;
  }

  .hero-btns .btn {
    width: auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.35rem !important;
    padding: 0 !important;
    color: white !important;
    letter-spacing: 1px !important;
  }

  .hero-subtitle {
    font-size: 0.82rem !important;
    padding: 0 !important;
  }
}

/* =========================================
   Mobile Overlay Search (inside drawer)
   ========================================= */
.overlay-search-container {
  position: relative;
  margin: 8px 20px 4px;
  height: 44px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
  z-index: 10005;
}

.overlay-search-container.active {
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.1);
}

.overlay-search-icon {
  position: absolute;
  left: 12px;
  font-size: 0.9rem;
  color: #aaa;
  transition: color 0.3s ease;
  pointer-events: none;
}

.overlay-search-container.active .overlay-search-icon {
  color: #d4af37;
}

#overlaySearchInput {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  padding-left: 36px;
  padding-right: 12px;
  font-family: var(--font-body);
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay-search-container.active #overlaySearchInput {
  opacity: 1;
  pointer-events: auto;
}

#overlaySearchInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.overlay-search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  width: 100%;
  background: #111;
  max-height: 35vh;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.3s ease;
  z-index: 10010;
}

.overlay-search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.overlay-nav .overlay-search-results {
  /* Stop the overlay-nav wrapper from bleeding grid layouts */
  display: block;
}

/* Highly specific anchor styling so it doesnt inherit the giant navigation links styling */
.overlay-content .overlay-search-results a.overlay-search-item {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}

.overlay-content .overlay-search-results a.overlay-search-item:last-child {
  border-bottom: none;
}

.overlay-search-item span.highlight {
  color: #d4af37;
  font-weight: bold;
}

.overlay-content .overlay-search-results a.overlay-search-item:hover,
.overlay-content .overlay-search-results a.overlay-search-item:active {
  color: #d4af37 !important;
  background: rgba(255, 255, 255, 0.05);
}

.overlay-search-no-results {
  padding: 15px 20px;
  color: #999;
  font-size: 1rem;
  text-transform: none;
}

/* Hide drawer search on desktop (drawer itself is mobile-only) */
@media (min-width: 992px) {
  .overlay-nav {
    display: none !important;
  }

  .overlay-nav-backdrop {
    display: none !important;
  }
}

/* =========================================
   New WhatsApp Floating Button
   ========================================= */
.whatsapp-new-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex !important;
  /* Force display in case overridden */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: wa-pulse 1.8s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
}

.whatsapp-new-float i {
  margin-top: -1px;
  /* Optical adjustment for fa-whatsapp */
}

.whatsapp-new-float:hover {
  background-color: #1faf53;
  color: #fff;
  transform: translateY(-4px);
  animation: none;
  /* Stop pulsing when user focuses on it */
}

/* Rippling pulse box-shadow */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* "Chat with us" Desktop Hover Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #fff;
  color: #111;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  transform: translateX(10px);
  pointer-events: none;
}

/* Small arrow pointing right */
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.whatsapp-new-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Exact Mobile constraints */
@media (max-width: 768px) {
  .whatsapp-new-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 16px;
    font-size: 28px;
  }

  .whatsapp-tooltip {
    display: none !important;
    /* Tooltips don't work reliably on touch */
  }
}

/* Call Floating Button */
.phone-new-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #c9a84c;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-new-float:hover {
  background-color: #b39137;
  color: #fff;
  transform: translateY(-4px);
}

.phone-new-float .whatsapp-tooltip {
  /* Reuse tooltip style but maybe rename if needed, but for now just show it */
  right: 75px;
}

.phone-new-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .phone-new-float {
    width: 52px;
    height: 52px;
    bottom: 82px;
    right: 16px;
    font-size: 24px;
  }
}


.wwa-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 8px;
}

.wwa-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 14px;
}

.wwa-divider {
  width: 55px;
  height: 3px;
  background: #c9a84c;
  margin-bottom: 22px;
}

.wwa-highlight {
  color: #c9a84c;
  font-weight: 600;
}

.wwa-para {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.wwa-para:hover {
  color: #222;
}

/* Stat pills */
.wwa-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
}

.wwa-stat {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-left: 3px solid #c9a84c;
  padding: 10px 18px;
  border-radius: 2px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  cursor: default;
}

.wwa-stat:hover {
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.2);
  transform: translateY(-3px);
}

.wwa-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #c9a84c;
  line-height: 1;
}

.wwa-stat span {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

/* Image wrapper */
.wwa-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.wwa-img-wrapper img {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
}

.wwa-img-wrapper:hover img {
  transform: scale(1.04);
}

.wwa-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  padding: 28px 24px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwa-img-wrapper:hover .wwa-img-overlay {
  opacity: 1;
}

.wwa-img-overlay p {
  color: #fff;
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
  .wwa-heading {
    font-size: 1.9rem;
  }

  .wwa-eyebrow,
  .wwa-heading,
  .wwa-divider,
  .wwa-para {
    text-align: center;
  }

  .wwa-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .wwa-stats {
    justify-content: center;
  }

  .btn.wwa-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}

/* =========================================
   Improved Footer — Luxury Theme
   ========================================= */
.footer {
  background: #111;
  color: #ccc;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle gold top border */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

/* Brand column */
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* Column headings */
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #c9a84c;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #888;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-links a::before {
  content: "›";
  color: #c9a84c;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #c9a84c;
  padding-left: 4px;
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

/* Contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: #888;
}

.footer-contact-item i {
  color: #c9a84c;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #c9a84c;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #888 !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.footer-social-icon:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
  padding-left: 0 !important;
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 40px 0 0;
}

/* Bottom bar */
.footer-bottom {
  background: #0a0a0a;
  padding: 16px 0;
  margin-top: 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.5px;
}

.footer-bottom span {
  color: #c9a84c;
}

/* Mobile & Tablet */
@media (max-width: 991px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col-title {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  
  .footer-contact-item i {
    margin-top: 0;
    margin-bottom: 2px;
    font-size: 1.1rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-brand-name,
  .footer-tagline,
  .footer-desc {
    text-align: center;
  }
}

/* Contact map responsive */
@media (max-width: 768px) {
  .container-fluid iframe {
    height: 280px;
  }
}

/* Gallery images responsive */
@media (max-width: 576px) {
  .gallery-img {
    height: 150px !important;
  }

  .card-img-top {
    height: 180px !important;
  }
}

/* Project Card Hover Effects */
.project-card-clickable {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.project-card-clickable:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.project-card-clickable .stretched-link::after {
    z-index: 10;
}

/* Service Card Image — responsive height */
.service-card-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .service-card-img {
    height: 140px;
  }

  .card-custom .card-body {
    padding: 0.75rem;
  }

  .card-custom .card-title {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .card-custom .card-text {
    font-size: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Disable hover lift on touch to avoid layout jumps */
  .card-custom:hover {
    transform: none;
  }
}

