
/* =========================================================
   1. GLOBAL & RESET FIXES
   ========================================================= */
* {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  overflow-x: hidden; /* Side scroll bar hatane ke liye */
}

/* =========================================================
   2. HERO SECTION FIX
   ========================================================= */
.hero, 
.hero-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Hero Content */
.hero-content, .hero-text {
  max-width: 900px;
  width: 100%;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 54px) !important; /* Mobile pe chhota, Desktop pe bada auto-adjust */
  margin-bottom: 15px;
}

/* =========================================================
   3. GALLERY SECTION FIX
   ========================================================= */
.gallery-section, 
.gallery-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Responsive Grid for Gallery Images */
.gallery-grid, 
.image-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  width: 100%;
}

.gallery-item, 
.gallery-card {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img, 
.gallery-card img,
.gallery-grid img {
  width: 100% !important;
  height: 250px !important;
  object-fit: cover !important; /* Images distort/pichak nahi hongi */
  display: block;
}

/* =========================================================
   4. MOBILE SPECIFIC MEDIA QUERY (Under 768px Phones)
   ========================================================= */
@media screen and (max-width: 768px) {
  
  /* Hero Section Mobile Adjustments */
  .hero, .hero-section {
    min-height: 60vh !important;
    padding: 30px 15px !important;
  }

  .hero h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .hero p {
    font-size: 14px !important;
  }

  /* Gallery Single Column on Small Screen */
  .gallery-grid, 
  .image-grid {
    grid-template-columns: 1fr !important; /* Mobile me 1 ke niche 1 aayenge */
    gap: 15px !important;
  }

  .gallery-item img, 
  .gallery-card img,
  .gallery-grid img {
    height: 220px !important;
  }

  /* Form / Cards Flex Layout Fix */
  .form-row, 
  .flex-container {
    flex-direction: column !important;
    width: 100% !important;
  }
}

/* Mobile Screens (Phones - 768px se kam) ke liye special rules */
@media screen and (max-width: 768px) {
  
  /* 1. Flexbox / Grid ko Single Column (1 line me ek) kar do */
  .form-row, 
  .gallery-grid, 
  .wedding-card-container {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  /* 2. Container ki padding mobile ke hisaab se adjust karo */
  .luxury-transport-wrapper,
  .luxury-card {
    padding: 20px 15px !important;
    width: 100% !important;
  }

  /* 3. Heading / Titles font size thoda chhota karo */
  .gold-gradient-text {
    font-size: 22px !important;
  }

  /* 4. Images responsive karo taaki screen se bahar na jayein */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}



/* =========================================
   IMAGE ZOOM ONLY
========================================= */

.entry-product-image {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.entry-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

/* Hover / click-style zoom */
.entry-product-image:hover img {
    transform: scale(1.12);
}
.entry-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    padding: 15px;

    display: block;

    transition: transform 0.6s ease;
}

.entry-product-card:hover .entry-product-image img {
    transform: scale(1.05);
}
/* =========================================
   ENTRY PRODUCT IMAGE
========================================= */

.entry-product-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #111;
}

/* Main Image */

.entry-product-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    image-rendering: auto;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* Hover */

.entry-product-card:hover .entry-product-image img {
    transform: scale(1.04);
}


/* Dark Premium Overlay */

.entry-product-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.05) 55%,
            rgba(0,0,0,0.12)
        );

    pointer-events: none;
}


/* Premium Badge */

.entry-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    z-index: 3;

    padding: 6px 10px;

    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(212,175,55,0.7);

    color: #d4af37;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    backdrop-filter: blur(5px);
}

.event-gallery-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 35px;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.event-gallery-card {
    position: relative;
    height: 145px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: 0.4s ease;
}

.event-gallery-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.event-gallery-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.15)
        );
    transition: 0.4s ease;
}

.event-gallery-card:hover .event-gallery-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95),
            rgba(212, 175, 55, 0.15)
        );
}

.event-gallery-card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    z-index: 2;
}

.event-gallery-card h4 {
    margin: 0;
    color: #d4af37;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    font-weight: 700;
}

.event-gallery-card p {
    margin: 7px 0 0;
    color: #ddd;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.event-gallery-card p span {
    color: #d4af37;
    transition: 0.3s ease;
}

.event-gallery-card:hover p span {
    margin-left: 6px;
}

.event-gallery-button-wrapper {
    display: flex;
    justify-content: center;
}

.event-gallery-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border: 1px solid #d4af37;
    color: #d4af37;
    background: transparent;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: 0.3s ease;
}

.event-gallery-button:hover {
    background: #d4af37;
    color: #000;
}

.event-gallery-button span {
    transition: 0.3s ease;
}

.event-gallery-button:hover span {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .event-gallery-section {
        padding: 0 15px 25px;
    }

    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .event-gallery-card {
        height: 125px;
    }

    .event-gallery-card-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .event-gallery-card h4 {
        font-size: 12px;
    }

    .event-gallery-card p {
        font-size: 8px;
    }
}


/* =========================================================
   QOREXA EVENTS HEADER
   ========================================================= */

.qorexa-header {
    width: 100%;
    background: #07111c;
    border-bottom: 1px solid rgba(214, 166, 58, 0.18);
}

.qorexa-header-inner {
    width: 100%;
    max-width: 1400px;
    min-height: 78px;

    margin: 0 auto;
    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.qorexa-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.qorexa-logo img {
    display: block;

    width: auto;
    height: 48px;

    max-width: 180px;

    object-fit: contain;
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.qorexa-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 30px;

    min-width: 0;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.qorexa-nav {
    display: flex;
    align-items: center;

    gap: 27px;

    white-space: nowrap;
}

.qorexa-nav a {
    position: relative;

    display: inline-block;

    padding: 5px 0;

    color: #d1d5db;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.7px;

    text-decoration: none;
    text-transform: uppercase;

    transition: color 0.3s ease;
}

.qorexa-nav a:hover {
    color: #d6a63a;
}


/* =========================================================
   ACTIVE LINK
   ========================================================= */

.qorexa-nav a.active {
    color: #d6a63a;
}

.qorexa-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -3px;

    height: 1px;

    background: #d6a63a;
}


/* =========================================================
   HOVER LINE
   ========================================================= */

.qorexa-nav a:not(.active)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 100%;
    height: 1px;

    background: #d6a63a;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;
}

