:root {
  --primary: #e03131;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --text-dark: #2b2b2b;
}

/* Reset */
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== HEADER LOGO ===== */
.site-logo {
  height: 55px;          /* perfect for desktop */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Slight hover polish */
.site-logo:hover {
  transform: scale(1.03);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .site-logo {
    height: 36px;
  }
}


/* ===== NAVBAR ===== */
.glass-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  margin: 15px;
  padding: 6px 25px;

  /* ✅ Premium floating shadow */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


.navbar-brand {
  font-weight: 600;
}

.nav-link {
  font-weight: 500;
  color: #333;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 5px;
}

/* ===== MOBILE OFFCANVAS ===== */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(135deg, #111111, #000000);
  z-index: 10000;
  padding: 30px 25px;
  transition: right 0.45s ease;
  display: flex;
  flex-direction: column;
}

/* SHOW */
.mobile-offcanvas.show {
  right: 0;
}

/* HEADER */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.offcanvas-logo {
  height: 36px;
  object-fit: contain;
}

.offcanvas-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
}

/* NAV */
.offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.offcanvas-nav li {
  margin-bottom: 22px;
}

.offcanvas-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offcanvas-nav a:hover,
.offcanvas-nav a.active {
  color: #ffffff;
  padding-left: 6px;
}

/* CTA */
.offcanvas-cta {
  display: block;
  text-align: center;
  background: #e03131;
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  box-shadow: 0 15px 30px rgba(224,49,49,0.45);
}

/* BACKDROP */
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: all 0.35s ease;
}

.offcanvas-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* MOBILE ONLY */
@media (min-width: 992px) {
  .mobile-offcanvas,
  .offcanvas-backdrop {
    display: none;
  }
}

/* ===== HERO ===== */
.hero-section {
  position: relative;

  /* ⬆ Increase visual height */
  min-height: 100vh;

  background: url("images/banner-03.jpg")
    center center / cover no-repeat;

  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */

  padding-top: 140px;       /* navbar breathing space */
  padding-bottom: 260px;    /* wave space */
}



.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}


/* ===== GLASS CARD ===== */
.glass-card {
  max-width: 900px;
  background: var(--glass-bg);
  border-radius: 30px;
  padding: 60px 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.glass-card.show {
  opacity: 1;
  transform: translateY(0);
}

.premium-badge {
  background: rgba(224, 49, 49, 0.15);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== TEXT ===== */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 15px 0;
}

.hero-title span {
  font-style: italic;
}

.hero-text {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 1.05rem;
  color: #555;
}

/* ===== BUTTONS ===== */
.hero-actions .btn {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===== WAVE ===== */
.wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: white;
  clip-path: ellipse(52% 100% at 50% 100%);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .glass-card {
    padding: 40px 25px;
  }

  .glass-nav {
    border-radius: 20px;
  }
}


/* ===== MISSION VISION VALUES ===== */
.mv-section {
  padding: 100px 0;
  background: #fff;
}

.mv-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.mv-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px 0 15px;
  color: #1f2937;
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

/* ===== ICON BOX ===== */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* Colors */
.icon-box.red {
  background: rgba(224, 49, 49, 0.12);
  color: #e03131;
}

.icon-box.blue {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.icon-box.green {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .mv-section {
    padding: 70px 0;
  }
}


/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 60px 0;
  background: #ffffff;
}

/* LEFT VISUAL */
.about-visual {
  position: relative;
  background: linear-gradient(135deg, #a7d7bc, #8fc9aa);
  border-radius: 15px;
  padding: 0px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #e8f1ec;
  padding: 25px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge h3 {
  font-size: 2.2rem;
  color: #e03131;
  margin-bottom: 5px;
  font-weight: 700;
}

.experience-badge p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/* RIGHT CONTENT */
.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 25px;
  color: #111827;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

/* STATS */
.stats {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.stat-item h3 {
  font-size: 2rem;
  color: #e03131;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 0.95rem;
  color: #6b7280;
}

.divider {
  width: 1px;
  height: 50px;
  background: #d1d5db;
  margin: 0 35px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-visual {
    padding: 30px;
  }

  .stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}


/* ===== TRUSTED SECTION ===== */
.trusted-section {
  padding: 60px 0;
  background: #fff;
}

.trusted-title h6 {
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: #414243;
  margin-bottom: 45px;
}

/* LOGO ITEM */
.trusted-carousel .logo-item {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-carousel .logo-item img {
  max-width: 120px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.trusted-carousel .logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* remove dots/nav */
.owl-dots,
.owl-nav {
  display: none;
}

/* ===== PREMIUM SPACES ===== */
.spaces-section {
  padding: 60px 0;
  background: #fbfbfb;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #111827;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 8px;
}

/* CARD */
.space-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
}

.space-card.large {
  height: 360px;
}

/* IMAGE */
.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* OVERLAY */
.space-overlay {
  position: absolute;
  inset: 0;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
  color: #fff;
  transition: all 0.6s ease;
}

.space-overlay h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.space-overlay p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 90%;
}

/* CTA */
.space-link {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* HOVER EFFECTS */
.space-card:hover img {
  transform: scale(1.08);
}

.space-card:hover .space-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.05)
  );
}

.space-card:hover .space-link {
  transform: translateY(0);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .space-card,
  .space-card.large {
    height: 300px;
  }

  .space-overlay {
    padding: 25px;
  }
}


/* ===== AMENITIES SECTION ===== */
.amenities-section {
  padding: 120px 0;
  background-color: #0a6378;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px
  );
  background-size: 6px 6px;
  color: #ffffff;
  overflow: hidden;
}

/* LEFT CONTENT */
.amenities-content {
  max-width: 520px;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ff4d4f;
  display: inline-block;
  margin-bottom: 15px;
}

.amenities-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 25px;
}

