/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#trips-heading{margin-top:100px;}
:root {
    /* Premium Neon Lime Accent - refined from reference */
    --primary: #93ea1a;
    --primary-hover: #97ff4d;
    --primary-dark: #9AB317;
    --primary-gradient-start: #72b317;
    --primary-gradient-mid: #a8f227;
    --primary-gradient-end: #caff4d;
    
    /* Ambient Glow Colors - subtle depth */
    --ambient-teal: rgba(0, 150, 170, 0.08);
    --ambient-cyan: rgba(0, 180, 210, 0.06);
    --ambient-blue: rgba(20, 60, 120, 0.1);
    
    /* Core Colors */
    --background: #000000;
    --background-elevated: #0a0a0a;
    --foreground: #E6EEFA;
    --foreground-muted: #a8b5c4;
    --muted: #8899aa;
    
    /* Borders & Cards - subtle and refined */
    --border: rgba(219, 242, 39, 0.12);
    --border-hover: rgba(219, 242, 39, 0.25);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-hover: rgba(255, 255, 255, 0.04);
    
    /* Shadows - subtle and elegant */
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(219, 242, 39, 0.08);
    --shadow-accent: rgba(219, 242, 39, 0.1);
}

body {
    font-family: 'Cabin', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: var(--foreground);
    line-height: 1.75;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Accessibility - Visually Hidden but Accessible to Screen Readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Outlined Text Effect - Premium decorative styling */
.outlined-text {
    -webkit-text-stroke: 1.5px var(--foreground);
    color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Premium Heading Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: absolute;
    padding-top: 40px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    
}

.header-top {
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.instagram-icon {
    position: absolute;
    left: -60px;
    color: var(--primary);
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index:0;
}

.instagram-icon img{
    width: 250px;
    transform:  translateY(15px);
}

.instagram-icon:hover {
    transform: scale(1.15);
    color: var(--primary-hover);
    text-shadow: 0 0 20px rgba(219, 242, 39, 0.8), 0 0 40px rgba(219, 242, 39, 0.4);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 28px;
    height: 23px;
    justify-content: center;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    padding: 1px;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    display: block;
}

/* Default state: hamburger (3 lines) - menu closed */
.hamburger span:nth-child(1) {
    transform: rotate(0deg) translate(0, 0);
}

.hamburger span:nth-child(2) {
    opacity: 1;
}

.hamburger span:nth-child(3) {
    transform: rotate(0deg) translate(0, 0);
}

/* Active state: X (cross) - menu open */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -8px);
}

/* Navigation Menu */
.nav-menu {
    max-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.nav-menu.active {
    max-height: 500px;
}

.nav-list {
    list-style: none;
    padding: 5px 20px;
    text-align: center;
}

.nav-list li {
    margin-bottom: 15px;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 6px 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    cursor: pointer;
    text-align: center;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(154, 179, 23, 0.15) 0%, rgba(219, 242, 39, 0.25) 50%, rgba(219, 242, 39, 0.15) 100%);
    color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 242, 39, 0.2);
}
@font-face {
    font-family: "B Hakim Ghazali";
    src: url('hakim.ttf');
}
/* B Hakim Ghazali font for About Me link */
.about-me-link{font-family: 'B Hakim Ghazali' !important;}
.nav-link.about-me-link {
    font-weight: 600;
    font-size: 30px;
    color: var(--primary);
    position: relative;
}

.nav-link.about-me-link:hover {
    font-family: 'B Hakim Ghazali' !important;
    color: var(--primary-hover);
}

/* Mobile Page Inner Pages */
.mobile-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

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

.mobile-page-header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.mobile-page-back {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-page-back:hover {
    background: linear-gradient(135deg, rgba(136, 162, 30, 0.2) 0%, rgba(233, 251, 55, 0.3) 50%, rgba(233, 251, 55, 0.2) 100%);
    transform: translateX(-4px);
}

.mobile-page-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
}

.mobile-page-content {
    flex: 1;
    padding: 20px;
}

/* Portfolio Page (Section 1) */
.portfolio-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-bottom: 120px;
}

.portfolio-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(233, 251, 55, 0.3);
    background: var(--card-bg);
    aspect-ratio: 3/4;
}

.portfolio-category-card.hidden-category {
    display: none;
}

.portfolio-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
}

