/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #181818 60%, #c9a961 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}

.loader-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 30, 30, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 40px 10px #c9a96144, 0 0 0 8px #222 inset;
  padding: 1.2rem;
  animation: loader-glow 2s infinite alternate, loader-spin 1.8s linear infinite;
  position: relative;
}

.loader-logo {
  width: 48px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px #c9a961cc) drop-shadow(0 0 4px #fff8);
  animation: loader-logo-pop 1.2s cubic-bezier(0.4,0,0.2,1) 1;
}

@keyframes loader-spin {
  100% { transform: rotate(360deg); }
}

@keyframes loader-glow {
  0% { box-shadow: 0 0 40px 10px #c9a96144, 0 0 0 8px #222 inset; }
  100% { box-shadow: 0 0 80px 24px #c9a961cc, 0 0 0 8px #222 inset; }
}

@keyframes loader-logo-pop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
/* Animated Process Card Styles */
.animated-process-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: processFadeIn 0.8s cubic-bezier(.4,2,.6,1) forwards;
}
.animated-process-card:hover {
  z-index: 2;
}
@keyframes processFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.process-step-num-animated {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  background: #fff;
  color: #c9a961;
  border-radius: 50%;
  border: 4px dashed #c9a961;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 6px 22px rgba(201,169,97,0.18);
  z-index: 2;
  animation: stepBounce 1.2s cubic-bezier(.4,2,.6,1) infinite alternate;
}
@keyframes stepBounce {
  0% { box-shadow: 0 6px 22px rgba(201,169,97,0.18); }
  100% { box-shadow: 0 16px 32px rgba(201,169,97,0.28); }
}
.icon-circle-animated {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #c9a961;
  border-top: 4px solid #fffbe8;
  border-bottom: 4px solid #fffbe8;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #232323 60%, #181818 100%);
  box-shadow: 0 4px 18px rgba(201, 169, 97, 0.10);
  animation: spinCircle 2.5s linear infinite;
  position: relative;
  margin: 0 auto 1.5rem auto;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.icon-circle-animated i {
  font-size: 2.8rem;
  color: #c9a961;
  z-index: 2;
}
@keyframes spinCircle {
  100% { transform: rotate(360deg); }
}
.animated-process-card:hover .icon-circle-animated {
  border-color: #d4b76f;
  box-shadow: 0 10px 32px rgba(201,169,97,0.18);
}
.animated-process-card:hover .process-step-num-animated {
  color: #fff;
  background: #c9a961;
  border-color: #fffbe8;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  
  border: 4px solid rgba(201, 169, 97, 0.2);
  border-top-color: #c9a961;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #c9a961;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4b76f;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header/Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  
}



nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  nav {
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c9a961 0%, #8b7355 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-text {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: #c9a961;
  font-weight: 600;
}

/* Desktop Menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  /* margin-right: 50px; */
  margin-top: 16px;
}

@media (min-width: 1025px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu > li {
  position: relative;
 
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: block;
}

.nav-link:hover {
  color: #c9a961;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

button.dropdown-toggle {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  list-style: none;
  z-index: 1100;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.dropdown-menu li a:hover {
  background: rgba(201, 169, 97, 0.1);
  color: #c9a961;
}

/* Button Primary */
.btn-primary {
  padding: 0.625rem 1.5rem;
  background: #c9a961;
  color: #000000;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-right: -95px;
 
}

.btn-primary:hover {
  background: #d4b76f;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-menu-toggle:hover {
  background: rgba(201, 169, 97, 0.1);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu > ul > li {
  margin: 0;
}

.mobile-menu .nav-link {
  padding: 0.75rem 0;
  display: block;
}

.mobile-menu .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0;
  cursor: pointer;
}

.mobile-menu .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  border: none;
  padding-left: 1rem;
  margin-top: 0;
  display: none;
}

.mobile-menu .dropdown.active .dropdown-menu {
  display: block;
}

.mobile-menu .btn-primary {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  margin-top: 80px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  max-width: 860px;
  animation: fadeIn 1s ease-out;
}

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

.hero-subtitle {
  color: #c9a961;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-secondary {
  padding: 1rem 2rem;
  border: 2px solid #c9a961;
  color: #c9a961;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
}

.btn-secondary:hover {
  background: #c9a961;
  color: #000000;
  transform: scale(1.05);
}

.btn-primary-large {
  padding: 1rem 2rem;
  background: #c9a961;
  color: #000000;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
}

.btn-primary-large:hover {
  background: #d4b76f;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.5);
}

.hero-proof-cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(760px, 100%);
}

.hero-proof-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 1rem;
  text-align: center;
}

.hero-proof-value {
  color: #f4f4f4;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.hero-proof-value i {
  color: #c9a961;
  font-size: 0.9em;
}

.hero-proof-label {
  margin-top: 1rem;
  color: #f0f0f0;
  font-size: 1.05rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .hero-text {
    max-width: 100%;
  }

  .hero-proof-cards {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100%;
    margin-top: 1.25rem;
  }

  .hero-proof-card {
    padding: 1rem;
    border-radius: 14px;
  }

  .hero-proof-value {
    font-size: 1.7rem;
  }

  .hero-proof-label {
    margin-top: 0.45rem;
    font-size: 0.95rem;
  }
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: none;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.slider-control:hover {
  background: #c9a961;
  transform: translateY(-50%) scale(1.1);
}

.slider-control.prev {
  left: 1rem;
}

.slider-control.next {
  right: 1rem;
}

@media (min-width: 1024px) {
  .slider-control.prev {
    left: 2rem;
  }
  .slider-control.next {
    right: 2rem;
  }
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: #c9a961;
  width: 48px;
  border-radius: 6px;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  section {
    padding: 8rem 0;
  }
}

.section-bg-dark {
  background: #0f0f0f;
}

.section-bg-black {
  background: #000000;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: #c9a961;
  letter-spacing: 0.3em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 96px;
  height: 4px;
  background: #c9a961;
  margin: 0 auto 1.5rem;
}

.section-description {
  color: #999999;
  max-width: 48rem;
  margin: 0 auto;
}

/* Trusted By / Social Proof */
.trusted-section {
  border-top: 1px solid rgba(201, 169, 97, 0.16);
  border-bottom: 1px solid rgba(201, 169, 97, 0.16);
}

.trusted-logo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .trusted-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trusted-category-card {
  background: linear-gradient(145deg, #121212 0%, #0b0b0b 100%);
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: 12px;
  padding: 1.2rem;
}

.trusted-category-title {
  font-size: 1.05rem;
  color: #c9a961;
  margin-bottom: 0.85rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trusted-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  background: #1a1a1a;
  color: #e8e8e8;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 999px;
  font-size: 0.84rem;
  line-height: 1;
}

.proof-stats-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .proof-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  background: rgba(201, 169, 97, 0.08);
  color: #ffffff;
  font-weight: 600;
}

.proof-stat-item i {
  color: #c9a961;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

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

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Card Styles */
.card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.5s;
  text-align: center;
}

.card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.card-icon {
  font-size: 3.75rem;
  color: #c9a961;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.25rem;
  color: #c9a961;
  margin-bottom: 1rem;
}

.card-description {
  color: #999999;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  color: #c9a961;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.card-link:hover {
  color: #d4b76f;
  gap: 1rem;
}

/* Main Services Overview: image-based cards */
#services .services-card,
#wedding-services .services-card,
#event-solutions .services-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #131313 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 16px;
  padding: 1.1rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

#services .services-card:hover,
#wedding-services .services-card:hover,
#event-solutions .services-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 97, 0.75);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45), 0 6px 18px rgba(201, 169, 97, 0.18);
}

#services .services-image-wrap,
#wedding-services .services-image-wrap,
#event-solutions .services-image-wrap {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

#services .services-image,
#wedding-services .services-image,
#event-solutions .services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.4s ease;
}