.amenities-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

/* LIST */
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.amenities-list li:hover {
  transform: translateX(6px);
}

/* ICON */
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* RIGHT IMAGE */
.amenities-image-wrapper {
  position: relative;
  /* max-width: 460px; */
  margin-left: auto;
}

.amenities-image-wrapper img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

/* DECORATIVE CIRCLE */
.decor-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255, 77, 79, 0.35);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  z-index: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .amenities-section {
    padding: 90px 0;
  }

  .amenities-image-wrapper {
    margin: 50px auto 0;
  }
}


/* ===== EVENTS SECTION ===== */
.events-section {
  padding: 60px 0;
  background: #fff;
}

.events-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #111827;
}

.events-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 6px;
}

/* EVENT CARD */
.event-card {
  position: relative;
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  background: #000;
  display: block;
}

/* IMAGE */
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, filter 0.6s ease;
  filter: saturate(0.9);
}

/* DATE BADGE */
.event-date {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.85);
  color: #111827;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 3;
}

/* OVERLAY */
.event-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0)
  );
  transition: all 0.6s ease;
}

.event-overlay h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  transform: translateY(12px);
  transition: transform 0.5s ease;
}

/* HOVER EFFECTS */
.event-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.event-card:hover .event-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.05)
  );
}

.event-card:hover .event-overlay h4 {
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .events-section {
    padding: 90px 0;
  }

  .event-card {
    height: 300px;
  }
}


/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 60px 0;
  background: #f9fafb;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #e03131;
  display: inline-block;
  margin-bottom: 10px;
}

.testimonials-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #111827;
}

/* CARD */
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px;
  height: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  margin: 15px;
}

/* STARS */
.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* TEXT */
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 30px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-user img {
  width: 53px!important;
  height: 53px!important;
  border-radius: 50%;
  border: 2px solid #e03131;
  object-fit: cover;
  flex-shrink: 0;
}


.testimonial-user h6 {
  margin: 0;
  font-weight: 600;
}

.testimonial-user span {
  font-size: 0.75rem;
  color: #6b7280;
  letter-spacing: 1px;
}

/* QUOTE ICON */
.quote {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 5rem;
  color: rgba(224, 49, 49, 0.1);
  font-family: serif;
}

/* REMOVE DOTS */
.owl-dots,
.owl-nav {
  display: block;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
  background: #f9fafb;
}

.contact-wrapper {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

/* LEFT FORM */
.contact-form {
  padding: 60px;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #e03131;
  display: inline-block;
  margin-bottom: 12px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 35px;
}

.contact-form label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.contact-form .form-control {
  background: #f9fafb;
  border: none;
  border-radius: 50px;
  padding: 14px 18px;
  font-size: 0.9rem;
}

.contact-form textarea.form-control {
  border-radius: 18px;
  resize: none;
}

.submit-btn {
  background: #e03131;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(224,49,49,0.35);
}

/* RIGHT INFO */
.contact-info {
  background: #0a6378;
  background-image: linear-gradient(
    rgba(255,255,255,0.05) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
  color: #fff;
  padding: 70px 60px;
  height: 100%;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
}

/* INFO LIST */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.info-list .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.info-list p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #e03131;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-form,
  .contact-info {
    padding: 40px 30px;
  }
}

/* ===== DARK FOOTER ===== */
.dark-footer {
  padding: 60px 0 30px;
  background:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(135deg, #111, #000);
  background-size: 10px 10px, cover;
  color: #e5e7eb;
}

/* BRAND */
.dark-footer .footer-brand h4 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #ffffff;
}

.dark-footer .footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 340px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.35s ease;
}