.portfolio-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
    padding: 20px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.portfolio-all-button-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    padding: 0 20px;
}

.portfolio-all-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-mid) 50%, var(--primary-gradient-end) 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(233, 251, 55, 0.5), 0 0 20px rgba(255, 255, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portfolio-all-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.7), 0 0 40px rgba(233, 251, 55, 0.6);
    background: linear-gradient(135deg, var(--primary-gradient-end) 0%, var(--primary-gradient-mid) 50%, var(--primary-gradient-start) 100%);
}

/* Category Gallery Page */
.category-gallery-section {
    padding: 180px 0 60px;
    min-height: 100vh;
}

.back-button-container {
    margin-bottom: 20px;
}

.back-button {
    padding: 12px 24px;
    background: var(--card-bg);
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-button:hover {
    background: var(--card-bg-hover);
    border-color: var(--border-hover);
    transform: translateX(-3px);
}

.back-button i {
    font-size: 14px;
}

.category-gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(233, 251, 55, 0.3);
    background: var(--card-bg);
    aspect-ratio: 1;
    display: block;
}

.category-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
}

.category-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* News Details Page */
.news-details-section {
    padding: 180px 0 60px;
    min-height: 100vh;
}

.news-details-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-details-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--foreground);
    line-height: 1.3;
}

.news-details-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(233, 251, 55, 0.3);
}

.news-details-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-details-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--foreground-muted);
}

.news-details-text p {
    margin-bottom: 20px;
}


/* Categories Page (Section 2) */
.categories-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.categories-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(233, 251, 55, 0.3);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 35px rgba(233, 251, 55, 0.4);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #ffffff;
    padding: 20px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.categories-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-filter-btn {
    padding: 12px 24px;
    background: var(--card-bg);
    color: var(--foreground);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(233, 251, 55, 0.4), 0 0 15px rgba(233, 251, 55, 0.3);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--shadow-hover);
    transform: translateY(-2px);
}

/* Reviews Page (Section 3) */
.reviews-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.review-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
  0 6px 18px rgba(233, 251, 55, 0.25),
  0 2px 6px rgba(233, 251, 55, 0.15),
  0 0 12px rgba(233, 251, 55, 0.12);
}

.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
}

.review-photo {
    flex: 0 0 120px;
    max-width: 120px;
    min-width: 120px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(233, 251, 55, 0.6), 0 0 20px rgba(233, 251, 55, 0.4);
}