#services .services-card:hover .services-image,
#wedding-services .services-card:hover .services-image,
#event-solutions .services-card:hover .services-image {
  transform: scale(1.08);
}

#services .services-card .card-title,
#wedding-services .services-card .card-title,
#event-solutions .services-card .card-title {
  margin-bottom: 0.75rem;
}

#services .services-card .card-description,
#wedding-services .services-card .card-description,
#event-solutions .services-card .card-description {
  margin-bottom: 1.2rem;
}

/* Event Categories: large cards + hover effect */
#event-solutions .event-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

#event-solutions .event-categories-paging {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

#event-solutions .event-page-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.35);
  background: #141414;
  color: #c9a961;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

#event-solutions .event-page-btn:hover {
  background: #1d1d1d;
  border-color: rgba(201, 169, 97, 0.85);
  transform: translateY(-2px);
}

#event-solutions .event-categories-dots {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

#event-solutions .event-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(201, 169, 97, 0.28);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

#event-solutions .event-dot.active {
  width: 28px;
  background: #c9a961;
}

#event-solutions .event-category-card.paging-enter {
  animation: eventCardFade 0.32s ease;
}

@keyframes eventCardFade {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  #event-solutions .event-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  #event-solutions .event-categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#event-solutions .event-category-card {
  position: relative;
}