.footer-social a:hover {
  background: #e03131;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(224,49,49,0.4);
}

/* TITLES */
.footer-title {
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* CONTACT */
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.footer-contact i {
  color: #ff4d4f;
  font-size: 15px;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top:   30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .dark-footer {
    padding: 80px 0 25px;
  }
}


/* ===== GO TO TOP BUTTON ===== */
#goTopBtn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #e03131;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(224,49,49,0.45);
}

/* Show button */
#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover effect */
#goTopBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(224,49,49,0.6);
}

/* Mobile tweak */
@media (max-width: 768px) {
  #goTopBtn {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
}



/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  min-height:100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  background: #0b133f;
}

/* LEFT PANEL */
.about-hero-content {
  padding: 180px 90px 160px;
  color: #ffffff;
  /* background: linear-gradient(180deg, #0a6378 0%, #0a6378 70%, #054b5c 100%); */
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 55%), linear-gradient(135deg, #050816, #030615);
  z-index: 2;
}

/* BREADCRUMB */
.breadcrumb-box {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 35px;
}

.breadcrumb-box .active {
  color: #d42a23;
}

/* TITLE */
.about-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 25px;
}

.about-title span {
  color: #d42a23;
  font-style: italic;
}

/* DESCRIPTION */
.about-desc {
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* RIGHT IMAGE */
.about-hero-image {
  position: relative;
  height: 100%;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY (subtle) */
.about-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}

/* ===== SAME WAVE AS HOME HERO ===== */
.hero-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  clip-path: ellipse(52% 100% at 50% 100%);
  z-index: 3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-content {
    padding: 140px 35px 120px;
  }

  .about-hero-image {
    height: 380px;
  }

  .hero-wave {
    height: 110px;
  }
}



/* ===== MILESTONES ===== */
.milestones-section {
  padding: 60px 0;
  background: #fbfdff;
}

/* HEADER */
.milestones-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #111827;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #e03131;
  display: inline-block;
  margin-bottom: 12px;
}

/* TIMELINE WRAPPER */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #e5e7eb;
  transform: translateX(-50%);
}

/* ITEM */
.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 15px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* LEFT / RIGHT */
.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

/* CONTENT */
.timeline-item .content {
  width: 45%;
}

.timeline-item.left .content {
  text-align: right;
  padding-right: 20px;
}

.timeline-item.right .content {
  text-align: left;
  padding-left: 20px;
}

/* YEAR */
.year {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #0a6378;
  display: block;
  margin-bottom: 5px;
}

/* TITLE */
.timeline-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

/* TEXT */
.timeline-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  /* max-width: 300px; */
}

/* DOT */
.dot {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #d42a23;
  border-radius: 50%;
  transform: translateX(-50%);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    justify-content: flex-start;
  }

  .timeline-item .content {
    width: 100%;
    padding-left: 40px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .dot {
    left: 8px;
  }
}
/* ===== DARK MISSION VISION ===== */
.mv-dark-section {
  padding: 140px 0;
  background: radial-gradient(
      rgba(255,255,255,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(180deg, #0b1226, #060b1a);
  background-size: 14px 14px, cover;
}

/* CARD */
.mv-dark-card {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  padding: 55px 45px 45px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mv-dark-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 60px 120px rgba(0,0,0,0.6);
}

/* ICON */
.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 22px;
}

.mv-icon.red {
  background: rgba(224,49,49,0.18);
  color: #ff4d4f;
}

.mv-icon.blue {
  background: rgba(59,130,246,0.18);
  color: #60a5fa;
}

/* TITLE */
.mv-dark-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 18px;
}

/* TEXT */
.mv-dark-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

/* MOBILE */
@media (max-width: 768px) {
  .mv-dark-section {
    padding: 90px 0;
  }

  .mv-dark-card {
    padding: 45px 30px;
  }
}
/* ===== LEADERSHIP PHILOSOPHY ===== */
.leadership-section {
  padding: 60px 0;
  background: #ffffff;
}

/* Eyebrow */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: #e03131;
  display: inline-block;
  margin-bottom: 12px;
}

/* Title */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  color: #111827;
  margin-bottom: 10px;
}

/* Card */
.leader-card {
  padding: 25px 10px;
  max-width: 320px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
}

