/* ===== Custom: Reduced max-width for Other Events section ===== */
#panel-others {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   Djm events - Event Management Website Stylesheet
   Color Palette: Gold (#C9A84C), Black (#0D0D0D), White (#FAFAFA), Champagne (#F5E6C8)
   =================================================== */

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --gold: #d4af37;
  --gold-light: #f1d27b;
  --gold-dark: #b8860b;
  --black: #000814;
  --dark: #001d3d;
  --dark-mid: #003566;
  --white: #fafafa;
  --champagne: #f5e6c8;
  --champagne-mid: #e8d5a3;
  --gray-light: #f0f0f0;
  --gray-mid: #888;
  --text-dark: #1a1a1a;
  --text-light: #fafafa;
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
  --shadow-dark: 0 8px 40px rgba(0, 8, 20, 0.4);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font-family: "Open Sans", sans-serif;
}

/* ===================== UTILITY ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 40px;
}

.text-center .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--champagne);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--dark);
  color: var(--gold);
  border: 2px solid var(--dark);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 320px;
  /* Increased for high visibility */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: width 0.3s ease;
}

.nav-logo-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-logo-icon {
    width: 220px;
    /* Scaled down for mobile screens */
  }
}

.nav-logo-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO - HOME ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroCrossfade 15s infinite;
}

.hero-bg .slide-1 {
  background-image: url("images/concert_peacock_stage.jpg");
  animation-delay: 0s;
}

.hero-bg .slide-2 {
  background-image: url("images/concert_djmano_crowd.jpg");
  animation-delay: 3s;
}

.hero-bg .slide-3 {
  background-image: url("images/wedding_floral_stage.jpg");
  animation-delay: 6s;
}

.hero-bg .slide-4 {
  background-image: url("images/dj_full_setup.jpg");
  animation-delay: 9s;
}

.hero-bg .slide-5 {
  background-image: url("images/wedding_sparkler_curtain.jpg");
  animation-delay: 12s;
}

@keyframes heroCrossfade {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  5% {
    opacity: 1;
    transform: scale(1.02);
  }

  20% {
    opacity: 1;
    transform: scale(1.08);
  }

  25% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.88) 0%,
      rgba(13, 13, 13, 0.65) 50%,
      rgba(13, 13, 13, 0.45) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--duration, 6s) var(--delay, 0s) infinite ease-in;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  20% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(-120vh) scale(1.5);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  animation: fadeInUp 1s ease 0.3s both;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gold-text {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-desc {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: "Open Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===================== SERVICES HIGHLIGHTS (HOME) ===================== */
.services-highlights {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img-placeholder {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--champagne), var(--champagne-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: rotate(-5deg) scale(1.1);
}

.service-card-body h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.93rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.service-card:hover .card-arrow {
  gap: 10px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold);
  transform: translateY(-6px);
}

.quote-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  color: var(--gray-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 700;
  border: 2px solid var(--gold-light);
  flex-shrink: 0;
}



.author-name {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.author-role {
  color: var(--gold);
  font-size: 0.8rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ===================== ABOUT PAGE ===================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 13, 13, 0.5) 0%,
      rgba(13, 13, 13, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 120px;
}

.page-hero-content.text-center {
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-title span {
  color: var(--gold);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  justify-content: center;
}

.breadcrumb-center {
  justify-content: center;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.35);
}

/* About Section */
.about-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-img-badge .big-num {
  font-family: "Open Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}

.about-img-badge span {
  font-size: 0.8rem;
  color: var(--dark-mid);
  font-weight: 600;
}



.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.mv-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid;
  transition: var(--transition);
}

.mv-card.mission {
  background: linear-gradient(135deg,
      rgba(201, 168, 76, 0.08),
      rgba(201, 168, 76, 0.03));
  border-color: rgba(201, 168, 76, 0.3);
}

.mv-card.vision {
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.04),
      rgba(13, 13, 13, 0.01));
  border-color: rgba(13, 13, 13, 0.15);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.mv-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.mv-card h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  background: var(--champagne);
  transform: translateX(6px);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--dark);
  flex-shrink: 0;
}

.why-item-text h5 {
  color: var(--dark);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.why-item-text p {
  color: var(--gray-mid);
  font-size: 0.85rem;
}

/* Team */
.team-section {
  background: var(--gray-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.07);
}

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 13, 13, 0.7) 0%,
      transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-img-overlay {
  opacity: 1;
}

.team-social {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.8rem;
}

.team-social a:hover {
  background: var(--white);
}

.team-info {
  padding: 22px 16px;
}

.team-name {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================== SERVICES PAGE ===================== */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ===================== CATEGORIES PAGE ===================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.category-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.1);
}

.category-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
}

.category-card:hover .category-placeholder {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(13, 13, 13, 0.7) 100%);
}