#event-solutions .event-category-image-wrap {
  height: 235px;
  border-radius: 14px;
  overflow: hidden;
}

#event-solutions .event-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(201, 169, 97, 0.22);
}

#event-solutions .event-category-card:hover .event-category-image-wrap img {
  transform: scale(1.12);
}

/* Image Styles */
.image-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Booking Section - 2 Column Layout */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.booking-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.booking-title {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.booking-intro {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.booking-intro strong {
  color: #4a90e2;
}

/* Contact Details Section */
.booking-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(36, 36, 36, 0.72) 100%);
  backdrop-filter: blur(10px);
  padding: 1.6rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.booking-details-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0;
  font-weight: 600;
}

.contact-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: start;
  column-gap: 0.55rem;
  row-gap: 0.15rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-bottom-color: rgba(201, 169, 97, 0.35);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.phone-icon {
  background: rgba(230, 126, 126, 0.2);
  color: #e67e7e;
}

.email-icon {
  background: rgba(230, 126, 126, 0.2);
  color: #e67e7e;
}

.address-icon {
  background: rgba(230, 126, 126, 0.2);
  color: #e67e7e;
}

.hours-icon {
  background: rgba(230, 126, 126, 0.2);
  color: #e67e7e;
}

.contact-info {
  min-width: 0;
}

.contact-label {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.contact-value {
  font-size: 0.85rem;
  color: #ddd;
  margin: 0.08rem 0;
  line-height: 1.4;
  word-break: break-word;
}

.contact-value a {
  color: #c9a961;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value a:hover {
  color: #d4b76f;
}

/* WhatsApp Section */
.whatsapp-section {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.05) 100%);
  border: 2px solid rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  padding: 5px;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 0.1rem;
}