/* Icon Box */
.leader-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 26px;
}

/* Icon Colors */
.leader-icon.beige {
  background: #f3eadb;
  color: #c8a75a;
}

.leader-icon.red {
  background: #f7dada;
  color: #e03131;
}

.leader-icon.blue {
  background: #e3edff;
  color: #3b82f6;
}

/* Card Title */
.leader-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

/* Card Text */
.leader-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .leadership-section {
    padding: 90px 0;
  }
}
/* ===== OFFICE SPACE SECTION ===== */
.office-space-section {
  padding: 60px 0;
  background: #ffffff;
}

/* IMAGE WRAPPER */
.office-space-image-wrapper {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

.office-space-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* BADGE */
.office-space-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
}

.office-space-badge i {
  color: #ae2a25;
}

/* CONTENT */
.office-space-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  line-height: 1.2;
  color: #111827;
  margin-bottom: 25px;
}

/* GOLD HIGHLIGHT */
.office-space-content .highlight {
  color: #ae2a25;
  font-style: italic;
  position: relative;
  display: inline-block;
}

.office-space-content .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #ae2a25;
  border-radius: 3px;
}

/* TEXT */
.office-space-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  max-width: 520px;
  margin-bottom: 30px;
}

/* QUOTE */
.office-space-content blockquote {
  position: relative;
  padding-left: 22px;
  font-style: italic;
  font-size: 0.95rem;
  color: #6b7280;
  border-left: 3px solid #ae2a25;
  max-width: 520px;
}

/* MOBILE */
@media (max-width: 768px) {
  .office-space-section {
    padding: 90px 0;
  }

  .office-space-content h2 {
    font-size: 2.1rem;
  }
}

/* ===== OFFICE BENEFITS ===== */
.office-benefits-section {
  padding: 60px 0;
  background: #f9fafb;
}

.office-benefits-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  color: #111827;
}

.office-benefits-line {
  display: inline-block;
  width: 70px;
  height: 3px;
  background: #ae2a25;
  margin-top: 12px;
  border-radius: 2px;
}

/* Wrapper */
.office-benefits-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Item */
.office-benefit {
  margin-bottom: 22px;
}

/* Header */
.office-benefit-header {
  background: #9ca3af;
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* Left */
.benefit-left {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  color: #111827;
}

.benefit-left i {
  font-size: 18px;
  color: #6b7280;
}

/* Plus */
.benefit-toggle {
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  transition: transform 0.4s ease;
}

/* Body */
.office-benefit-body {
  max-height: 0;
  overflow: hidden;
  background: #111827;
  color: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 0 28px;
  transition: max-height 0.5s ease, padding 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Active */
.office-benefit.active .office-benefit-header {
  background: #111827;
}

.office-benefit.active .benefit-left {
  color: #ffffff;
}

.office-benefit.active .benefit-left i {
  color: #c8a75a;
}

.office-benefit.active .benefit-toggle {
  transform: rotate(45deg);
  color: #c8a75a;
}

.office-benefit.active .office-benefit-body {
  max-height: 160px;
  padding: 18px 28px 24px;
  margin-top: 5px;
}

/* Hover polish */
.office-benefit-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .office-benefits-section {
    padding: 90px 0;
  }
}
/* ===== IT INFRASTRUCTURE SECTION ===== */
.it-infra-section {
  padding: 60px 0;
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.05),
      transparent 55%
    ),
    linear-gradient(135deg, #050816, #030615);
  color: #ffffff;
}

/* HEADER */
.it-infra-header {
  max-width: 760px;
  margin: 0 auto 80px;
}

.it-infra-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: #ae2a25;
  margin-bottom: 16px;
}

.it-infra-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: #ffffff;
}

/* CARDS */
.it-infra-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 22px;
  padding: 55px 35px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

/* Glow border */
.it-infra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(174, 42, 37, 0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* ICON */
.it-icon {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 30px;
  color: #ae2a25;
  transition: all 0.5s ease;
}

/* TEXT */
.it-infra-card h4 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.it-infra-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* HOVER EFFECTS */
.it-infra-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.it-infra-card:hover::before {
  opacity: 1;
}

.it-infra-card:hover .it-icon {
  background: rgba(200, 167, 90, 0.18);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 35px rgba(200, 167, 90, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .it-infra-section {
    padding: 90px 0;
  }

  .it-infra-header {
    margin-bottom: 50px;
  }
}
/* ===== WORKSPACE SOLUTIONS ===== */
.workspace-solutions-section {
  padding: 60px 0;
  background: #ffffff;
}

/* HEADER */
.workspace-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.workspace-header h2 span {
  color: #ae2a25;
  font-style: italic;
}

.workspace-header p {
  color: #64748b;
  margin-bottom: 60px;
}

/* GRID */
.workspace-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 35px;
}

/* CARD BASE */
.workspace-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}

