/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* ================= COLORS ================= */
:root {
  --black: #0b0b0b;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --white: #ffffff;
}

/* ================= TOP HEADER ================= */
.top-header {
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

/* Contact Info */
.contact-info {
  display: flex;
  gap: 30px;
}

.info-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.info-box i {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px;
  border-radius: 50%;
}

.info-box h4 {
  font-size: 0.8rem;
  color: var(--gold-light);
}

.info-box p {
  font-size: 0.75rem;
  color: #ccc;
}

/* Button */
.appointment-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.appointment-btn:hover {
  transform: translateY(-2px);
}

/* ================= SECOND HEADER ================= */
.second-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.second-header .container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Social Icons LEFT */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--gold-light);
}

/* Nav RIGHT */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  top: 35px;
  min-width: 200px;
  border: 1px solid var(--gold);
}

.dropdown-content a {
  display: block;
  padding: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Mobile */
.menu-icon {
  display: none;
  font-size: 1.6rem;
  color: var(--gold);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-info {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
  }
}



/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  height: 90vh;
  background: url("https://i.ibb.co/dnxwdhm/photorealistic-wedding-venue-with-intricate-decor-ornaments.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.85)
  );
}

/* ✅ NEW: Centered container */
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content */
.hero-content {
  max-width: 850px;
  color: #fff;
}

/* Small headline */
.hero-tagline {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Main headline */
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--gold);
}

/* Paragraph */
.hero-content p {
  font-size: 1rem;
  max-width: 650px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 35px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}




/* ================= SERVICES SECTION ================= */
.services-section {
  position: relative;
  margin-top: -120px; /* 👈 pulls cards into hero */
  z-index: 10;
  padding-bottom: 80px;
}

.services-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Card */
.service-card {
  background: #0b0b0b;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 40px 30px;
  text-align: left;
  transition: 0.35s ease;
}

/* Hover effect (subtle luxury) */
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

/* Icon */
.service-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Title */
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

/* Gold line */
.service-card .divider {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
}

/* Description */
.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .services-section {
    margin-top: -60px;
  }

  .service-card {
    padding: 30px 24px;
  }
}




/* ================= FEATURED EVENTS ================= */
.featured-events {
  background: #000;
  padding: 100px 0;
}

.events-inner {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 50px;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 12px;
}

/* Desktop Grid */
.events-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-item {
  text-align: left;
}

.event-image {
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio like YouTube */
  position: relative;
  margin-bottom: 18px;
  background: #111;
  border-radius: 0;
}

.event-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-image.no-image {
  background: linear-gradient(135deg, #111, #1a1a1a);
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.25),
    0 20px 40px rgba(0, 0, 0, 0.6);
}

.event-item h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.event-item p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