.whatsapp-section:hover {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.whatsapp-icon {
  font-size: 2rem;
  color: #25d366;
  margin-bottom: 0.2rem;
}

.whatsapp-title {
  font-size: 1.2rem;
  color: #25d366;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.whatsapp-text {
  color: #999;
  font-size: 0.7rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Emergency Section */
.emergency-section {
  background: rgba(230, 126, 126, 0.1);
  border: 1px solid rgba(230, 126, 126, 0.3);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .booking-details-wrapper {
    padding: 1.1rem;
  }

  .contact-item {
    grid-template-columns: 40px minmax(0, 1fr);
    row-gap: 0.5rem;
  }
}

.emergency-label {
  font-size: 0.85rem;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.emergency-text {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.emergency-number {
  font-size: 1.3rem;
  color: #e67e7e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.emergency-number:hover {
  color: #f08888;
}

/* Send Message Button */
.btn-send-message {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #d4a76f 0%, #c9a961 100%);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-send-message:hover {
  background: linear-gradient(135deg, #deb67f 0%, #d4b76f 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

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

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

.stat-label {
  color: #999999;
  font-size: 0.875rem;
}

/* List Styles */
.check-list {
  list-style: none;
  margin: 2rem 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.check-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a961;
}

.check-list li span {
  color: #999999;
}

/* Team Card */
.team-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  border-color: #c9a961;
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 169, 97, 0.2);
}

.team-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}

.team-info {
  padding: 1.5rem 1.5rem 1.8rem;
  position: relative;
}

.team-info::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #c9a961;
  margin: 0 auto 1rem;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.team-card:hover .team-info::before {
  width: 70px;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.team-role {
  display: inline-block;
  background: rgba(201, 169, 97, 0.12);
  color: #c9a961;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 97, 0.25);
  margin-bottom: 0.5rem;
}

.team-desc {
  color: #999;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.85rem;
  margin-bottom: 1.2rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  margin-top: 0.5rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: #c9a961;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social a:hover {
  background: #c9a961;
  color: #1a1a1a;
  border-color: #c9a961;
  transform: translateY(-2px);
}

/* Event Type Card */
.event-type-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
  transition: all 0.5s;
}

.event-type-card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.event-type-card:hover .event-icon {
  transform: scale(1.1);
}

.event-title {
  font-size: 1.125rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
}

.event-count {
  color: #999999;
  font-size: 0.875rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c9a961;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #666666;
}

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

/* Testimonials */
.testimonial-card {
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: #c9a961;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #cccccc;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1.25rem;
  color: #c9a961;
  margin-bottom: 0.5rem;
}

.testimonial-role {
  color: #999999;
}

/* Gallery */
/* Gallery Filter Buttons */
.gallery-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 3rem 0 3rem;
}

.gallery-filter-btn {
  background: transparent;
  border: 2px solid rgba(201, 169, 97, 0.3);
  color: #999;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
  border-color: #c9a961;
  color: #c9a961;
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, #c9a961 0%, #b8935a 100%);
  border-color: #c9a961;
  color: #fff;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

/* Gallery Category Label */
.gallery-category-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(201, 169, 97, 0.95);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  text-transform: capitalize;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: #c9a961;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-desc {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* FAQ / Accordion */
.faq-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(30, 30, 30, 0.6) 100%);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(201, 169, 97, 0.4);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(201, 169, 97, 0.08);
  color: #c9a961;
}

.faq-item.active .faq-question {
  color: #c9a961;
  background: rgba(201, 169, 97, 0.05);
}

.faq-icon {
  transition: transform 0.3s;
  font-size: 1.5rem;
  font-weight: 300;
  color: #c9a961;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  color: #b8b8b8;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
  animation: fadeInAnswer 0.4s ease;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Grid Layout */
.faq-grid {
  gap: 3rem;
  align-items: start;
}

.faq-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.faq-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-overlay-box {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.95) 0%, rgba(201, 169, 97, 0.85) 100%);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-overlay-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
}

.faq-overlay-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faq-overlay-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.faq-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #ffffff;
  color: #c9a961;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.faq-overlay-btn:hover {
  background: #0a0a0a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-content-wrapper {
  display: flex;
  flex-direction: column;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .faq-image-wrapper {
    min-height: 350px;
  }
  
  .faq-overlay-box {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
  }
}

/* Contact Info */
.contact-info {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #c9a961;
}

.contact-details h3 {
  font-size: 1.125rem;
  color: #c9a961;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #999999;
  margin: 0.25rem 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a961;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #c9a961;
  color: #000000;
  transform: scale(1.1);
}

/* Map */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background: #000000;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  color: #c9a961;
  margin-bottom: 1.5rem;
}

.footer-column p {
  color: #999999;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #c9a961;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.875rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: #c9a961;
}