.category-card-body {
  padding: 32px;
}

.footer-logo-icon {
  width: 240px;
  margin-bottom: 10px;
}

.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.category-card:hover .category-icon {
  transform: rotate(-5deg) scale(1.1);
}

.category-card-body h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.category-card-body p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.category-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.category-features li span {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
}

.comparison-table th {
  padding: 20px 16px;
  text-align: left;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.comparison-table tbody tr {
  transition: background 0.3s ease;
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(245, 230, 200, 0.15);
}

.comparison-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.08);
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
  display: flex;
  gap: 0;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.service-detail-img {
  width: 200px;
  flex-shrink: 0;
  object-fit: cover;
}

.service-img-placeholder {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.service-detail-body {
  padding: 32px;
  flex: 1;
}

.service-detail-badge {
  display: inline-block;
  background: var(--champagne);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.service-detail-body h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-detail-body p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-dark);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title span {
  color: var(--gold);
  font-style: italic;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}



.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.contact-info-item:hover {
  background: var(--champagne);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(6px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--gray-mid);
  font-size: 0.92rem;
}

.contact-info-text a:hover {
  color: var(--gold);
}

.map-container {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ===================== FORMS ===================== */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group .label-req {
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  background: var(--gray-light);
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.form-success {
  display: none;
  background: linear-gradient(135deg,
      rgba(201, 168, 76, 0.1),
      rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 16px;
}

/* ===================== BOOKING PAGE ===================== */
.booking-section {
  background: linear-gradient(160deg, var(--champagne) 0%, var(--white) 60%);
}

.booking-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.booking-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 40px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-header::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(201, 168, 76, 0.2) 0%,
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.booking-header-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.booking-header h2 {
  color: var(--white);
  font-size: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}

.booking-header p {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.booking-body {
  padding: 48px;
}

.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 4px;
}

.booking-step {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-weight: 600;
  transition: var(--transition);
}

.booking-step.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}



.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 240px;
  margin-bottom: 10px;
}

.footer-logo-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-text span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-4px);
}

.footer-col h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "›";
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-ci-icon {
  width: 32px;
  height: 32px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

.footer-copy a {
  color: var(--gold-light);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ===================== PAGE TRANSITIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-card {
    flex-direction: column;
  }

  .service-detail-img,
  .service-img-placeholder {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav-links .nav-link {
    color: var(--white);
    font-size: 1.1rem;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
    visibility: visible;
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    margin-right: 4px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-overview {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-badge {
    right: 16px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrapper {
    padding: 28px;
  }

  .booking-body {
    padding: 28px;
  }

  .booking-header {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===================== RESPONSIVE HELPER CLASSES ===================== */
/* These replace inline style grids so they become responsive */

/* 2-column grid (used in Why Us, Why Choose Us sections) */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* 3-column grid (Values section in about) */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 4-column grid (Process steps in services) */
.four-col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Numbers stats grid (About page 2x2) */
.two-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===================== EXTENDED RESPONSIVE ===================== */

/* --- Large tablet: 1024px --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .two-col-grid {
    gap: 48px;
  }

  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process connector line hidden below desktop */
  .four-col-grid>.process-connector {
    display: none;
  }

  .page-hero {
    height: 40vh;
    min-height: 300px;
  }

  .section-padding {
    padding: 72px 0;
  }

  .cta-section {
    padding: 72px 0;
  }
}

/* --- Tablet: 768px --- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Collapse all 2-col grids */
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Collapse 3-col grids */
  .three-col-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Collapse 4-col grids */
  .four-col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    height: auto;
    min-height: 200px !important;
    padding: 100px 20px 40px !important;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
  }

  /* Section headings */
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .section-padding {
    padding: 60px 20px !important;
  }

  .section-padding-sm {
    padding: 40px 20px !important;
  }

  /* CTA */
  .cta-section {
    padding: 60px 20px !important;
  }

  .cta-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* About img badge */
  .about-img-badge {
    right: 8px;
    bottom: 8px;
    padding: 14px 18px;
  }

  .about-img-badge .big-num {
    font-size: 1.8rem;
  }

  /* Why us section fixes */
  #why-us .two-col-grid>div:last-child {
    margin-top: 40px;
    padding: 20px 0;
  }

  #why-us [style*="position:absolute"] {
    position: static !important;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
    transform: none !important;
  }

  #why-us .fade-in img {
    margin-bottom: 40px;
  }

  /* Decor grid on medium screens */
  .decor-grid {
    gap: 20px;
  }

  /* Booking Page specific */
  .booking-section {
    padding: 100px 20px 40px !important;
  }

  .booking-header h2 {
    font-size: 1.6rem !important;
  }

  .booking-wrapper {
    border-radius: 16px;
  }

  /* Category Cards Table Fix */
  .comparison-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Navigation drawer contrast and padding */
  .nav-links .nav-link {
    color: var(--white);
    font-size: 1.1rem;
    width: 100%;
    padding: 12px 0;
  }

  .hamburger {
    margin-right: 4px;
  }

  /* Footer */
  footer {
    padding: 60px 20px 0 !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 0 !important;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Removed dangerous global img min-height rule that distorted logos and small icons */
  .about-img-main {
    height: 400px;
  }

  .responsive-img-lg {
    height: 400px !important;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }
}

/* --- Mobile: 480px --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* All multi-col grids → 1 col */
  .three-col-grid,
  .four-col-grid,
  .two-two-grid,
  .stats-grid,
  .services-grid,
  .team-grid,
  .contact-grid,
  .categories-grid {
    grid-template-columns: 1fr !important;
  }

  /* Inline style overrides */
  [style*="grid-template-columns:repeat"],
  [style*="grid-template-columns: repeat"] {
    grid-template-columns: 1fr !important;
  }

  /* Decor grid */
  .decor-grid {
    grid-template-columns: 1fr !important;
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .hero-buttons .btn {
    max-width: none;
  }

  /* Section padding */
  .section-padding {
    padding: 48px 16px !important;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr !important;
  }

  .form-wrapper,
  .booking-body,
  .booking-header {
    padding: 24px 16px !important;
  }
}


/* ===== SOCIAL LINKS ===== */
.footer-social {
  display: flex !important;
  gap: 12px !important;
  margin-top: 24px;
}

.social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: #001226;
  /* Dark navy backrgound to match image */
  border-radius: 12px;
  /* Squircle shape as requested */
  align-items: center;
  justify-content: center;
  color: #d4af37;
  /* Gold icons */
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-size: 1.15rem;
}

.social-link:hover {
  background: #d4af37;
  color: #001226;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

/* ===== FLOATING WHATSAPP ICON ===== */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 2px 2px 12px rgba(0, 0, 0, 0.3);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 2px 2px 12px rgba(0, 0, 0, 0.3);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 2px 2px 12px rgba(0, 0, 0, 0.3);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  animation: whatsappPulse 2s infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.12);
  color: #fff;
  animation: none;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.5);
}