.review-photo a {
    display: block;
    width: 100%;
    height: 100%;
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-screenshot {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-screenshot a {
    display: block;
    width: 100%;
    height: 100%;
}

.review-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Booking Page (Section 4) */
.booking-page-form {
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Page (Section 5) */
.faq-page {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
  0 6px 18px rgba(233, 251, 55, 0.25),
  0 2px 6px rgba(233, 251, 55, 0.15),
  0 0 12px rgba(233, 251, 55, 0.12);
}


.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(136, 162, 30, 0.2) 0%, rgba(233, 251, 55, 0.3) 50%, rgba(233, 251, 55, 0.2) 100%);
    color: var(--primary-hover);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
}

/* Contact Page */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 18px;
    color: var(--foreground-muted);
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 18px rgba(233, 251, 55, 0.25),
        0 2px 6px rgba(233, 251, 55, 0.15),
        0 0 12px rgba(233, 251, 55, 0.12);
    border: 1px solid rgba(219, 242, 39, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
    border-color: rgba(219, 242, 39, 0.25);
    background: var(--card-bg-hover);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(219, 242, 39, 0.15) 0%, rgba(219, 242, 39, 0.25) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(219, 242, 39, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(233, 251, 55, 0.3);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(219, 242, 39, 0.3) 0%, rgba(219, 242, 39, 0.4) 100%);
    border-color: var(--primary);
    box-shadow: 0 6px 30px rgba(233, 251, 55, 0.6);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-icon i {
    color: var(--primary-hover);
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(219, 242, 39, 0.5);
}

.contact-text {
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-action {
    text-align: center;
    margin-top: 40px;
}

.contact-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 17px;
}

.contact-booking-btn i {
    font-size: 20px;
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-header p {
        font-size: 16px;
    }
    
    .contact-item {
        padding: 28px 20px;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
}

/* Healing Page (Section 5) */
.healing-page {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.healing-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.healing-text {
    flex: 1;
}

.healing-text h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.healing-text p {
    color: var(--foreground);
    font-size: 17px;
    line-height: 1.8;
}

.healing-photo {
    flex: 1;
    position: relative;
}

.healing-photo .photo-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.healing-photo img {
    width: 100%;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
  0 6px 18px rgba(233, 251, 55, 0.25),
  0 2px 6px rgba(233, 251, 55, 0.15),
  0 0 12px rgba(233, 251, 55, 0.12);
}

.healing-photo img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
}

/* News Page */
.news-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    background: var(--card-bg);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
  0 6px 18px rgba(233, 251, 55, 0.25),
  0 2px 6px rgba(233, 251, 55, 0.15),
  0 0 12px rgba(233, 251, 55, 0.12);
    overflow: hidden;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
}

.news-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
}

.news-content h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.news-content p {
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.news-date {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
}

.news-title-link {
    cursor: pointer;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-title-link:hover {
    color: var(--primary-hover);
}

.news-item {
    cursor: pointer;
}

/* News Detail Page */
.news-detail-page {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 50%;
    box-shadow:
  0 6px 18px rgba(233, 251, 55, 0.25),
  0 2px 6px rgba(233, 251, 55, 0.15),
  0 0 12px rgba(233, 251, 55, 0.12);
}

.news-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.news-detail-content {
    padding: 0 20px;
}

.news-detail-date {
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 16px;
}

.news-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.news-detail-text {
    color: var(--foreground);
    font-size: 17px;
    line-height: 1.8;
}

.news-detail-text p {
    margin-bottom: 20px;
}

.news-detail-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 16px;
}

.news-detail-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.news-detail-text li {
    margin-bottom: 10px;
    color: var(--foreground);
}

/* Fancybox link styles */
.review-photo a,
.review-screenshot a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.review-photo a img,
.review-screenshot a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-detail-image a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: zoom-in;
}

.news-detail-image a img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Page (Home/Главное) */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-item-reverse {
    flex-direction: row;
}

.about-image-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 18px rgba(233, 251, 55, 0.25),
        0 2px 6px rgba(233, 251, 55, 0.15),
        0 0 12px rgba(233, 251, 55, 0.12);
    border: 1px solid rgba(219, 242, 39, 0.1);
}

.about-image-wrapper:hover img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 251, 55, 0.6), 0 0 40px rgba(233, 251, 55, 0.5);
    border-color: rgba(219, 242, 39, 0.25);
}

.about-text-content {
    flex: 1;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 24px;
}

.about-text-content p:last-child {
    margin-bottom: 0;
}

/* Mobile: Stack images and text */
@media (max-width: 767px) {
    .about-content {
        gap: 40px;
    }
    
    .about-item,
    .about-item-reverse {
        flex-direction: column;
        margin-bottom:20px;
        gap: 30px;
        align-items: stretch;
    }
    .about-item-reverse {flex-direction:column-reverse !important;}
    
    .about-image-wrapper {
        flex: none;
        max-width: 100%;
    }
    
    .about-text-content p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 20px;
    }
}

/* Main Content */
.main-content {
    margin-top: 110px;
}


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

/* Section Styles */
section {
    padding: 100px 0 !important;
    background: #000000;
    animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Alternating ambient glow backgrounds - teal/cyan for depth */
section:nth-child(odd) {
    background: 
        radial-gradient(ellipse 80% 60% at 10% 50%, var(--ambient-teal) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 20%, var(--ambient-cyan) 0%, transparent 50%),
        #000000;
}

section:nth-child(even) {
    background: 
        radial-gradient(ellipse 80% 60% at 90% 50%, var(--ambient-blue) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, var(--ambient-cyan) 0%, transparent 50%),
        #000000;
}

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

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Map Section */
.map-section{
    padding:120px 0 !important;
background: radial-gradient(
  circle at right 70%,
  rgba(69, 180, 0, 0.35) 0%,
  rgba(0, 0, 0, 0.95) 40%
) !important;
}

.map-section-title {
    font-size: clamp(2.1rem, 5.2vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .map-section-title {
        font-size: clamp(2rem, 6vw, 4rem);
        margin-bottom: 4rem;
    }
}

.map-section {
    padding-top: 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.map-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-visual {
    width: 100%;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 12px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
}

.map-visual:hover {
    box-shadow: 0 16px 48px var(--shadow-hover), var(--shadow-glow);
    transform: translateY(-4px);
    border-color: rgba(219, 242, 39, 0.2);
}

.map-visual img {
    width: 100%;
    margin-inline:auto;
    height: auto;
    display: block;
    border-radius: 8px;
}



.states-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: -30px;
}

.state-item {
    padding: 24px;
    background: var(--card-bg);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 8px 32px var(--shadow);
    border: 1px solid rgba(219, 242, 39, 0.1);
}

.state-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--shadow-hover), var(--shadow-glow);
    border-color: rgba(219, 242, 39, 0.25);
    background: var(--card-bg-hover);
}