.newsletter-button {
  padding: 0.75rem 1rem;
  background: #c9a961;
  border: none;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-button:hover {
  background: #d4b76f;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom p {
  color: #999999;
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom p a {
  color: #c9a961;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom p a:hover {
  color: #d4b76f;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  color: #999999;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #c9a961;
}

/* Blog Styles */
.blog-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.5s;
}

.blog-card:hover {
  border-color: #c9a961;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #c9a961 0%, #b8935a 100%);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #999999;
}

.blog-meta i {
  color: #c9a961;
  margin-right: 0.3rem;
}

.blog-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: color 0.3s;
}

.blog-card:hover .blog-title {
  color: #c9a961;
}

.blog-excerpt {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.read-more {
  color: #c9a961;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
}

.read-more i {
  transition: transform 0.3s;
}

.read-more:hover {
  color: #d4b76f;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Pricing Card */
.pricing-card {
  background: #1a1a1a;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s;
}

.pricing-card:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.pricing-card.featured {
  border-color: #c9a961;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2416 100%);
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #c9a961;
  color: #000000;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.5rem;
  color: #c9a961;
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #999999;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
  color: #cccccc;
}

.pricing-features li:first-child {
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.pricing-slider-wrap {
  overflow: hidden;
  margin-top: 2rem;
  position: relative;
}

.pricing-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.75s ease;
  will-change: transform;
}

.pricing-slider-track .pricing-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  max-width: calc((100% - 3rem) / 3);
}

@media (max-width: 768px) {
  .pricing-slider-track .pricing-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 8rem 0 4rem;
  margin-top: 80px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.about-page-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url('../images/breadcrume.png') center/cover no-repeat;
}

.page-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: #999999;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #c9a961;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Blog Detail */
.blog-detail-header {
  margin-bottom: 2rem;
}

.blog-detail-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #999999;
  margin-bottom: 2rem;
}

.blog-detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.blog-detail-content {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1.125rem;
}

.blog-detail-content h2 {
  color: #c9a961;
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Utilities */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 1025px) {
    .mobile-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        padding: 2rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        align-items: flex-start;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        background: rgba(24, 24, 27, 0.95);
    }

    .nav-dropdown.active .dropdown-menu {
        transform: none;
    }

    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.grid-custom {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* mobile: 1 col */
  gap: 1rem;
}

/* tablet and up: 2 cols */
@media (min-width: 768px) {
  .grid-custom { grid-template-columns: repeat(2, 1fr); }
}

/* desktop large: 4 cols */
@media (min-width: 1024px) {
  .grid-custom { grid-template-columns: repeat(4, 1fr); }
}


.logo-img{
  height: 46px;
  width: auto;
  max-width:auto;
  margin-left: 0px;
}

@media (min-width: 1025px) {
  .logo-img {
    height: 50px;
    margin-left: -75px;
  }
}



.logo-img2{
  width: auto;
  height: 90px;
  }

.logo-img2:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 169, 97, 0.45);
}

.loader-logo{
  width: 150px;
  height: 120px;
  height: auto;
  animation: pulse 1.5s infinite;
}

.about-img{
  width: 100%;
  height: auto;
  /* border-radius: 100px 5px 100px 5px; */
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float {
  background: #c9a961;
  color: #000;
}

.whatsapp-float:hover {
  background: #c9a961;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 3px 10px #c9a961;
}

.call-float {
  background: #c9a961;
  color: #000;
}

.call-float:hover {
  background: #e6cf99;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 3px 10px #c9a961;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    left: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a961 0%, #a88a4d 100%);
  color: #000000;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #d4b76f 0%, #c9a961 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Enquiry Popup Modal */
.enquiry-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.3s ease;
}

.enquiry-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.enquiry-modal-content {
  background: #1a1a1a;
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 169, 97, 0.3);
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.enquiry-modal-header {
  background: linear-gradient(135deg, #c9a961 0%, #a88a4d 100%);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(201, 169, 97, 0.5);
}

.enquiry-modal-header h2 {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin: 0;
  text-transform: uppercase;
}

.enquiry-close {
  background: transparent;
  border: none;
  color: #000000;
  font-size: 2.1rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
  padding-bottom: 8px;
}

.enquiry-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
  color: wheat;
}

.enquiry-form {
  padding: 24px;
  background: #1a1a1a;
}

.enquiry-form-group {
  margin-bottom: 16px;
}

.enquiry-form-group label {
  display: block;
  color: #c9a961;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enquiry-form-group .required {
  color: #c9a961;
}

.enquiry-form-group input,
.enquiry-form-group select,
.enquiry-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #ffffff;
  background: #0a0a0a;
  transition: all 0.3s ease;
  font-family: inherit;
}