/* Tooltip label */
.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  background: #25d366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* === Mobile responsive === */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 18px;
    width: 54px;
    height: 54px;
    font-size: 28px;
    z-index: 9999;
  }

  .whatsapp-float::before {
    display: none;
    /* hide tooltip on mobile */
  }
}

/* --- Small phones: 360px --- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 14px;
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
}

/* Override for mobile responsiveness enhancements */
@media (max-width: 768px) {
  .nav-links {
    display: flex !important;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow-y: auto;
    width: 280px;
    background: var(--dark) !important;
    flex-direction: column;
    padding: 100px 32px 32px !important;
    gap: 12px !important;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    border-left: 1px solid rgba(201, 168, 76, 0.3) !important;
  }

  .nav-links.open {
    visibility: visible !important;
    transform: translateX(0) !important;
  }

  .nav-links .nav-link {
    color: var(--white) !important;
    font-size: 1.1rem !important;
    width: 100%;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* ===== NAVIGATION OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 20, 0.7);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}



.nav-container {
  max-width: 1200px;
  /* margin: 0 auto; */
  /* padding: 20px 24px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== FOOTER LOGO SCALE ===== */
.footer-logo-icon {
  width: 350px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.footer-logo-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===================== GALLERY SECTION ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  aspect-ratio: 4/3;
  transition: all 0.4s ease;
  background: var(--gray-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-top: 120px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Make all cards same size */
.team-card {
  width: 100%;
  max-width: 320px;
}

/* Center last 2 cards */
.team-card:nth-child(4) {
  grid-column: 1 / 2;
}

.team-card:nth-child(5) {
  grid-column: 3 / 4;
}

/* Optional: keep middle empty for spacing */
.team-card:nth-child(4),
.team-card:nth-child(5) {
  justify-self: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* 3 cards in first row */
.team-card {
  width: calc(33.33% - 20px);
  max-width: 320px;
}

/* Force break after 3rd card */
.team-card:nth-child(4) {
  margin-left: auto;
}

.team-card:nth-child(5) {
  margin-right: auto;
}

@media (max-width: 576px) {
  .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Reset desktop positioning */
  .team-card:nth-child(4),
  .team-card:nth-child(5) {
    grid-column: auto;
    justify-self: center;
  }
}

.group-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
}

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 101px 0;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

/* ===================== GALLERY SECTION ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  aspect-ratio: 4/3;
  transition: all 0.4s ease;
  background: var(--gray-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .group-image img {
    height: 180px;
  }
}