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

body {
  font-family: 'Poppins', sans-serif;
  background: #faf7f2;
  color: #2b2b2b;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

nav a {
/*  margin-left: 22px;
*/  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav .cta {
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin: 18px 0 28px;
  max-width: 520px;
  color: #0B1FA6;
}
@media (max-width: 768px) {
  .hero-bg img {
    object-position: center top;
  }
}

/* BLOBS */
.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.25;
}

.blob1 {
  background: radial-gradient(circle, #ffb347, #ff7a00);
  top: -120px;
  left: -120px;
}

.blob2 {
  background: radial-gradient(circle, #7CFFB2, #25D366);
  bottom: -150px;
  right: -150px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s ease;
}

.fancy-btn {
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
}

.fancy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,0,0.4);
}

.whatsapp {
  background: linear-gradient(135deg, #25D366, #7CFFB2);
  color: #fff;
}

/* ================= SECTION TITLES ================= */
.section-title {
  font-size: 36px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  border-radius: 3px;
}

.section-text {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
  color: #555;
  line-height: 1.7;
}

/* ================= BACKGROUND VARIANTS ================= */
.gradient-section {
  background: linear-gradient(135deg, #fff6ea, #ffffff);
}

.gradient-section-alt {
  background: linear-gradient(135deg, #eef7f2, #ffffff);
}

.soft-section {
  background: #ffffff;
}

/* ================= ABOUT ================= */
.about-section {
  background: linear-gradient(135deg, #ffffff, #fff8ee);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 18px;
  color: #555;
  line-height: 1.8;
}

.about-image img {
  border-radius: 22px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

/* ================= IMAGE GRID ================= */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.img-card {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

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

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

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.overlay h3 {
  font-size: 22px;
}

.overlay span {
  font-size: 14px;
  opacity: 0.9;
}

/* CARD BUTTON */
.card-btn {
  margin-top: 14px;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.img-card:hover .card-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CONTACT ================= */
.contact-section {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info-box p {
  margin-bottom: 12px;
  opacity: 0.9;
}

/* GLASS FORM */
.glass-form {
  background: rgb(8 23 59);
  backdrop-filter: blur(18px);
  padding: 42px;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.glass-form h3 {
  margin-bottom: 20px;
}

.glass-form input,
.glass-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
}

.glass-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 760px;
  margin: 60px auto;
  padding: 34px;
  border-radius: 20px;
  position: relative;
}

.close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

/* SWIPER */
.swiper {
  width: 100%;
  height: 320px;
  margin: 25px 0;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */
footer {
  background: #111827;
  color: #aaa;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  nav a {
    margin-left: 14px;
  }
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Slightly bigger logo on desktop */
@media (min-width: 1024px) {
  .logo img {
    height: 56px;
  }
}

/* Smaller logo on mobile */
@media (max-width: 600px) {
  .logo img {
    height: 42px;
  }
}
.logo img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);
  opacity: 0.95;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ===== FORM SUCCESS ANIMATION ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg,#25D366,#7CFFB2);
  color: #fff;
  animation: fadeUp .6s ease forwards;
}

.form-success .checkmark {
  font-size: 50px;
  margin-bottom: 10px;
}

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


/* ===== STICKY HELP CTA ===== */
.sticky-help {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg,#ff7a00,#ffb347);
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(255,122,0,.4);
  z-index: 1500;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,122,0,.6); }
  70% { box-shadow: 0 0 0 18px rgba(255,122,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); }
}

/* ===== FORM FIELD FOCUS ANIMATION ===== */
.glass-form input,
.glass-form textarea {
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.9);
  outline: none;
}

/* On focus */
.glass-form input:focus,
.glass-form textarea:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,122,0,0.25);
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #ff7a00, #ffb347);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Placeholder animation */
.glass-form input::placeholder,
.glass-form textarea::placeholder {
  transition: opacity 0.3s ease;
}

.glass-form input:focus::placeholder,
.glass-form textarea:focus::placeholder {
  opacity: 0.4;
}
/* ================= MOBILE NAVBAR (FINAL FIX) ================= */
.nav {
  position: relative;
  z-index: 3001;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 4000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    background: linear-gradient(135deg,#fff6ea,#ffffff);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateY(-120%);
    transition: transform 0.45s ease;
    z-index: 3000;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li a {
    font-size: 20px;
    color: #222;
  }

  .nav-cta {
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg,#ff7a00,#ffb347);
    color: #fff !important;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.no-scroll {
  overflow: hidden;
}
.img-card {
  opacity: 1;
}
/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
  color: #ff7a00;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,#ff7a00,#ffb347);
  border-radius: 3px;
}
/* Navbar scrolled state */
header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg,#ff7a00,#ffb347);
  z-index: 2000;
}
/* =========================================================
   NAVBAR MOBILE PATCH (SAFE – NON DESTRUCTIVE)
   ========================================================= */

/* Ensure hamburger is visible on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    z-index: 5000;
  }
}

/* Hide nav links by default on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: linear-gradient(135deg,#fff6ea,#ffffff);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 3000;
  }

  /* Show only when active */
  .nav-links.active {
    display: flex !important;
  }

  .nav-links li a {
    font-size: 20px;
    color: #222;
  }
}
/* =========================================================
   FINAL MOBILE NAV OVERLAY FIX (ABSOLUTE SAFE)
========================================================= */

@media (max-width: 768px) {

  /* Ensure header stays above banner */
  header {
    z-index: 5000;
  }

  /* Hamburger always clickable */
  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 6000;
  }

  /* FORCE mobile menu to be full screen overlay */
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 72px) !important;
    background: linear-gradient(135deg,#fff6ea,#ffffff) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 32px !important;
    z-index: 5500 !important;
  }

  /* Show menu ONLY when active */
  .nav-links.active {
    display: flex !important;
  }

  /* Prevent any bleed into hero/banner */
  .hero,
  .section {
    position: relative;
    z-index: 1;
  }
}