.enquiry-form-group input::placeholder,
.enquiry-form-group textarea::placeholder {
  color: #666666;
}

.enquiry-form-group input:focus,
.enquiry-form-group select:focus,
.enquiry-form-group textarea:focus {
  outline: none;
  border-color: #c9a961;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
  background: #0a0a0a;
}

.enquiry-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a961' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
  background-color: #0a0a0a;
}

.enquiry-form-group select option {
  background: #1a1a1a;
  color: #ffffff;
}

.enquiry-form-group textarea {
  resize: vertical;
  min-height: 82px;
}

.enquiry-submit-btn {
  width: 100%;
  padding: 13px 18px;
  background: linear-gradient(135deg, #d4a76f 0%, #c9a961 100%);
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.enquiry-submit-btn:hover {
  background: linear-gradient(135deg, #deb67f 0%, #d4b76f 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
  .enquiry-modal-header {
    padding: 16px;
  }

  .enquiry-modal-header h2 {
    font-size: 1.05rem;
  }

  .enquiry-form {
    padding: 18px 16px;
  }

  .enquiry-close {
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
  }
}



 .flip-card {
          perspective: 1000px;
          height: 550px;
        }

        .flip-card-inner {
          position: relative;
          width: 100%;
          height: 100%;
          transition: transform 0.6s;
          transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
          transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
          position: absolute;
          width: 100%;
          height: 100%;
          backface-visibility: hidden;
          border-radius: 12px;
          overflow: hidden;
        }

        .flip-card-front {
          background: rgba(255, 255, 255, 0.05);
          display: flex;
          flex-direction: column;
        }

        .flip-card-front .services-image-wrap {
          height: 200px;
          overflow: hidden;
        }

        .flip-card-front .card-title {
          padding: .5rem;
          text-align: center;
          flex: 1;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .flip-card-back {
          background: linear-gradient(135deg, rgba(201, 169, 97, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
          transform: rotateY(180deg);
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 1rem;
        }

        .flip-card-back .card-description {
          color: #fff;
          font-size: 1rem;
          line-height: 1.7;
          text-align: center;
        }


        .process-cards-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-top: 2rem;
    }
    .process-card-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      
    }
    .process-card {
      flex: 1;
      position: relative;
      padding-top: 3.5rem;
      height: 470px;
      margin: 7px;
    }
    
    
    .process-step-num {
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 44px;
      background: #c9a961;
      color: #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    }
    .process-arrow-right {
      color: #c9a961;
      font-size: 1.4rem;
      padding: 0 0.6rem;
      flex-shrink: 0;
      opacity: 0.6;
    }
    @media (max-width: 992px) {
      .process-cards-row {
        flex-wrap: wrap;
        gap: 2rem;
      }
      .process-card-wrap {
        flex: 0 0 calc(50% - 1rem);
      }
      .process-arrow-right {
        display: none;
      }
    }
    @media (max-width: 576px) {
      .process-card-wrap {
        flex: 0 0 100%;
      }
    }

.venue-partner-card:hover {
          background: rgba(201, 169, 97, 0.1) !important;
          border-color: rgba(201, 169, 97, 0.3) !important;
          transform: translateY(-5px);
        }