.workspace-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* LARGE CARD */
.workspace-card-large {
  min-height: 540px;
}

/* RIGHT COLUMN */
.workspace-right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.workspace-right .workspace-card {
  height: 255px;
}

.workspace-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

/* OVERLAY */
.workspace-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0)
  );
  color: #ffffff;
  transition: background 0.5s ease;
}

.workspace-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.workspace-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 90%;
}

.workspace-link {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* HOVER EFFECTS */
.workspace-card:hover img {
  transform: scale(1.08);
}

.workspace-card:hover .workspace-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.05)
  );
}

.workspace-card:hover .workspace-link {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 991px) {
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-card-large {
    min-height: 420px;
  }

  .workspace-right .workspace-card {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .workspace-bottom {
    grid-template-columns: 1fr;
  }
}
.events-showcase-section {
  padding: 60px 0;
  
}

/* IMAGE WRAPPER */
.event-image-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.event-image-carousel img {
  width: 100%;
  /* height: 420px; */
  object-fit: cover;
}

/* TEXT */
.event-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d42a23;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
}

.event-title span {
  color: #d42a23;
  font-style: italic;
}

/* RIGHT PANEL */
.recent-events-card {
  background: linear-gradient(135deg,#0b1225,#020617);
  border-radius: 32px;
  padding: 40px 30px;
  color: #fff;
  height: 100%;
}

.recent-events-card h4 {
  font-family: 'Playfair Display', serif;
}

.recent-event-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
  transition: transform .3s ease;
}

.recent-event-item:hover {
  transform: translateX(6px);
}

.recent-event-item img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.recent-event-item h6 {
  margin: 0;
  font-size: 0.95rem;
}

.recent-event-item p {
  font-size: 0.8rem;
  opacity: .7;
  margin: 0;
}

/* BUTTON */
.view-events-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #d42a23;
  text-decoration: none;
  transition: all .3s ease;
}

.view-events-btn:hover {
  background: #d42a23;
  color: #000;
}


/* DOTS */
.event-image-wrapper .owl-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.event-image-wrapper .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.event-image-wrapper .owl-dot.active span {
  background: #d42a23;
  width: 22px;
  border-radius: 20px;
}
/* NAV WRAPPER */
.event-image-wrapper .owl-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ARROWS */
.owl-arrow {
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

/* POSITIONS */
.owl-arrow.left {
  left: 18px;
}
.owl-arrow.right {
  right: 18px;
}

/* HOVER */
.owl-arrow:hover {
  background: #d42a23;
  color: #000;
  transform: translateY(-50%) scale(1.05);
}

.designer-link{
  color: #ae2a25;
  text-decoration: none;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0;
  background: #fff;
}

.contact-wrapper {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

/* LEFT FORM */
.contact-form {
  padding: 60px;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ae2a25;
  margin-bottom: 10px;
  display: inline-block;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 35px;
}

.contact-form label {
  font-size: 0.85rem;
  color: #6b7280;
}

.contact-form .form-control {
  background: #f3f4f6;
  border: none;
  border-radius: 50px;
  padding: 14px 18px;
  font-size: 0.9rem;
}

.contact-form textarea.form-control {
  border-radius: 18px;
  resize: none;
}

.submit-btn {
  background: #ae2a25;
  color: #fff;
  padding: 14px 42px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(174,42,37,0.35);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(174,42,37,0.5);
}

/* RIGHT INFO */
.contact-info {
  background: #0a6378;
  color: #ffffff;
  padding: 70px 60px;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 40px;
}

/* INFO LIST */
.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.info-list .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd38a;
  font-size: 16px;
}

.info-list p {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-form,
  .contact-info {
    padding: 40px 28px;
  }

  .contact-section {
    padding: 80px 0;
  }
}
/* Mobile Fixed Buttons Wrapper */
.mobile-fixed-actions {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* Call Button */
.call-btn {
  background: linear-gradient(135deg, #0d6efd, #084298);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover / Tap Effects */
.action-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

/* Icon Size */
.action-btn i {
  font-size: 18px;
}

/* Hide on Desktop Explicitly (Safety) */
@media (min-width: 768px) {
  .mobile-fixed-actions {
    display: none;
  }
}