/* =========================================================
   MISQAT LOGO COLOR OVERRIDE (FINAL & ACCURATE)
   ========================================================= */

:root {
  --brand-primary: #0B1FA6;  /* Logo Blue */
  --brand-accent: #7A0C0C;   /* Logo Red */
  --brand-bg: #faf7f2;
  --brand-dark: #111827;
  --brand-success: #25D366;
  --header-height: 88px; /* adjust if header height changes */

}

/* GLOBAL BACKGROUND */
body {
  background: var(--brand-bg);
}

/* HERO & DARK SECTIONS */
.hero,
.contact-section {
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    #050f5c
  ) !important;
}

/* BUTTONS & CTAs */
.fancy-btn,
.nav-cta,
.card-btn,
.sticky-help {
  background: linear-gradient(
    135deg,
    var(--brand-accent),
    #a31717
  ) !important;
}

/* BUTTON HOVER */
.fancy-btn:hover,
.card-btn:hover {
  box-shadow: 0 10px 25px rgba(122,12,12,0.45) !important;
}

/* SECTION UNDERLINE */
.section-title::after {
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-accent)
  ) !important;
}

/* ACTIVE NAV LINK */
.nav-links a.active {
  color: var(--brand-primary) !important;
}

.nav-links a.active::after {
  background: var(--brand-accent) !important;
}

/* SCROLL PROGRESS BAR */
#scrollProgress {
  background: linear-gradient(
    90deg,
    var(--brand-accent),
    var(--brand-primary)
  ) !important;
}

/* FORM FOCUS */
.glass-form input:focus,
.glass-form textarea:focus {
  box-shadow: 0 12px 30px rgba(11,31,166,0.35) !important;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(
      135deg,
      var(--brand-primary),
      var(--brand-accent)
    ) !important;
}

/* BLOBS (SUBTLE BRAND TINT) */
.blob1 {
  background: radial-gradient(
    circle,
    rgba(122,12,12,0.35),
    rgba(122,12,12,0.15)
  ) !important;
}

/* WHATSAPP ONLY */
.whatsapp,
.form-success {
  background: linear-gradient(
    135deg,
    var(--brand-success),
    #7CFFB2
  ) !important;
}
/* =========================================================
   FIX: GET QUOTE BUTTON (NAV CTA) – RESTORE STYLING
========================================================= */

.nav-cta {
  display: inline-block !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
  color: #fff !important;
  background: linear-gradient(
    135deg,
    var(--brand-accent),
    #a31717
  ) !important;
  box-shadow: 0 8px 20px rgba(122,12,12,0.35);
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(122,12,12,0.45);
}

/* Mobile menu version */
@media (max-width: 768px) {
  .nav-links .nav-cta {
    padding: 14px 34px !important;
    font-size: 18px !important;
  }
}

/* ================= HERO IMAGE FINAL FIX ================= */

.hero-banner {
  position: relative;
  min-height: 100vh;
  padding-top: 110px; /* HARD SAFE ZONE for fixed header */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Image container */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(40px); /* PUSH IMAGE DOWN */
}

/* Image itself */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Soft premium overlay (NOT dark) */
.hero-soft-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.65) 40%,
    rgba(255,255,255,0.15) 65%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Headline */
.hero-title {
  font-size: 48px;
  line-height: 1.2;
  color: #0B1FA6;
}

.hero-title span {
  color: #7A0C0C;
}

/* Buttons spacing */
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .hero-banner {
    padding-top: 130px;
  }

  .hero-bg {
    transform: translateY(60px); /* extra push on mobile */
  }

  .hero-bg img {
    object-position: center top;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-soft-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.7) 40%,
      rgba(255,255,255,0.3) 70%,
      rgba(255,255,255,0) 100%
    );
  }
}

/* ================= SCROLL DOWN INDICATOR ================= */
.scroll-down-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  z-index: 3;
}

.scroll-down-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

/* ================= SCROLL TO TOP ================= */
/* ================= SCROLL TO TOP (SVG + RING) ================= */
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg,var(--brand-accent),#a31717);
  box-shadow: 0 12px 28px rgba(122,12,12,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1600;
}

#scrollTopBtn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
}

/* Progress ring */
.progress-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transition: stroke-dashoffset 0.15s linear;
}