.event-date {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Mobile Slider */
@media (max-width: 768px) {
  .featured-events {
    padding: 70px 0;
  }

  .events-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .events-track::-webkit-scrollbar {
    display: none; /* hide scrollbar */
  }

  .event-item {
    min-width: 90%; /* almost full width */
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Dots Navigation */
  .events-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .events-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .events-dots span.active {
    background: var(--gold);
  }
}






/* ================= OUR COMMITMENT ================= */
.commitment-section {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.commitment-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.commitment-image {
  flex: 1;
  min-width: 300px;
}

.commitment-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.commitment-content {
  flex: 1;
  min-width: 300px;
}

.short-title {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.large-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.commitment-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Points with Font Awesome icons */
.commitment-points {
  list-style: none;
  margin-bottom: 25px;
}

.commitment-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #ccc;
}

.commitment-points li i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* View Services Link */
.view-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-services i {
  transition: transform 0.3s ease;
}

.view-services:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .commitment-inner {
    flex-direction: column;
    text-align: left;
  }

  .commitment-image img {
    max-height: 350px;
    margin-bottom: 30px;
  }

  .commitment-content ul {
    padding-left: 0;
  }

  .commitment-points li {
    padding-left: 0;
    justify-content: left;
  }
}





.performance-section {
  padding: 100px 20px;
  color: #fff;
}

.performance-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.performance-bars {
  flex: 1;
  min-width: 300px;
}

.performance-bars h2 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.bar-group {
  margin-bottom: 25px;
}

.bar-group p {
  margin-bottom: 8px;
  font-weight: 500;
  color: #ddd;
}

.bar {
  width: 100%;
  height: 15px;
  background: #222;
  border-radius: 0;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transition: width 1.5s ease;
}

/* Right stats */
.performance-stats {
  flex: 1;
  min-width: 250px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px; /* row-gap column-gap */
  justify-items: start;
  align-items: center;
}

.performance-stats .stat h3 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.performance-stats .stat p {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .performance-inner {
    flex-direction: column;
    gap: 50px;
  }

  .performance-stats {
    grid-template-columns: 1fr;
    gap: 20px 0;
    justify-items: start;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .performance-inner {
    flex-direction: column;
    gap: 50px;
  }

  .performance-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .performance-stats .stat {
    flex: 1 1 45%;
  }
}





/* ================= CLIENT REVIEWS ================= */
.client-reviews {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.reviews-inner {
  max-width: 1400px;
  margin: auto;
}

.section-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.review-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.review-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.review-item .review-text h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.review-item .review-text p {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 5px;
}

.review-item .ratings {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-item .ratings .stars i {
  color: var(--gold);
}

/* ================= MODAL ================= */
.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  max-width: 900px;
  width: 90%;
  display: flex;
  gap: 40px;
  padding: 30px;
  position: relative;
}

.modal-left img {
  width: 250px;
  height: 250px;
  object-fit: cover;
}

.modal-right {
  flex: 1;
}

.modal-right h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-right .ratings .stars i {
  color: var(--gold);
}

.modal-right .rating-number {
  margin-left: 10px;
  color: #ccc;
}

.modal-right p {
  margin: 20px 0;
  color: #ddd;
  line-height: 1.6;
}

.modal-right .btn-primary {
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Responsive */
@media (max-width:768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    flex-direction: column;
    gap: 20px;
  }

  .modal-left img {
    width: 100%;
    height: auto;
  }
}




/* ================= FAQ SECTION ================= */
.faq-section {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.faq-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left: FAQs */
.faq-left {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 8px;
}

/* Accordion FAQ */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}

.faq-question {
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.faq-question::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 12px;
}

.faq-item.active .faq-question::after {
  content: "\f106";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-bottom: 0;
  color: #ccc;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 12px;
}

/* Right: Form */
.faq-right {
  flex: 1;
  min-width: 300px;
}

.faq-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-form label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.faq-form input,
.faq-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}

.faq-form input:focus,
.faq-form textarea:focus {
  outline: 2px solid var(--gold);
}

.faq-form button {
  background: var(--gold);
  color: #000;
  padding: 14px 0;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.faq-form button:hover {
  background: linear-gradient(135deg, var(--gold), #ffd700cc);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-inner {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    min-width: 100%;
  }

  .faq-left {
    margin-bottom: 50px;
  }
}




/* ================= FOOTER ================= */
.footer {
  background: #000;
  color: #fff;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}

/* Left: Logo + Description */
.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-left p {
  color: #ccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Right: Social + Newsletter */
.footer-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: #000;
}

.newsletter h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 12px 15px;
  border: none;
  border-radius: 0;
  background: #111;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.newsletter input:focus {
  outline: 2px solid var(--gold);
}

.newsletter button {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.newsletter button:hover {
  background: linear-gradient(135deg, var(--gold), #ffd700cc);
}

/* Middle: Navigation Links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px auto 40px;
  max-width: 1400px;
}

.nav-group {
  flex: 1;
  min-width: 160px;
}

.nav-group h5 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.nav-group a {
  display: block;
  text-decoration: none;
  color: #ccc;
  font-size: 0.875rem;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

.nav-group a:hover {
  color: var(--gold);
}

/* Bottom Copyright */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: #777;
}

.footer-bottom hr {
  border-color: #333;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    justify-content: space-between;
  }

  .nav-group {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }

  .nav-group {
    flex: 1 1 100%;
  }
}
