@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");

:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bb9a49; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Global body background */
body {
  background-color: #000000;
}
.justify-content-center{
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image is set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: McQueen;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 240px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}
   /* FAQ Section Styles */
    .luxury-faq-section {
      background-color: #000000;
      padding: 100px 0;
    }
    .faq-header {
      margin-bottom: 60px;
    }
    .faq-header h2 {
      font-family: Coldiac;
      font-size: 42px;
      font-weight: 400;
      text-transform: uppercase;
      color: #d4af37;
      margin: 0;
    }
    .faq-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }
    .faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .faq-item:hover {
      border-color: #d4af37;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .faq-question h3 {
      font-family: McQueen;
      font-size: 20px;
      font-weight: 500;
      color: #ffffff;
      margin: 0;
      padding-right: 20px;
    }
    .faq-question i {
      font-size: 1.2rem;
      color: #ffffff;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 30px 25px 30px;
    }
    .faq-answer p {
      font-family: McQueen;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cccccc;
      margin: 0;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .luxury-faq-section {
        padding: 60px 0;
      }
      .faq-header h2 {
        font-family: Coldiac;
        font-size: 1.8rem;
      }
      .faq-question {
        padding: 20px;
      }
      .faq-question h3 {
        font-family: McQueen;
        font-size: 1rem;
      }
      .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
      }
      .faq-answer p {
        font-family: McQueen;
      }
    }
    @media (max-width: 576px) {
      .faq-header h2 {
        font-family: Coldiac;
        font-size: 1.5rem;
      }
      .faq-question h3 {
        font-family: McQueen;
        font-size: 0.95rem;
      }
      .faq-answer p {
        font-family: McQueen;
        font-size: 0.9rem;
      }
    }
    /* Stats Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Stat Card */
    .stat-card {
      background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
      border: 1px solid #2a2a2a;
      border-radius: 20px;
      padding: 50px 30px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    /* Stat Icon */
    .stat-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      padding: 15px;
      transition: all 0.4s ease;
    }

    .stat-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: brightness(1.2);
    }

    /* Stat Number */
    .stat-number {
      font-family: Coldiac;
      font-size: 30px;
      font-weight: 400;
      color: #ffffff;
      margin-bottom: 15px;
      line-height: 1;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    /* Stat Label */
    .stat-label {
      font-family: McQueen;
      font-size: 18px;
      font-weight: 400;
      color: #ffffff;
      line-height: 1.5;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }
    
    /* Responsive */
    @media (max-width: 1199px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }
      
      .stat-card {
        padding: 40px 25px;
      }
      
      .stat-number {
        font-family: Coldiac;
        font-size: 2.5rem;
      }
      
      .stat-label {
        font-family: McQueen;
      }
    }
    /* Why Choose Us Section */
    .why-choose-us-section {
      background-color: #000000;
      padding: 100px 0;
    }
    .why-choose-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
    }
    .why-choose-image {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    }
    .why-choose-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .why-choose-text h2 {
      font-family: Coldiac;
      font-size: 42px;
      font-weight: 400;
      text-transform: uppercase;
      color: #d4af37;
      margin-bottom: 30px;
      line-height: 1.2;
    }
    .why-choose-text p {
      font-family: McQueen;
      font-size: 18px;
      line-height: 1.8;
      color: #ffffff;
      margin-bottom: 20px;
    }
    .why-choose-text p:last-child {
      margin-bottom: 0;
    }
    .why-choose-text .highlight {
      font-weight: 600;
      color: #ffffff;
    }
     @media (max-width: 992px) {
      .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .why-choose-text h2 {
        font-family: Coldiac;
        font-size: 2.2rem;
      }
      .why-choose-text p {
        font-family: McQueen;
      }
    }
    @media (max-width: 768px) {
      .why-choose-us-section {
        padding: 60px 0;
      }
      .why-choose-text h2 {
        font-family: Coldiac;
        font-size: 1.8rem;
      }
      .why-choose-text p {
        font-family: McQueen;
        font-size: 0.95rem;
      }
    }
    @media (max-width: 576px) {
      .why-choose-text h2 {
        font-family: Coldiac;
        font-size: 1.5rem;
      }
      
      .why-choose-text p {
        font-family: McQueen;
      }
    }
    /* Testimonials Section */
    .testimonials-header {
      margin-bottom: 60px;
    }

    .testimonials-header h3 {
      font-family: McQueen;
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      text-align: left;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .testimonial-card {
      background-color: #1a1a1a;
      border: 1px solid #333333;
      border-radius: 15px;
      padding: 30px;
      transition: all 0.3s ease;
      position: relative;
    }

    .testimonial-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .testimonial-icon span {
      font-family: Georgia, serif;
      font-size: 24px;
      color: #bb9a49;
      font-weight: bold;
    }

    .testimonial-text {
      font-family: McQueen;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cccccc;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-author {
      font-family: McQueen;
      font-size: 0.9rem;
      color: #ffffff;
      font-weight: 500;
    }
     /* Testimonials Section Styles */
  .testimonials-section {
    padding: 100px 0;
  }

  .testimonials-section .section-header {
    margin-bottom: 60px;
  }

  .testimonials-section .section-header h2 {
    font-family: McQueen;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: left;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    width: 100%;
  }

  /* Testimonial Card */
  .testimonial-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }

  .testimonial-card:hover::before {
    opacity: 1;
  }

  /* Avatar */
  .avatar-initials {
    font-family: McQueen;
    font-size: 1.2rem;
    font-weight: 600;
    color: #bb9a49;
    text-transform: lowercase;
  }

  /* Testimonial Content */
  .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
    flex: 1;
  }

  .testimonial-text em {
    font-style: italic;
    color: #cccccc;
  }

  .testimonial-author {
    font-family: McQueen;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

.testimonial-text {
  position: relative;
  padding-top: 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cccccc;
  margin: 0;
  flex: 1;
}

/* Opening quotation mark */
.testimonial-text::before {
  content: "❝";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
  color: #bb9a49;
  letter-spacing: -6px;
  opacity: 0.9;
}

/* Closing quotation mark - inline with text */
.testimonial-text::after {
  content: " ❞";
  font-size: 26px;
  font-family: Georgia, "Times New Roman", serif;
  color: #bb9a49;
  opacity: 0.9;
  vertical-align: baseline;
  line-height: 0;
}

  /* Responsive Styles */
  @media (max-width: 991px) {
    .testimonials-section {
      padding: 80px 0;
      font-family: McQueen;
    }

    .testimonials-section .section-header h2 {
      font-size: 1.75rem;
    }

    .testimonial-card {
      min-height: 260px;
    }
  }

  @media (max-width: 767px) {
    .testimonials-section {
      padding: 60px 0;
      font-family: McQueen;
    }

    .testimonials-section .section-header {
      margin-bottom: 40px;
    }

    .testimonials-section .section-header h2 {
      font-size: 1.5rem;
    }

    .testimonial-card {
      padding: 30px 25px;
      min-height: auto;
    }

    .testimonial-avatar {
      width: 45px;
      height: 45px;
      min-width: 45px;
    }

    .avatar-initials {
      font-size: 1.1rem;
    }

    .testimonial-text {
      font-size: 0.9rem;
    }

    .testimonial-author {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 576px) {
    .testimonial-card {
      padding: 25px 20px;
    }

    .testimonial-text {
      font-size: 0.85rem;
      line-height: 1.6;
    }
  }
   @media (max-width: 992px) {
   .testimonials-grid {
        grid-template-columns: 1fr;
      }
       
   }
   
    @media (max-width: 768px) {

      .testimonial-card {
        padding: 25px;
      }
      
      .testimonial-text {
        font-family: McQueen;
      }
      
      .testimonial-author {
        font-family: McQueen;
      }
    }
    
        @media (max-width: 576px) {

      .testimonials-header h3 {
        font-family: McQueen;
      }

      .testimonials-grid {
        gap: 20px;
      }
      
      .testimonial-text {
        font-family: McQueen;
      }
      
      .testimonial-author {
        font-family: McQueen;
      }
        }
        
         /* About Us Section */
    .about-us-section {
      background-color: #000000;
      padding: 100px 0;
    }

    .about-section-label {
      font-family: McQueen;
      font-size: 20px;
      font-weight: 500;
      color: #ffffff;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .about-content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 100px;
    }

    .about-text h2 {
      font-family: Coldiac;
      font-size: 42px;
      font-weight: 400;
      text-transform: uppercase;
      color: #d4af37;
      margin-bottom: 40px;
      line-height: 1.2;
    }

    .about-text p {
      font-family: McQueen;
      font-size: 1rem;
      line-height: 1.8;
      color: #ffffff;
      margin-bottom: 25px;
    }

    .about-text p:last-child {
      margin-bottom: 0;
    }

    .about-text .brand-name {
      font-style: italic;
      font-weight: 500;
      color: #ffffff;
    }

    .about-text .closing-statement {
      font-weight: 500;
      margin-top: 35px;
    }

    .about-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
      /* Responsive */
    @media (max-width: 992px) {
      .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }


      .about-text h2 {
        font-family: Coldiac;
        font-size: 2.2rem;
      }
      
      .about-text p {
        font-family: McQueen;
      }
    }
    
   