.state-item h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.state-item p {
    color: var(--foreground);
    font-size: 14px;
    margin: 0;
}

/* Guide Section */
.guide-section {
  position: relative;
  z-index: 1;
}

.guide-section::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at left 25%,
    rgba(69, 180, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.95) 15%
  );
  z-index: -1;
  pointer-events: none;
}

.guide-content {
    text-align: center;
}

.guide-text-photo {
    margin-bottom: 30px;
}

.guide-text {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--foreground);
}

.guide-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.guide-images img {
    width: 100%;
    max-width: 300px;
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(219, 242, 39, 0.1);
}

.guide-images img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px var(--shadow-hover), var(--shadow-glow);
}

.guide-arrow {
    margin-top: 30px;
    font-size: 24px;
    color: var(--primary);
}
.guide-arrow p {text-align:  center;font-size: 32px !important;}

.guide-arrow i {
    display: block;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(10px); 
    }
}

/* Booking Form */
.booking-section{
    background: radial-gradient(
  circle at right center,
  rgba(12, 180, 0, 0.35) 0%,
  rgba(0, 0, 0, 0.95) 40%) 
!important; 
}
.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--foreground);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(219, 242, 39, 0.15);
    color: var(--foreground);
    font-size: 16px;
    font-family: 'Cabin', 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px var(--shadow);
}

.form-group input::placeholder {
    color: var(--muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(219, 242, 39, 0.15), 0 8px 24px var(--shadow-hover);
    background: rgba(15, 15, 15, 0.9);
}

.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--foreground);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    resize: vertical;
    min-height: 120px;
}

.required {
    color: var(--primary);
    font-weight: 700;
}

.helper-text {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.word-count {
    display: block;
    margin-top: 8px;
    color: var(--foreground-muted);
    font-size: 13px;
    font-weight: 500;
}

.error-text {
    display: block;
    margin-top: 8px;
    color: #ff4444;
    font-size: 14px;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-label:hover {
    background: rgba(15, 15, 15, 0.8);
    border-color: var(--border-hover);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-label span {
    color: var(--foreground);
    font-size: 16px;
    font-weight: 500;
}

.contact-fields {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group-inline {
    display: flex;
    flex-direction: column;
}

.form-group-inline label {
    margin-bottom: 8px;
    color: var(--foreground-muted);
    font-size: 15px;
    font-weight: 500;
}

.form-group-inline input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--foreground);
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(219, 242, 39, 0.1);
    background: rgba(15, 15, 15, 0.8);
}

/* File Input Styling */
.form-group input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.file-input-button {
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    border: 2px dashed rgba(219, 242, 39, 0.25);
    color: var(--foreground);
    font-size: 16px;
    font-family: 'Cabin', 'Inter', sans-serif;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    margin: 0;
}

.file-input-button:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(219, 242, 39, 0.15), 0 8px 24px var(--shadow-hover);
    transform: translateY(-2px);
}

.file-input-button:active {
    transform: translateY(0);
}

.file-input-button i {
    font-size: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.file-input-button.has-file {
    border-style: solid;
    border-color: rgba(219, 242, 39, 0.4);
    background: rgba(219, 242, 39, 0.05);
}

.file-input-button.has-file i {
    color: var(--primary-hover);
}

.file-input-text {
    color: var(--foreground);
}

.file-input-filename {
    color: var(--primary-hover);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
}

.file-input-filename.show {
    display: inline;
}

.file-input-button.has-file .file-input-text {
    display: none;
}

.file-input-button.has-file .file-input-filename {
    display: inline;
}

.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-mid) 50%, var(--primary-gradient-end) 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.submit-btn:hover {
    box-shadow: 0 12px 40px var(--shadow-hover), var(--shadow-glow);
    transform: translateY(-3px) scale(1.02);
}

.submit-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Categories Section */

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.category-item {
    text-align: center;
    padding: 28px;
    background: var(--card-bg);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    border: 1px solid rgba(219, 242, 39, 0.1);
}

.category-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--shadow-hover), var(--shadow-glow);
    border-color: rgba(219, 242, 39, 0.25);
}