.qorexa-nav a:not(.active):hover::after {
    transform: scaleX(1);
}


/* =========================================================
   BOOK CONSULTATION
   ========================================================= */

.qorexa-book-consultation {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 9px 16px;

    border: 1px solid #d6a63a;

    color: #d6a63a;
    background: transparent;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.4px;

    text-decoration: none;
    text-transform: uppercase;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.qorexa-book-consultation:hover {
    background: #d6a63a;
    color: #050505;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {

    .qorexa-header-inner {
        padding: 0 20px;
    }

    .qorexa-header-right {
        gap: 18px;
    }

    .qorexa-nav {
        gap: 17px;
    }

    .qorexa-nav a {
        font-size: 9px;
        letter-spacing: 1.1px;
    }

    .qorexa-book-consultation {
        padding: 8px 12px;
        font-size: 9px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .qorexa-header-inner {
        min-height: 68px;
        padding: 0 15px;
    }

    .qorexa-logo img {
        height: 42px;
        max-width: 155px;
    }

    .qorexa-nav,
    .qorexa-book-consultation {
        display: none;
    }

    .qorexa-header-right {
        gap: 0;
    }

}
/* =========================================================
   QOREXA EVENTS
   GALLERY LOWER SECTION
========================================================= */

.gallery-lower-section {
    width: 100%;
    background: #020b16;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.gallery-lower-section * {
    box-sizing: border-box;
}

.gallery-lower-section img {
    width: 100%;
    display: block;
}

.gallery-lower-section a {
    text-decoration: none;
}

.section-mini-title,
.small-section-title {
    color: #e6ad2f;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}


/* =========================================================
   PROCESS WRAPPER
========================================================= */

.gallery-process-wrapper {
    width: calc(100% - 50px);
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 12px;
    padding: 25px 0;
}


/* =========================================================
   BEFORE AFTER
========================================================= */

.before-after-section {
    border: 1px solid rgba(214, 157, 35, 0.45);
    background: linear-gradient(
        145deg,
        #071422,
        #020a13
    );
    padding: 10px;
}

.before-after-box {
    width: 100%;
}

.before-after-images {
    height: 190px;
    display: flex;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 157, 35, 0.25);
}

.before-after-image {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.before-image img {
    filter: grayscale(40%);
}

.after-image img {
    filter: none;
}

.before-after-label {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    padding: 5px 14px;
    font-size: 9px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.before-after-slider {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: #e5aa28;
    z-index: 5;
    cursor: ew-resize;
}

.before-after-slider::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e5aa28;
    background: #061321;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slider-arrow {
    position: relative;
    z-index: 2;
    font-size: 18px;
    color: #e5aa28;
}

.before-after-slider .slider-arrow:first-child {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
}

.before-after-slider .slider-arrow:last-child {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}


/* =========================================================
   BEHIND CELEBRATION
========================================================= */

.behind-celebration-container {
    border: 1px solid rgba(214, 157, 35, 0.45);
    padding: 10px;
    background: linear-gradient(
        145deg,
        #061421,
        #020a12
    );
}

.behind-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.behind-heading p {
    margin: 0;
    color: #e4a82b;
    font-family: Georgia, serif;
    font-size: 17px;
    letter-spacing: 1px;
}

.heading-line {
    height: 1px;
    width: 70px;
    background: linear-gradient(
        to right,
        transparent,
        #c89627
    );
}

.celebration-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.celebration-process-card {
    border: 1px solid rgba(210, 155, 40, 0.4);
    background: #071522;
    min-width: 0;
    transition: 0.3s ease;
    overflow: hidden;
}

.celebration-process-card:hover {
    transform: translateY(-4px);
    border-color: #e5ad31;
}

.process-image {
    height: 105px;
    position: relative;
    overflow: hidden;
}

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

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

.process-number {
    position: absolute;
    top: 5px;
    left: 6px;
    color: #e5ad31;
    font-size: 18px;
    font-family: Georgia, serif;
    font-weight: bold;
    text-shadow: 0 2px 5px #000;
}

.process-content {
    padding: 7px 8px 9px;
}

.process-content h3 {
    margin: 0;
    font-size: 11px;
    color: #ffffff;
    letter-spacing: 0.8px;
}

.process-content p {
    margin: 3px 0 0;
    color: #aeb5bc;
    font-size: 9px;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.why-choose-section {
    width: calc(100% - 50px);
    max-width: 1450px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    border: 1px solid rgba(215, 159, 40, 0.4);
    background: linear-gradient(
        120deg,
        #061422,
        #020b15
    );
}

.why-choose-intro {
    padding: 18px;
    border-right: 1px solid rgba(215, 159, 40, 0.3);
}

.gold-small-line {
    width: 35px;
    height: 2px;
    display: block;
    background: #dca32b;
    margin-bottom: 8px;
}

.why-choose-intro h2 {
    font-family: Georgia, serif;
    color: #e5ad30;
    font-size: 18px;
    line-height: 1.15;
    margin: 0 0 10px;
}

.why-choose-intro h2 strong {
    color: #ffffff;
}

.why-choose-intro p {
    font-size: 10px;
    line-height: 1.5;
    color: #c0c7cd;
    margin-bottom: 15px;
}

.gold-outline-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e3a82c;
    border: 1px solid #dba42b;
    padding: 7px 10px;
    font-size: 8px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.gold-outline-button:hover {
    background: #dba42b;
    color: #050b11;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.why-feature-card {
    padding: 15px 10px;
    text-align: center;
    border-right: 1px solid rgba(215, 159, 40, 0.2);
    transition: 0.3s ease;
}

.why-feature-card:last-child {
    border-right: none;
}

.why-feature-card:hover {
    background: rgba(224, 164, 40, 0.06);
}

.why-feature-icon {
    color: #e5ad30;
    font-size: 25px;
    height: 35px;
}

.why-feature-card h3 {
    color: #ffffff;
    font-size: 11px;
    margin: 8px 0 5px;
}

.why-feature-card p {
    color: #aab2b9;
    font-size: 9px;
    line-height: 1.4;
    margin: 0;
}


/* =========================================================
   SOCIAL TRUST
========================================================= */

.social-trust-section {
    width: calc(100% - 50px);
    max-width: 1450px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.1fr;
    gap: 10px;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.client-testimonial,
.instagram-moments,
.trusted-brands {
    border: 1px solid rgba(215, 159, 40, 0.4);
    background: #061421;
    padding: 14px;
}

.testimonial-content {
    text-align: center;
    padding: 8px 12px;
}

.quote-mark {
    display: block;
    font-family: Georgia, serif;
    color: #dca42c;
    font-size: 30px;
    line-height: 25px;
}

.testimonial-content p {
    color: #c4cbd1;
    font-size: 10px;
    line-height: 1.5;
    min-height: 50px;
    margin: 6px 0;
}

.testimonial-stars {
    color: #e4a62b;
    letter-spacing: 3px;
    font-size: 13px;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    margin-top: 8px;
}

.testimonial-client strong {
    color: #ffffff;
    font-size: 10px;
}

.testimonial-client span {
    color: #9ba3aa;
    font-size: 8px;
    margin-top: 2px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}

.testimonial-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 1px solid #dca42c;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.testimonial-dot.active {
    background: #dca42c;
}


/* =========================================================
   INSTAGRAM
========================================================= */

.instagram-handle {
    text-align: center;
    color: #929ca5;
    font-size: 9px;
    margin: 5px 0 8px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.instagram-item {
    position: relative;
    height: 65px;
    overflow: hidden;
    border: 1px solid rgba(215, 159, 40, 0.25);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.instagram-item:hover img {
    transform: scale(1.12);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e5ad30;
    font-size: 18px;
    opacity: 0;
    transition: 0.3s ease;
}

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

.instagram-follow-button {
    margin: 10px auto 0;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e4a72c;
    border: 1px solid #dca42c;
    padding: 6px 12px;
    font-size: 8px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.instagram-follow-button:hover {
    background: #dca42c;
    color: #050b11;
}


/* =========================================================
   TRUSTED BRANDS
========================================================= */

.trusted-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 12px;
}

.trusted-brand {
    height: 42px;
    background: #f5f2e9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-radius: 2px;
}

.trusted-brand img {
    max-width: 90%;
    max-height: 30px;
    object-fit: contain;
}


/* =========================================================
   FINAL CTA
========================================================= */

.gallery-final-cta {
    width: 100%;
    border-top: 1px solid rgba(214, 157, 35, 0.45);
    background:
        linear-gradient(
            90deg,
            #020912,
            #071827,
            #020912
        );
}

.cta-content {
    width: calc(100% - 50px);
    max-width: 1450px;
    min-height: 95px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1.8fr auto;
    align-items: center;
    gap: 20px;
}

.cta-title {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.cta-title span {
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 18px;
}

.cta-title strong {
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 21px;
}

.cta-title em {
    color: #e2a52c;
    font-family: Georgia, serif;
    font-size: 18px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-icon {
    width: 27px;
    height: 27px;
    border: 1px solid #dca42c;
    color: #e4a82d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.cta-contact-item small {
    display: block;
    color: #909ba4;
    font-size: 8px;
    margin-bottom: 2px;
}

.cta-contact-item a,
.cta-contact-item > div > span {
    color: #ffffff;
    font-size: 9px;
}

.cta-book-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        #f2c14d,
        #c98e1e
    );
    color: #07111a;
    padding: 11px 17px;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: 0.3s ease;
}

.cta-book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 163, 45, 0.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .gallery-process-wrapper {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        grid-template-columns: 1fr;
    }

    .why-choose-intro {
        border-right: none;
        border-bottom: 1px solid rgba(215, 159, 40, 0.3);
        text-align: center;
    }

    .gold-small-line {
        margin-left: auto;
        margin-right: auto;
    }

    .social-trust-section {
        grid-template-columns: 1fr 1fr;
    }

    .client-testimonial {
        grid-column: span 2;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 0;
    }

    .cta-title {
        justify-content: center;
    }

    .cta-contact {
        flex-wrap: wrap;
    }

    .cta-book-button {
        margin: auto;
    }
}


@media (max-width: 768px) {

    .gallery-process-wrapper,
    .why-choose-section,
    .social-trust-section,
    .cta-content {
        width: calc(100% - 24px);
    }

    .celebration-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-feature-card:nth-child(2),
    .why-feature-card:nth-child(4) {
        border-right: none;
    }

    .why-feature-card {
        border-bottom: 1px solid rgba(215, 159, 40, 0.2);
    }

    .social-trust-section {
        grid-template-columns: 1fr;
    }

    .client-testimonial {
        grid-column: auto;
    }

    .instagram-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .cta-contact {
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 480px) {

    .before-after-images {
        height: 145px;
    }

    .behind-heading p {
        font-size: 13px;
    }

    .heading-line {
        width: 30px;
    }

    .celebration-process-grid {
        gap: 5px;
    }

    .process-image {
        height: 85px;
    }

    .process-content h3 {
        font-size: 9px;
    }

    .process-content p {
        font-size: 8px;
    }

    .why-choose-features {
        grid-template-columns: 1fr 1fr;
    }

    .why-feature-card {
        padding: 12px 5px;
    }

    .why-feature-card h3 {
        font-size: 9px;
    }

    .why-feature-card p {
        font-size: 8px;
    }

    .instagram-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .instagram-item {
        height: 48px;
    }

    .trusted-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title span,
    .cta-title strong,
    .cta-title em {
        font-size: 16px;
    }

    .cta-contact-item a,
    .cta-contact-item > div > span {
        font-size: 9px;
    }
}

/* =========================================================
   JAVASCRIPT ANIMATION STATES
========================================================= */

.celebration-process-card {
    opacity: 0;
    transform: translateY(20px);
}

.celebration-process-card.process-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.celebration-process-card:nth-child(1) {
    transition-delay: 0.05s;
}

.celebration-process-card:nth-child(2) {
    transition-delay: 0.15s;
}

.celebration-process-card:nth-child(3) {
    transition-delay: 0.25s;
}

.celebration-process-card:nth-child(4) {
    transition-delay: 0.35s;
}


/* Testimonial fade */

#testimonialText,
#testimonialName {
    transition: opacity 0.2s ease;
}


/* Missing image */

.image-not-found {
    background:
        linear-gradient(
            135deg,
            #091827,
            #020912
        );

    display: flex;
    align-items: center;
    justify-content: center;
}

.image-not-found::after {
    content: "QOREXA EVENTS";
    color: #dca42c;
    font-size: 8px;
    letter-spacing: 2px;
}


/* =====================================================
   GRAND ENTRY / MAKE YOUR ENTRANCE SECTION
   QOREXA EVENTS
===================================================== */

:root {
    --entry-bg: #090909;
    --entry-card: #111111;
    --entry-card-2: #151515;
    --entry-gold: #c9a45c;
    --entry-gold-light: #e2c27d;
    --entry-gold-dark: #8d6d32;
    --entry-white: #f5f1e8;
    --entry-muted: #a9a9a9;
    --entry-border: rgba(201, 164, 92, 0.25);
    --entry-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}


/* =====================================================
   MAIN SECTION
===================================================== */

.grand-entry-section {
    width: 100%;
    padding: 100px 20px;

    background:
        radial-gradient(
            circle at top center,
            rgba(201, 164, 92, 0.08),
            transparent 45%
        ),
        var(--entry-bg);

    color: var(--entry-white);
    overflow: hidden;
}


.grand-entry-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.grand-entry-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}


.grand-entry-eyebrow {
    display: block;
    margin-bottom: 15px;

    color: var(--entry-gold);

    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}


.grand-entry-heading h2 {
    margin: 0;

    color: var(--entry-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 5vw, 62px);

    line-height: 1.05;
    font-weight: 400;
}


.grand-entry-heading h2 strong {
    display: block;

    color: var(--entry-gold-light);

    font-weight: 500;
    font-style: italic;
}


.grand-entry-heading p {
    max-width: 650px;

    margin: 22px auto 0;

    color: var(--entry-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   MAKE YOUR ENTRANCE
   DESKTOP = 6 CARDS IN ONE ROW
===================================================== */

.entrance-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 16px;

    width: 100%;
}


/* =====================================================
   ENTRANCE CARD
===================================================== */

.entrance-card {
    position: relative;

    width: 100%;
    min-width: 0;

    padding: 0;

    border:
        1px solid
        var(--entry-border);

    background: var(--entry-card);

    cursor: pointer;

    overflow: hidden;

    text-align: left;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}


.entrance-card:hover {
    transform: translateY(-8px);

    border-color: var(--entry-gold);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(201, 164, 92, 0.08);
}


/* =====================================================
   IMAGE CONTAINER
===================================================== */

.img-container {
    position: relative;

    width: 100%;
    height: 245px;

    overflow: hidden;
}


/* =====================================================
   ENTRANCE IMAGE
===================================================== */

.entrance-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(0.2, 0.7, 0.2, 1),

        filter 0.5s ease;
}


.entrance-card:hover .entrance-img {
    transform: scale(1.08);

    filter: saturate(1.1);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.img-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.05) 70%
        );

    pointer-events: none;
}


.img-overlay::after {
    content: "EXPLORE →";

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -40%);

    color: #ffffff;

    font-size: 8px;

    letter-spacing: 2px;

    opacity: 0;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.entrance-card:hover
.img-overlay::after {
    opacity: 1;

    transform:
        translate(-50%, -50%);
}


/* =====================================================
   CATEGORY LABEL
===================================================== */

.entrance-label {
    position: relative;

    margin: 0;

    padding: 17px 10px;

    color: var(--entry-gold-light);

    background: var(--entry-card);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 500;

    letter-spacing: 0.5px;

    text-align: center;
}


.entrance-label::after {
    content: "View Collection →";

    display: block;

    margin-top: 7px;

    color: #777777;

    font-family:
        Arial,
        sans-serif;

    font-size: 7px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.entrance-card:hover
.entrance-label::after {
    color: var(--entry-gold);
}


/* =====================================================
   ENTRY EXPLORER / POPUP
===================================================== */

.entry-explorer {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.entry-explorer.active {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}


/* =====================================================
   POPUP OVERLAY
===================================================== */

.entry-explorer-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.88);

    backdrop-filter: blur(8px);
}


/* =====================================================
   POPUP BOX
===================================================== */

.entry-explorer-box {
    position: relative;

    z-index: 2;

    width:
        min(1250px, 100%);

    max-height: 92vh;

    padding: 35px;

    overflow-y: auto;

    background:
        radial-gradient(
            circle at top,
            rgba(201, 164, 92, 0.07),
            transparent 35%
        ),
        #0d0d0d;

    border:
        1px solid
        var(--entry-border);

    box-shadow:
        var(--entry-shadow);

    transform:
        translateY(25px)
        scale(0.98);

    transition:
        transform 0.4s ease;
}


.entry-explorer.active
.entry-explorer-box {
    transform:
        translateY(0)
        scale(1);
}


/* =====================================================
   POPUP SCROLLBAR
===================================================== */

.entry-explorer-box::-webkit-scrollbar {
    width: 6px;
}


.entry-explorer-box::-webkit-scrollbar-track {
    background: #090909;
}


.entry-explorer-box::-webkit-scrollbar-thumb {
    background:
        var(--entry-gold-dark);
}


.entry-explorer-box::-webkit-scrollbar-thumb:hover {
    background:
        var(--entry-gold);
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.entry-explorer-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 42px;
    height: 42px;

    border:
        1px solid
        var(--entry-border);

    background:
        rgba(0, 0, 0, 0.5);

    color:
        var(--entry-gold-light);

    font-size: 27px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.entry-explorer-close:hover {
    background:
        var(--entry-gold);

    border-color:
        var(--entry-gold);

    color: #000000;
}


/* =====================================================
   POPUP HEADER
===================================================== */

.entry-explorer-header {
    padding:
        10px 50px 30px;

    text-align: center;
}


.entry-explorer-header > span {
    display: block;

    margin-bottom: 12px;

    color:
        var(--entry-gold);

    font-size: 9px;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.entry-explorer-header h2 {
    margin: 0;

    color:
        var(--entry-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(28px, 4vw, 46px);

    font-weight: 400;
}


.entry-explorer-header p {
    margin:
        12px auto 0;

    color:
        var(--entry-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   CATEGORY TABS
===================================================== */

.entry-category-tabs {
    display: flex;

    gap: 8px;

    margin-bottom: 30px;

    padding-bottom: 12px;

    overflow-x: auto;

    scrollbar-width: thin;
}


.entry-category-tab {
    flex:
        0 0 auto;

    padding:
        11px 16px;

    border:
        1px solid
        rgba(201, 164, 92, 0.22);

    background:
        #111111;

    color:
        #9b9b9b;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.entry-category-tab:hover {
    color:
        var(--entry-gold-light);

    border-color:
        var(--entry-gold);
}


.entry-category-tab.active {
    background:
        var(--entry-gold);

    border-color:
        var(--entry-gold);

    color: #080808;
}


/* =====================================================
   PRODUCTS GRID
===================================================== */

.entry-products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.entry-product-card {
    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        rgba(201, 164, 92, 0.18);

    background:
        #111111;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.entry-product-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(201, 164, 92, 0.7);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(201, 164, 92, 0.05);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.entry-product-image {
    position: relative;

    width: 100%;

    height: 190px;

    overflow: hidden;

    background:
        #181818;
}


.entry-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.entry-product-card:hover
.entry-product-image img {
    transform:
        scale(1.07);
}


/* =====================================================
   PRODUCT BADGE
===================================================== */

.entry-product-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    padding:
        6px 8px;

    background:
        rgba(0, 0, 0, 0.72);

    border:
        1px solid
        rgba(201, 164, 92, 0.6);

    color:
        var(--entry-gold-light);

    font-size: 7px;

    letter-spacing: 1.5px;
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.entry-product-content {
    padding: 17px;
}


.entry-product-content h3 {
    margin: 0;

    min-height: 42px;

    color:
        var(--entry-white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 500;
}


.entry-product-content p {
    min-height: 32px;

    margin:
        7px 0 15px;

    color:
        #858585;

    font-size: 9px;

    line-height: 1.6;
}


/* =====================================================
   PRODUCT BOTTOM
===================================================== */

.entry-product-bottom {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =====================================================
   AVAILABLE ON REQUEST
===================================================== */

.availability {
    display: flex;

    align-items: center;

    gap: 7px;

    color:
        #9c9c9c;

    font-size: 8px;

    letter-spacing: 0.8px;
}


.availability-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #6fa85b;

    box-shadow:
        0 0 8px
        rgba(111, 168, 91, 0.6);
}


/* =====================================================
   BOOK BUTTON
===================================================== */

.entry-book-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    padding:
        11px 12px;

    border:
        1px solid
        var(--entry-gold);

    background:
        transparent;

    color:
        var(--entry-gold-light);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.entry-book-button:hover {
    background:
        var(--entry-gold);

    color: #000000;
}


/* =====================================================
   BODY LOCK
===================================================== */

body.entry-explorer-open {
    overflow: hidden;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .grand-entry-container {
        max-width: 1380px;
    }


    .entrance-grid {
        grid-template-columns:
            repeat(6, minmax(0, 1fr));

        gap: 18px;
    }


    .img-container {
        height: 270px;
    }


    .entrance-label {
        font-size: 14px;

        padding:
            19px 12px;
    }

}


/* =====================================================
   LAPTOP
   3 + 3
===================================================== */

@media (max-width: 1200px) {

    .entrance-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 18px;
    }


    .img-container {
        height: 260px;
    }


    .entry-products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =====================================================
   TABLET
   2 + 2 + 2
===================================================== */

@media (max-width: 768px) {

    .grand-entry-section {
        padding:
            70px 16px;
    }


    .grand-entry-heading {
        margin-bottom: 38px;
    }


    .grand-entry-heading p {
        font-size: 12px;
    }


    .entrance-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 13px;
    }


    .img-container {
        height: 220px;
    }


    .entrance-label {
        padding:
            15px 10px;

        font-size: 13px;
    }


    .entry-explorer {
        padding: 10px;
    }


    .entry-explorer-box {
        max-height: 95vh;

        padding:
            20px 15px;
    }


    .entry-explorer-header {
        padding:
            15px 35px 22px;
    }


    .entry-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    .entry-product-image {
        height: 150px;
    }


    .entry-product-content {
        padding: 12px;
    }


    .entry-product-content h3 {
        font-size: 13px;

        min-height: 37px;
    }


    .entry-product-content p {
        font-size: 8px;
    }

}


/* =====================================================
   MOBILE
   2 + 2 + 2
===================================================== */

@media (max-width: 480px) {

    .grand-entry-section {
        padding:
            55px 12px;
    }


    .grand-entry-eyebrow {
        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .grand-entry-heading h2 {
        font-size: 34px;
    }


    .grand-entry-heading p {
        font-size: 11px;

        line-height: 1.7;
    }


    .entrance-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .img-container {
        height: 175px;
    }


    .entrance-label {
        padding:
            12px 7px;

        font-size: 11px;
    }


    .entrance-label::after {
        margin-top: 5px;

        font-size: 6px;

        letter-spacing: 0.8px;
    }


    .entry-explorer-box {
        padding:
            15px 10px;
    }


    .entry-explorer-close {
        top: 9px;
        right: 9px;

        width: 35px;
        height: 35px;

        font-size: 23px;
    }


    .entry-explorer-header {
        padding:
            10px 25px 20px;
    }


    .entry-explorer-header h2 {
        font-size: 26px;
    }


    .entry-explorer-header p {
        font-size: 10px;
    }


    .entry-products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .entry-product-image {
        height: 125px;
    }


    .entry-product-content {
        padding: 9px;
    }


    .entry-product-content h3 {
        font-size: 11px;

        min-height: 32px;
    }


    .entry-product-content p {
        font-size: 7px;

        min-height: 25px;

        margin-bottom: 10px;
    }


    .availability {
        font-size: 6.5px;
    }


    .availability-dot {
        width: 5px;
        height: 5px;
    }


    .entry-book-button {
        padding:
            9px 5px;

        font-size: 6.5px;

        letter-spacing: 1px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .entrance-grid {
        gap: 7px;
    }


    .img-container {
        height: 145px;
    }


    .entrance-label {
        font-size: 10px;

        padding:
            9px 5px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .entrance-card,
    .entrance-img,
    .entry-product-card,
    .entry-product-image img,
    .entry-explorer-box {
        transition: none;
    }

}
 /* Base color variables */
  :root {
    --gold-400: #facc15;
    --gold-400-60: rgba(250, 204, 21, 0.6);
    --gold-400-80: rgba(250, 204, 21, 0.8);
    --gold-500-5: rgba(234, 179, 8, 0.05);
    --gold-500-20: rgba(234, 179, 8, 0.2);
    --gold-500-30: rgba(234, 179, 8, 0.3);
    --bg-dark-950: #030712;
    --bg-dark-950-80: rgba(3, 7, 18, 0.8);
    --bg-dark-900-60: rgba(17, 24, 39, 0.6);
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
  }

  /* Section Container */
  .featured-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  @media (min-width: 768px) {
    .featured-section {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  /* Section Header */
  .featured-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .featured-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold-400);
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Main Glassmorphism Card */
  .featured-card {
    position: relative;
    background-color: var(--bg-dark-900-60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-500-30);
    padding: 1.25rem;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  @media (min-width: 640px) {
    .featured-card {
      padding: 1.5rem;
    }
  }

  @media (min-width: 768px) {
    .featured-card {
      padding: 2rem;
    }
  }

  /* Layout Grid */
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }

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

  /* Left Content Block */
  .left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 0;
  }

  @media (min-width: 1024px) {
    .left-content {
      grid-column: span 4 / span 4;
      padding-right: 0.5rem;
    }
  }

  .number-badge {
    display: inline-block;
    border: 1px solid var(--gold-400-60);
    padding: 0.125rem 0.75rem;
    color: var(--gold-400);
    font-size: 0.75rem;
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    margin-bottom: 1rem;
    border-radius: 0.125rem;
    background-color: var(--gold-500-5);
  }

  .card-heading {
    font-family: Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 1.875rem;
    font-style: italic;
    color: var(--gold-400);
    font-weight: 500;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
  }

  @media (min-width: 640px) {
    .card-heading {
      font-size: 2.25rem;
    }
  }

  .card-subtext {
    font-size: 0.75rem;
    color: var(--text-gray-400);
    font-style: italic;
    margin-bottom: 1.5rem;
  }

  .tags-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    color: var(--text-gray-300);
    margin-bottom: 1.5rem;
  }

  .tag-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background-color: var(--bg-dark-950-80);
    border: 1px solid var(--gold-500-20);
    padding: 0.25rem 0.75rem;
    border-radius: 0.125rem;
  }

  .tag-item svg, .location-text svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--gold-400);
  }

  .location-text {
    font-size: 0.75rem;
    color: var(--text-gray-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .cta-button {
    margin-top: 2rem;
    border: 1px solid var(--gold-400-80);
    color: var(--gold-400);
    text-align: center;
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: all 300ms ease;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }

  .cta-button:hover {
    background-color: var(--gold-400);
    color: var(--bg-dark-950);
  }

  /* Right Gallery Grid */
  .right-gallery {
    position: relative;
    margin-top: 1rem;
  }

  @media (min-width: 1024px) {
    .right-gallery {
      grid-column: span 8 / span 8;
      margin-top: 0;
    }
  }

  .gallery-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.75rem;
    height: 100%;
    min-height: 380px;
  }

  @media (min-width: 768px) {
    .gallery-layout {
      min-height: 420px;
    }
  }

  /* Large Center Image */
  .main-img-box {
    grid-column: span 12 / span 12;
    min-height: 260px;
    position: relative;
    border: 1px solid var(--gold-500-30);
    overflow: hidden;
    border-radius: 0.125rem;
  }

  @media (min-width: 768px) {
    .main-img-box {
      grid-column: span 7 / span 7;
      min-height: 100%;
    }
  }

  /* Right 4-Image Grid */
  .sub-grid {
    grid-column: span 12 / span 12;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .sub-grid {
      grid-column: span 5 / span 5;
    }
  }

  .sub-img-box {
    height: 9rem; /* h-36 */
    border: 1px solid var(--gold-500-30);
    overflow: hidden;
    position: relative;
    border-radius: 0.125rem;
  }

  @media (min-width: 768px) {
    .sub-img-box {
      height: 100%;
    }
  }

  /* Image Hover Effects */
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
  }

  .main-img-box:hover .gallery-img,
  .sub-img-box:hover .gallery-img {
    transform: scale(1.05);
  }

  .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.6), transparent, transparent);
    opacity: 0;
    transition: opacity 300ms ease;
  }

  .main-img-box:hover .img-overlay {
    opacity: 1;
  }

  /* Navigation Arrows */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: var(--bg-dark-950);
    border: 1px solid var(--gold-400);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    z-index: 20;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .nav-btn:hover {
    background-color: var(--gold-400);
    color: var(--bg-dark-950);
  }

  .nav-btn.prev {
    left: -0.75rem;
  }

  .nav-btn.next {
    right: -0.75rem;
  }

  @media (min-width: 768px) {
    .nav-btn.prev {
      left: -1rem;
    }
    .nav-btn.next {
      right: -1rem;
    }
  }
</style>




/* Base variables */
  :root {
    --bg-dark-950: #030712;
    --bg-dark-950-40: rgba(3, 7, 18, 0.4);
    --bg-dark-900-40: rgba(17, 24, 39, 0.4);
    --gold-400: #facc15;
    --gold-400-80: rgba(250, 204, 21, 0.8);
    --gold-500-10: rgba(234, 179, 8, 0.1);
    --gold-500-20: rgba(234, 179, 8, 0.2);
    --text-gray-200: #e5e7eb;
  }

  /* Sticky Section Container */
  .category-filter-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gold-500-20);
    background-color: var(--bg-dark-950-40);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 5rem; /* top-20 */
    z-index: 40;
    width: 100%;
    overflow: hidden;
  }

  .category-filter-wrapper {
    width: 100%;
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  @media (min-width: 640px) {
    .category-filter-wrapper {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }

  /* Horizontal Scroll Tabs Container */
  .category-tabs-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    scroll-behavior: smooth;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .category-tabs-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }

  @media (min-width: 640px) {
    .category-tabs-container {
      gap: 0.75rem;
    }
  }

  @media (min-width: 768px) {
    .category-tabs-container {
      justify-content: center;
    }
  }

  /* Base Filter Buttons */
  .filter-btn {
    padding: 0.5rem 1rem;
    background-color: var(--bg-dark-900-40);
    color: var(--text-gray-200);
    border: 1px solid var(--gold-500-20);
    backdrop-filter: blur(4px);
    transition: all 300ms ease;
    border-radius: 0.125rem;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  @media (min-width: 640px) {
    .filter-btn {
      padding: 0.5rem 1.25rem;
    }
  }

  .filter-btn:hover {
    border-color: var(--gold-400);
    color: var(--gold-400);
    background-color: var(--gold-500-10);
  }

  .filter-btn svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--gold-400-80);
    transition: color 300ms ease;
  }

  .filter-btn:hover svg {
    color: var(--gold-400);
  }

  /* Active Tab Styling */
  .filter-btn.active {
    background-color: var(--gold-400);
    color: #030712;
    font-weight: 700;
    border-color: var(--gold-400);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  }

  .filter-btn.active svg {
    color: #030712;
  }








 /* CSS Variables for Luxury Theme */
    :root {
      --bg-dark-950: #030712;
      --bg-dark-900-40: rgba(17, 24, 39, 0.4);
      --gold-400: #facc15;
      --gold-500-20: rgba(234, 179, 8, 0.2);
      --gold-500-30: rgba(234, 179, 8, 0.3);
      --gold-500-40: rgba(234, 179, 8, 0.4);
      --text-gray-100: #f3f4f6;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-dark-950);
      color: var(--text-gray-100);
      font-family: system-ui, -apple-system, sans-serif;
    }

    /* Hero Section Container */
    .hero-section {
      position: relative;
      min-height: 620px;
      padding: 4rem 1.5rem;
      background-color: var(--bg-dark-950);
      border-bottom: 1px solid var(--gold-500-20);
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .hero-section { padding-left: 3rem; padding-right: 3rem; }
    }

    /* Background Carousel */
    .slider-container {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1000ms ease-in-out;
    }

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

    /* Gradient Overlays & Blurs */
    .left-overlay {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      background: linear-gradient(to right, rgba(3, 7, 18, 0.6), rgba(3, 7, 18, 0.3), transparent);
      backdrop-filter: blur(4px);
      z-index: 10;
      pointer-events: none;
    }

    @media (min-width: 768px) {
      .left-overlay { width: 50%; }
    }

    .top-shadow {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3rem;
      background: linear-gradient(to bottom, rgba(3, 7, 18, 0.4), transparent);
      z-index: 10;
      pointer-events: none;
    }

    .bottom-shadow {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3rem;
      background: linear-gradient(to top, rgba(3, 7, 18, 0.4), transparent);
      z-index: 10;
      pointer-events: none;
    }

    /* Content Area */
    .hero-content-wrapper {
      max-width: 80rem;
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 20;
    }

    .hero-text-box {
      max-width: 42rem;
      text-align: left;
    }

    .hero-subtitle {
      font-family: Georgia, serif;
      font-style: italic;
      color: var(--gold-400);
      font-size: 1.125rem;
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    }

    @media (min-width: 768px) {
      .hero-subtitle { font-size: 1.25rem; }
    }

    .hero-title {
      font-family: Georgia, serif;
      font-size: 1.875rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: #ffffff;
      text-transform: uppercase;
      line-height: 1.25;
      margin-bottom: 1rem;
      filter: drop-shadow(0 4px 6px rgba(0,0,0,0.6));
    }

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

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

    .gold-highlight {
      color: var(--gold-400);
      display: block;
      margin-top: 0.25rem;
    }

    /* Decorative Separator */
    .separator {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 1.25rem 0;
      color: var(--gold-400);
    }

    .separator-line {
      height: 1px;
      width: 6rem;
      background: linear-gradient(to right, var(--gold-400), transparent);
    }

    .description-text {
      color: var(--text-gray-100);
      font-size: 0.75rem;
      max-width: 32rem;
      line-height: 1.625;
      letter-spacing: 0.025em;
      margin-bottom: 2rem;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    }

    @media (min-width: 768px) {
      .description-text { font-size: 0.875rem; }
    }

    /* Key Stats Grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      padding-top: 1.5rem;
      padding: 1rem;
      border-top: 1px solid var(--gold-500-40);
      border-left: 1px solid var(--gold-500-30);
      background-color: var(--bg-dark-900-40);
      backdrop-filter: blur(4px);
      border-radius: 0.125rem;
    }

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

    .stat-card {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 0.25rem;
    }

    .stat-icon {
      margin-bottom: 0.375rem;
      color: var(--gold-400);
      transition: transform 300ms ease;
    }

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

    .stat-icon svg {
      width: 1.25rem;
      height: 1.25rem;
    }

    .stat-number {
      font-size: 1.25rem;
      font-family: Georgia, serif;
      font-weight: 700;
      color: var(--gold-400);
      letter-spacing: 0.05em;
    }

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

    .stat-label {
      font-size: 9px;
      color: var(--text-gray-100);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 0.125rem;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .stat-label { font-size: 10px; }
    }
  
















/* Qorexa Events Gallery - Custom CSS (No Tailwind) */
:root{--dark-950:#070b12;--dark-900:#0d1420;--gold-400:#d8b56a;--gold-500:#c99a3b;--gray-200:#e5e7eb;--gray-500:#6b7280;--emerald-400:#34d399;--emerald-500:#10b981;--rose-400:#fb7185;--rose-500:#f43f5e}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:var(--dark-950);color:var(--gray-200);font-family:Arial,Helvetica,sans-serif}.font-serif{font-family:Georgia,'Times New Roman',serif}.hidden{display:none!important}.relative{position:relative}.overflow-hidden{overflow:hidden}.cursor-pointer{cursor:pointer}.text-center{text-align:center}.text-left{text-align:left}.uppercase{text-transform:uppercase}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.flex-col{flex-direction:column}.flex-grow{flex-grow:1}.flex-shrink-0{flex-shrink:0}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.w-full{width:100%}.w-auto{width:auto}.max-w-7xl{max-width:80rem}.mx-auto{margin-left:auto;margin-right:auto}.w-72{width:18rem}.w-7{width:1.75rem}.w-10{width:2.5rem}.w-3\.5{width:.875rem}.w-2{width:.5rem}.w-1\.5{width:.375rem}.h-16{height:4rem}.h-10{height:2.5rem}.h-7{height:1.75rem}.h-3\.5{height:.875rem}.h-2{height:.5rem}.h-1\.5{height:.375rem}.min-h-\[140px\]{min-height:140px}.object-cover{object-fit:cover}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.sm\:p-4{padding:1rem}.sm\:p-6{padding:1.5rem}.px-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.py-12{padding-top:3rem;padding-bottom:3rem}.pb-6{padding-bottom:1.5rem}.pt-0{padding-top:0}.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mt-3{margin-top:.75rem}.mt-8{margin-top:2rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.space-y-4>*+*{margin-top:1rem}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.border{border-width:1px;border-style:solid}.border-t{border-top-width:1px;border-top-style:solid}.border-b{border-bottom-width:1px;border-bottom-style:solid}.border-gold-500\/10{border-color:rgba(201,154,59,.1)}.border-gold-500\/20{border-color:rgba(201,154,59,.2)}.border-gold-500\/30{border-color:rgba(201,154,59,.3)}.border-gold-400{border-color:var(--gold-400)}.border-gold-400\/80{border-color:rgba(216,181,106,.8)}.border-emerald-500\/40{border-color:rgba(16,185,129,.4)}.border-rose-500\/40{border-color:rgba(244,63,94,.4)}.bg-dark-900{background:var(--dark-900)}.bg-dark-900\/60{background:rgba(13,20,32,.6)}.bg-dark-900\/80{background:rgba(13,20,32,.8)}.bg-dark-950{background:var(--dark-950)}.bg-dark-950\/60{background:rgba(7,11,18,.6)}.bg-gold-400{background:var(--gold-400)}.bg-gold-500\/10{background:rgba(201,154,59,.1)}.bg-emerald-500{background:var(--emerald-500)}.bg-rose-500{background:var(--rose-500)}.text-dark-950{color:var(--dark-950)}.text-gold-400{color:var(--gold-400)}.text-gray-200{color:var(--gray-200)}.text-gray-500{color:var(--gray-500)}.text-emerald-400{color:var(--emerald-400)}.text-rose-400{color:var(--rose-400)}.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.font-medium{font-weight:500}.font-semibold{font-weight:600}.leading-snug{line-height:1.375}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.tracking-\[0\.15em\]{letter-spacing:.15em}.tracking-\[0\.3em\]{letter-spacing:.3em}.rounded-sm{border-radius:3px}.rounded-full{border-radius:9999px}.opacity-80{opacity:.8}.shadow-md{box-shadow:0 4px 10px rgba(0,0,0,.28)}.shadow-2xl{box-shadow:0 20px 45px rgba(0,0,0,.5)}.backdrop-blur-md{backdrop-filter:blur(12px)}.transition,.transition-all,.transition-transform{transition:all .3s ease}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}.group:hover .group-hover\:opacity-100{opacity:1}.group:hover .group-hover\:scale-105{transform:scale(1.05)}.group:hover .group-hover\:bg-gold-400{background:var(--gold-400)}.group:hover .group-hover\:text-gold-400{color:var(--gold-400)}.group:hover .group-hover\:text-dark-950{color:var(--dark-950)}.hover\:border-gold-400:hover{border-color:var(--gold-400)}.hover\:bg-gold-400:hover{background:var(--gold-400)}.hover\:text-dark-950:hover{color:var(--dark-950)}.hover\:bg-emerald-500\/10:hover{background:rgba(16,185,129,.1)}.hover\:bg-rose-500\/10:hover{background:rgba(244,63,94,.1)}.hover\:-translate-y-1:hover{transform:translateY(-4px)}.hover\:shadow-gold-500\/10:hover{box-shadow:0 10px 30px rgba(201,154,59,.1)}.focus\:outline-none:focus{outline:none}.focus\:border-gold-400:focus{border-color:var(--gold-400)}.placeholder-gray-500::placeholder{color:var(--gray-500)}.inline-flex{align-items:center}.acc-category{overflow:hidden}.acc-category>button{background:transparent;color:var(--gold-400);border:0;cursor:pointer}.acc-content{width:100%}.menu-item{min-height:58px}.menu-item img{flex:0 0 auto}.menu-item span:nth-child(2){min-width:0}.diet-btn{cursor:pointer;background:transparent}.diet-btn.active{background:var(--gold-400);color:var(--dark-950)}#toggleMenuBtn{cursor:pointer;background:transparent}#menuSearchInput{border:1px solid rgba(201,154,59,.3);color:var(--gray-200);background:var(--dark-950);border-radius:3px}.grid{column-gap:.75rem;row-gap:.75rem}@media (min-width:640px){.sm\:flex-row{flex-direction:row}.sm\:gap-4{gap:1rem}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.sm\:p-4{padding:1rem}.sm\:p-6{padding:1.5rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:w-72{width:18rem}.sm\:w-auto{width:auto}}@media (min-width:1024px){.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.lg\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}}@media (max-width:639px){.max-w-7xl{width:100%}.diet-btn{padding-left:.7rem;padding-right:.7rem}.acc-category>button{font-size:.8rem}.menu-item{min-height:54px}}