/* ================= SCROLL DOWN INDICATOR (PREMIUM) ================= */
.scroll-down-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 20px;
  z-index: 3;
  animation: pulseBrand 2.5s infinite;
}

.scroll-down-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDown 1.6s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Brand pulse (MISQAT red) */
@keyframes pulseBrand {
  0% { box-shadow: 0 0 0 0 rgba(122,12,12,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(122,12,12,0); }
  100% { box-shadow: 0 0 0 0 rgba(122,12,12,0); }
}

/* ===== FORCE SCROLL TO TOP VISIBILITY ===== */
#scrollTopBtn {
  z-index: 9999 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
/* ================= BROCHURE DOWNLOAD BUTTON ================= */

.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #8b1e2d, #c9a24d);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(201,162,77,0.35);
}

/* Icon circle */
.brochure-btn .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: floatDown 2.2s infinite ease-in-out;
}

/* Text */
.brochure-btn .text {
  position: relative;
  z-index: 2;
}

/* Hover shine effect */
.brochure-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: all 0.6s ease;
}

.brochure-btn:hover::before {
  left: 120%;
}

/* Hover lift */
.brochure-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(201,162,77,0.5);
}

/* Download animation */
@keyframes floatDown {
  0%   { transform: translateY(0); opacity: 0.8; }
  50%  { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.8; }
}
.brochure-btn.clicked {
  transform: scale(0.96);
}
/* ================= ENGAGEMENT SECTION ================= */

.engagement-section {
  background: linear-gradient(135deg, #fff6ef, #ffffff);
  position: relative;
}

.engagement-section .center {
  text-align: center;
  display: block;
  margin: auto;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

/* Box */
.engage-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Soft gold hover glow */
.engage-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201,162,77,0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.engage-box:hover::after {
  opacity: 1;
}

/* Icon */
.engage-box .icon {
  font-size: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b1e2d, #c9a24d);
  color: #fff;
  box-shadow: 0 12px 28px rgba(201,162,77,0.4);
}

/* Heading */
.engage-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

/* Text */
.engage-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Hover motion */
.engage-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.15);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .engage-box {
    padding: 34px 24px;
  }
}
#heroBanner {
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
/* ================= HERO RIPPLE EFFECT ================= */
.hero-bg {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}

.hero-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 600ms linear;
  background: rgba(201, 162, 77, 0.35); /* gold tone */
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* CTA Hotspot */
.hero-cta-hotspot {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 70px;
  cursor: pointer;
}

/* Scroll-down arrow */
.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  animation: bounce 1.8s infinite;
}

.scroll-down.clicked {
  transform: translateX(-50%) scale(0.9);
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}
/* WhatsApp Icon in Navbar */

.whatsapp-nav {
    position: relative;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulse 1.8s infinite;
    z-index: 999;
}

/* Ripple Effect */
.whatsapp-nav::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: ripple 1.8s infinite;
    z-index: -1;
}

/* Animations */
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 768px) {
    .whatsapp-nav {
        display:flex;
        position: absolute;
        right: 75px;
        top: -15px;
    }
}
.instagram-barcode {
    text-align: center;
    margin-top: 20px;
}

.instagram-barcode p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.instagram-barcode img {
    width: 120px;
    height: auto;
    transition: 0.3s ease;
}

.instagram-barcode img:hover {
    transform: scale(1.05);
}
/* ===== Luxury Instagram QR ===== */

.luxury-qr {
    margin-top: 35px;
}

.insta-heading {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #d4af37; /* Gold tone */
}

.insta-card {
    display: inline-block;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(145deg, #111, #1c1c1c);
    border: 1px solid rgba(212,175,55,0.4);
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.insta-card img {
    width: 300px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.insta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scan-text {
    font-size: 13px;
    color: #ccc;
    letter-spacing: 1px;
}

.handle {
    font-size: 14px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hover Premium Glow */
.insta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212,175,55,0.3);
    border-color: #d4af37;
}

.quote-section {
    padding: 120px 0 80px;
}

.quote-header {
    text-align: center;
    max-width: 650px;
    margin: auto;
    margin-bottom: 50px;
}

.quote-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.quote-header p {
    font-size: 16px;
}

.quote-form-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 45px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 20px;
}

.glass-form textarea {
    width: 100%;
    height: 130px;
    margin-bottom: 20px;
}
.contact-footer {
    padding: 90px 0;
    background: #081247;
}

.contact-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-details h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 18px;
}

.contact-details p {
    color: #ccc;
    margin-bottom: 20px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.contact-details li {
    color: #e6e6e6;
    margin-bottom: 10px;
}

/* Instagram Luxury Card */

.instagram-luxury {
    text-align: center;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(145deg,#111,#1c1c1c);
    border: 1px solid rgba(212,175,55,0.5);
}

.instagram-luxury img {
    width: 140px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.instagram-luxury span {
    display: block;
    color: #d4af37;
    font-size: 14px;
}
@media(max-width:768px){

.form-grid {
    grid-template-columns: 1fr;
}

.contact-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
}

}
.contact-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 60%);
}