.category-item h3 {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.category-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-item:hover img {
    transform: scale(1.05);
}

/* Guide Button */
.guide-button-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    min-width: 280px;
    transform: translateX(-50%);
    z-index: 999;
}

.guide-button {
    line-height: 1.5;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-mid) 50%, var(--primary-gradient-end) 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 32px var(--shadow-hover);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: 100%;
}

.guide-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px var(--shadow-hover), var(--shadow-glow);
}

.guide-button:active {
    transform: translateY(-2px) scale(1.01);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 -8px 32px rgba(233, 251, 55, 0.5), 0 0 30px rgba(233, 251, 55, 0.4);
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8);
}

.booking-modal.active {
    bottom: 0;
}

.modal-content {
    padding: 30px 20px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-hover);
    background: linear-gradient(135deg, rgba(136, 162, 30, 0.2) 0%, rgba(233, 251, 55, 0.3) 50%, rgba(233, 251, 55, 0.2) 100%);
    transform: rotate(90deg);
}

/* Desktop Styles */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }


    .section-title {
        font-size: 48px;
    }

    .guide-images {
        flex-direction: row;
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .map-container {
        flex-direction: column;
    }

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

    .nav-list {
        display: flex;
        gap: 30px;
        justify-content: center;
    }

    .nav-list li {
        margin-bottom: 0;
    }

    .portfolio-page {
        padding-bottom: 60px;
    }
    
    .portfolio-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .portfolio-category-card h3 {
        font-size: 28px;
        padding: 24px;
    }
    
    .portfolio-all-button-container {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        text-align: center;
    }
    
    .portfolio-all-btn {
        font-size: 20px;
        padding: 18px 40px;
    }
    
    .portfolio-page {
        padding-bottom: 120px;
    }
    
    .category-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .review-photo {
        flex: 0 0 200px;
        max-width: 200px;
    }


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

    .reviews-page {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .review-item {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .review-photo {
        flex: 0 0 auto;
        max-width: 100%;
        min-width: 100%;
        width: 100%;
        height: 200px;
        margin-bottom: 16px;
    }

    .review-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .review-screenshot {
        flex: 1;
        height: 400px;
    }

    .review-screenshot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-page {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .news-item {
        display: flex;
        flex-direction: column;
    }

    .news-image {
        height: 280px;
    }

    .healing-item {
        flex-direction: row;
        align-items: center;
    }

    .healing-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

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

    .reviews-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .review-item {
        padding: 28px;
    }

    .review-photo {
        height: 240px;
    }

    .review-screenshot {
        height: 450px;
    }

    .news-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .news-image {
        height: 300px;
    }

    .news-content {
        padding: 28px;
    }

    .news-content h3 {
        font-size: 24px;
    }

    .news-detail-page {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
    }

    .news-detail-image {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .news-detail-content {
        flex: 1;
        padding: 0;
    }

    .news-detail-content h2 {
        font-size: 40px;
    }

    .news-detail-text {
        font-size: 18px;
    }
}

/* Fancybox Customization */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9 !important;
}

.fancybox__container {
    z-index: 10000 !important;
}

.fancybox__nav {
    --fancybox-color: var(--primary);
    z-index: 10001 !important;
}

.fancybox__button {
    --fancybox-color: var(--primary);
    z-index: 10001 !important;
}

.fancybox__button:hover {
    --fancybox-color: var(--primary-hover);
}

.fancybox__slide {
    z-index: 10000 !important;
}

.fancybox__content {
    z-index: 10000 !important;
}
#categoryGalleryGrid{
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 576px) {
    .header-top {
    
    }
    #categoryGalleryGrid{
        grid-template-columns: repeat(2, 1fr);
    }
}