/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Font Settings */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Regular */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa; /* Consistent light background */
    padding-top: 110px !important; /* Space for fixed header */
}

/* H1 - Montserrat Semi Bold */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semi Bold */
}

/* H2 and Subheadings - Montserrat Semi Bold */
h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semi Bold */
}

/* Navigation - Montserrat Semi Bold */
nav, .nav-link, .nav-menu {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* Semi Bold */
}

/* All other elements - Montserrat Regular */
* {
    font-family: 'Montserrat', sans-serif;
}


/* Main Header - Black Full Width */
.main-header {
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    transition: all 0.3s ease;
}
@media (max-width: 767px) {
    body {
        padding-top: 90px !important; /* Adjusted for mobile header */
    }
    
    .main-header {
        padding: 0 !important;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    background: black;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}


/* Cart Icon Styles */
/* Icons Pill Container */
.icons-pill-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #584a2e, #000000);
    border: 2px solid #877654;
    border-radius: 50px;
    padding: 4px 12px;
    margin-left: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(201, 157, 68, 0.3);
    z-index: 10;
}

.icons-pill-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 157, 68, 0.4);
}

.search-icon,
.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-icon:hover,
.cart-icon:hover {
    transform: scale(1.1);
}

.search-icon i,
.cart-icon i {
    color: #fff;
    font-size: 16px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive for icons pill */
@media (max-width: 768px) {
    .icons-pill-container {
        display: none !important;
    }
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cart-icon.bounce {
    animation: cartBounce 0.5s ease;
}

/* Desktop Search Bar */

/* Desktop Navigation Styles */
.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 10px 3px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #c99d44;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c99d44;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.dropdown-link:hover {
    color: #c99d44;
    padding-left: 30px;
}

.dropdown-menu li:last-child .dropdown-link {
    border-bottom: none;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger-menu:hover .hamburger-line {
    background-color: #c99d44;
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: #000;
    z-index: 1002;
    transition: all 0.3s ease-out;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    transform: translateY(-100%);
}

.mobile-nav.active {
    display: block;
    transform: translateY(0);
}




/* Hamburger to Cross Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background-color: #c99d44 !important;
    box-shadow: 0 0 8px rgba(175, 160, 76, 0.5);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    background-color: #c99d44 !important;
    box-shadow: 0 0 8px rgba(175, 160, 76, 0.5);
}


.mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: none;
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInFromTop 0.4s ease-out forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav-item:nth-child(7) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #c99d44;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    border-bottom: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.mobile-nav-category .mobile-nav-link {
    padding: 0 !important;
}

.mobile-nav-category:hover {
    color: #c99d44;
}

.mobile-dropdown-icon {
    font-size: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #fff;
    transform-origin: center;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: #c99d44;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: transparent;
    opacity: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding: 5px 0;
}

.mobile-sub-link {
    padding: 12px 20px !important;
    font-size: 14px;
    font-weight: 400;
    border-bottom: none;
    background-color: transparent;
    transition: all 0.3s ease-out;
    opacity: 0;
    transform: translateY(0);
    animation: slideInSubmenu 0.3s ease-out forwards;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
}

.mobile-dropdown.active .mobile-sub-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-dropdown.active .mobile-sub-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-dropdown.active .mobile-sub-link:nth-child(3) { animation-delay: 0.2s; }

@keyframes slideInSubmenu {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-sub-link:hover {
    color: #c99d44;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Body padding for mobile navigation */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    height: 90px !important;
    bottom: -10px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fff8ee, #fffdfa, #fff8ee);
    border: 2px solid #e5e5e5;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 20px 20px !important;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    z-index: 1000;
    margin: 0;
    max-width: calc(100% - 20px);
    overflow-y: visible;
    -webkit-tap-highlight-color: transparent;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    height: 100%;
    gap: 2px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.nav-icon {
    font-size: 26px !important;
    color: #404040;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
}

.nav-text {
    font-size: 12px !important;
    font-weight: 600;
    white-space: nowrap;
    color: #404040;
    margin-top: 0;
    margin-bottom: 0;
}

.nav-item.center {
    position: relative;
    flex: 0 0 auto;
    justify-content: flex-end;
    height: 100%;
    gap: 0px;
    align-items: center;
}

.center-icon-container {
    width: 70px !important;
    height: 70px !important;
    background: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border: 3px solid #c99d44;
    box-shadow: 0 6px 20px rgba(201, 157, 68, 0.5);
    position: relative;
    z-index: 2;
    transform: translateY(-8px);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.center-icon {
    width: 50px !important;
    height: 50px !important;
    background-image: url('assets/images/mindflowers-favicon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 2;
}

.center-icon-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #c99d44, #c4a85a, #c99d44);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.center-icon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 157, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(201, 157, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 157, 68, 0);
    }
}

.nav-item.center .nav-text {
    font-weight: 600;
    color: #404040;
}

.nav-item:not(.center):hover .nav-icon {
    transform: scale(1.1);
    color: #c99d44;
}

.nav-item:not(.center):hover .nav-text {
    color: #c99d44;
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .mobile-bottom-nav {
        padding: 8px 15px 15px 15px;
        margin: 0 5px 5px 5px;
        height: 65px;
        bottom: -8px;
    }
    
    .nav-icon {
        font-size: 22px;
    }
    
    .nav-text {
        font-size: 10px;
    }
    
    .center-icon-container {
        width: 50px;
        height: 50px;
        background: #ffffff !important;
        transform: translateY(-3px);
        flex-shrink: 0;
    }
    
    .center-icon {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none !important;
    }
    
    .hamburger-menu {
        display: flex !important;
    }
    
    .header-container {
        justify-content: space-between;
        display: flex;
        border-radius: 0 !important;
        max-width: 100% !important;
        padding: 10px 20px !important;
    }
    
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
}

@media (max-width: 768px) {
    
    .mobile-nav {
        width: 100%;
        left: 0;
        top: 70px;
        height: calc(100vh - 70px);
        transform: translateY(-100%);
    }
    
    .mobile-nav.active {
        transform: translateY(0);
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 15px 15px !important;
        border-radius: 0 !important;
        max-width: 100% !important;
    }
    
    .logo-img {
        height: 60px;
        max-width: 150px;
    }
    
    .mobile-nav-header {
        padding: 15px;
    }
    
    .mobile-logo {
        height: 50px;
        max-width: 120px;
    }
}

/* Main Content */
.main-content {
    margin-top: 0;
    min-height: calc(100vh - 80px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 20px;
    padding-top: 40px;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .main-content {
        padding: 0;
        padding-top: 20px;
        overflow-x: hidden;
        max-width: 100vw;
        width: 100vw;
    }
}


/* Swiper Slider Styles */
.swiper-container {
    width: 100%;
    max-width: 1400px;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    display: block;
}

/* Navigation arrows removed - only auto-slide */

/* Retreat Information Section */
.retreat-section {
    padding: 60px 0;
    background: #fff;
}

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

@media (max-width: 767px) {
    .retreat-section {
        padding: 20px 0;
    }
}

.retreat-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .retreat-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.retreat-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}
@media (max-width: 767px) {
    .retreat-subtitle {
        font-size: 0.5rem;
        margin-bottom: 20px;
    }
}
.retreat-intro {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .retreat-intro {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
}
.retreat-description {
    text-align: justify;
}

.retreat-description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.7;
}

.highlight-link {
    color: #c99d44;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: #c99d44;
}


/* What Makes This Retreat Special Section */
.special-experience-section {
    padding: 30px 0;
}

.special-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.special-title {
    font-weight: 600;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1;
}
@media (max-width: 767px) {
    .special-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}
/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
@media (max-width: 767px) {
    .cards-container {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}
.card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #c99d44;
}

.card-image {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.card-text {
    text-align: center;
}

.card-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* 5 Cards Section */
.five-cards-section {
    padding: none;
}

.five-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
@media (max-width: 767px) {
    .five-cards-container {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}

.five-card-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Mobile view (max 767px) */
@media (max-width: 767px) {
    .five-card-content {
        order: 2;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        flex: 1;
    }
}


.five-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media (max-width: 767px) {
    .five-card {
        padding: 15px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
    }
}
.five-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #c99d44;
}

.five-card-image {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
    .five-card-image {
        order: 1;
    }
}

.five-card-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
@media (max-width: 767px) {
    .five-card-logo {
        width: 80px;
        height: 80px;
    }
}



.five-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 767px) {
    .five-card-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
        text-align: left;
    }
}

.five-card-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}
@media (max-width: 767px) {
    .five-card-text {
        font-size: 0.7rem;
        text-align: left;
        line-height: 1.5;
    }
}

/* Purpose of the Retreat Section */
.purpose-section {
    padding: 60px 0;
    background: #fff;
}

.purpose-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 767px) {
    .purpose-content {
        padding: 0 30px;
    }
}

.purpose-title {
    font-weight: 600;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1;
    text-align: center;
}
@media (max-width: 767px) {
    .purpose-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.purpose-text {
    text-align: justify;
    padding: 20px 0;
}

.purpose-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.purpose-list {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    padding-left: 20px;
    margin: 0;
}

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

.purpose-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .purpose-text {
        padding: 15px 0;
    }
    .purpose-list {
        padding-left: 20px;
        font-size: 0.95rem;
    }
}



/* Balance of Structure and Freedom Section */
.balance-section {
    padding: 30px 20px;
    background: linear-gradient(-135deg, #544d32 0%, #000000 100%);
    border-radius: 10px;
    margin-bottom: 50px;
}


.balance-title {
    font-weight: 600;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}
@media (max-width: 767px) {
    .balance-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
}

.balance-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}
@media (max-width: 767px) {
    .balance-text {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: justify;
    }
}


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


.balance-text strong {
    font-weight: 600;
    color: #c99d44;
}

/* What Participants Will Experience Section */
.experience-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2a2c3d 0%, #443737 100%);
    color: #fff;
    border-radius: 15px;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .experience-section {
        padding: 40px 10px;
    }
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    justify-items: center;
}
@media (max-width: 767px) {
    .experience-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
}

.experience-text {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.experience-title {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}
@media (max-width: 767px) {
    .experience-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.experience-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
    margin: 0;
}
@media (max-width: 767px) {
    .experience-description {
        font-size: 0.9rem;
        text-align: left;
    }
}

.experience-image {
    flex: 0 0 auto;
    width: 400px;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

@media (max-width: 767px) {
    .experience-image {
        width: 100%;
        max-width: 350px;
        height: 300px;
        padding: 10px;
    }
}


.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    align-items: center;
}


.experience-list {
    text-align: left;
}

.experience-intro {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .experience-intro {
        font-size: 1rem;
        text-align: center;
    }
}

.experience-item {
    margin-bottom: 25px;
}

.experience-item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #bd9251;
    margin-bottom: 0px;
    line-height: 1.4;
}

.experience-item-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}


.participants-img {
    width: 450px;
    max-width: 450px;
    height: 600px;
    border-radius: 10px;
    object-fit: cover;
}

.experience-conclusion {
    background: linear-gradient(to right, #eacda3, #d6ae7b);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .experience-conclusion {
        padding: 10px;
        text-align: center;
        max-width: 800px;
        margin-top: 20px;
    }
}

.experience-conclusion p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #232327;
    margin: 0;
    line-height: 1.3;
}

/* Amanita Muscaria Section */
.amanita-section {
    padding: 60px 50px;
    background: linear-gradient(135deg, #fcd3e1 0%, #fee0cd 100%);
    border-radius: 15px;
}
@media (max-width: 767px) {
    .amanita-section {
        padding: 40px 10px;
    }
}

.amanita-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 767px) {
    .amanita-content {
        gap: 10px;
        flex-direction: column;
        align-items: left;
        justify-content: left;
        align-items: left;
    }
}


.amanita-text {
    flex: 1;
}

.amanita-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1e2132;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .amanita-title {
        font-size: 1.5rem;
    }
}

.amanita-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
}

.amanita-image {
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

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


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


.mushroom-img {
    width: 450px;
    max-width: 450px;
    height: 600px;
    border-radius: 10px;
    object-fit: cover;
}

.amanita-text {
    text-align: justify;
}

.amanita-intro {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.5;
    margin-bottom: 30px;
}

.amanita-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amanita-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.amanita-list li::before {
    content: "•";
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Safety & Legality Section */
.safety-section {
    margin-top: 20px;
    padding: 30px 0;
}

.safety-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
    text-align: left;
}

.safety-content {
    text-align: justify;
}

.safety-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 0px;
}

.safety-content strong {
    font-weight: 600;
}

/* Purpose of These Practices Section */
.purpose-practices-section {
    padding: 10px 0;
}

.purpose-practices-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
    text-align: left;
}

.purpose-practices-content {
    text-align: justify;
}

.purpose-practices-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.purpose-practices-content strong {
    font-weight: 600;
    color: #2c3e50;
}

/* Movement Intensive Section */
.movement-section {
    padding: 60px 0;
    background: #fff;
}
@media (max-width: 767px) {
    .movement-section {
        padding: 40px 0px;
    }
}

.movement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 767px) {
    .movement-content {
        padding: 0px;
    }
}

.movement-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1;
}
@media (max-width: 767px) {
    .movement-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.movement-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: center;
    margin: 0;
}



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


.movement-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
    .movement-text {
        font-size: 1rem;
        text-align: justify;
    }
}


.movement-text:last-child {
    margin-bottom: 0;
}

/* Invitation Section */
.invitation-section {
    padding: 50px;
    background: linear-gradient(to right, #d7c4a9, #bd9765);
    color: #272222;
    border-radius: 15px;
}
@media (max-width: 767px) {
    .invitation-section {
        padding: 40px 30px;
    }
}

.invitation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 767px) {
    .invitation-container {
        padding: 0px;
    }
}

.invitation-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #272222;
    margin-bottom: 30px;
    text-align: center;
}
@media (max-width: 767px) {
    .invitation-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.invitation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.invitation-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.invitation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
}



.invitation-conclusion {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #342b2b;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

/* Core Facilitators Section */
.facilitators-section {
    padding: 80px 0;
}


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

.facilitators-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
}
@media (max-width: 767px) {
    .facilitators-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.facilitators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.facilitator-card {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facilitator-card:hover {
    transform: translateY(-5px);
}

.facilitator-image {
    width: 100%;
    height: 350px;
    border-radius: 15px 15px 0px 0px;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.facilitator-name {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    padding: 15px 15px 10px 15px;
    line-height: 1.2;
}

.facilitator-role {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.facilitator-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #555;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}


/* Kata Girei Section */
.kata-section {
    padding: 40px 20px;
    background: linear-gradient(to right, #2a3b49, #42394b, #4e2a34);
    color: #fff;
    border-radius: 15px;
    margin: 20px 0;
}
@media (max-width: 767px) {
    .kata-section {
        background: linear-gradient(135deg, #2a3b49, #42394b, #4e2a34);
        padding: 30px 0px;
        align-items: center;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }
}

.kata-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 40px;
}
@media (max-width: 767px) {
    .kata-container {
        align-items: center;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
    }
}

/* Desktop Layout - Image left, Text right */
.kata-content {
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .kata-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }
}

.kata-image {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .kata-image {
        width: 300px;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}

.kata-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kata-image:hover .kata-img {
    transform: scale(1.02);
}

.kata-text {
    padding: 0;
}
@media (max-width: 767px) {
    .kata-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.kata-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #d2b189;
    margin-bottom: 10px;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .kata-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
}

.kata-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 767px) {
    .kata-description {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Other Guest Facilitators Section */
.guest-facilitators-section {
    padding: 80px 0;
}


.guest-facilitators-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
}

.guest-facilitators-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .guest-facilitators-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.guest-facilitators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media (max-width: 767px) {
    .guest-facilitators-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.guest-facilitator-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.guest-facilitator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.guest-facilitator-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
@media (max-width: 767px) {
    .guest-facilitator-image {
        width: 100%;
        height: 300px;
    }
}

.guest-facilitator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guest-facilitator-card:hover .guest-facilitator-img {
    transform: scale(1.05);
}

.guest-facilitator-content {
    padding: 25px 20px;
}

.guest-facilitator-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.3;
}

.guest-facilitator-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Invest in Yourself Section */
.invest-section {
    padding: 50px 0;
    background: radial-gradient(circle, #23303e, #100b19);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invest-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.invest-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    padding: 15px 0;
}
@media (max-width: 767px) {
    .invest-title {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
        padding: 25px 0;
    }
}

.invest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.invest-text {
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.invest-subtitle {
    font-weight: 600;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.invest-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.invest-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 767px) {
    .invest-price {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.invest-button {
    background: #a68254;
    color: #000000;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.invest-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 186, 113, 0.397);
}

.invest-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invest-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



/* Experiences That Awaken You Section */
.experiences-section {
    padding: 80px 0;
    background: #fff;
}


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

.experiences-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .experiences-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

/* Default layout: image left, text right (for blocks 1 and 3) */
.experiences-content .experiences-image {
    order: 1;
}

.experiences-content .experiences-text {
    order: 2;
}

/* Alternating layout for desktop - blocks 2 and 4 have reversed order */
.experiences-block-2 .experiences-image,
.experiences-block-4 .experiences-image {
    order: 2;
}

.experiences-block-2 .experiences-text,
.experiences-block-4 .experiences-text {
    order: 1;
}

/* Mobile view: all blocks follow same pattern (image first, then text) */
@media (max-width: 767px) {
    .experiences-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .experiences-content .experiences-image,
    .experiences-block-2 .experiences-image,
    .experiences-block-4 .experiences-image {
        order: 1;
    }
    
    .experiences-content .experiences-text,
    .experiences-block-2 .experiences-text,
    .experiences-block-4 .experiences-text {
        order: 2;
    }
}

.experiences-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
    .experiences-image {
        padding: 0;
        height: 300px;
    }
}

.experiences-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experiences-image:hover .experiences-img {
    transform: scale(1.02);
}

.experiences-text {
    padding: 20px 0;
}
@media (max-width: 767px) {
    .experiences-text {
        padding: 0;
    }
}

.experiences-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.experiences-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 767px) {
    .experiences-description {
        padding-bottom: 30px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background: none;
}

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

.gallery-title {
    font-weight: 600;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 767px) {
    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

#gallery,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    #gallery,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 767px) {
    #gallery,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    #gallery,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover img {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item .caption {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    text-align: center;
    padding: 0 5px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .gallery-item img {
        height: 180px;
        border-radius: 15px;
    }
    
    .gallery-item .caption {
        font-size: 0.85rem;
    }
}


/* Your Journey, Day by Day Section */
.journey-section {
    padding: 40px 0;
    background: #fff;
}

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

.journey-title {
    font-weight: 600;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}
@media (max-width: 767px) {
    .journey-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.2;
    }
}

.journey-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.accordion-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}





.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 20px 25px;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 20px;
}

.accordion-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

.accordion-content li:last-child {
    border-bottom: none;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}



.accordion {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
@media (max-width: 767px) {
    .accordion {
        grid-template-columns: 1fr;
        gap: 5px;
        align-items: center;
        justify-content: center;
    }
    
    .accordion-header {
        padding: 15px 20px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .accordion-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .accordion-item.active .accordion-content {
        max-height: 2000px;
    }
}

.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 0;
    overflow: hidden;
    background: #282828;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    cursor: pointer;
    background: #000000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.accordion-header:hover {
    background: #000000;
}

.accordion-title:hover {
    color: #af8947;
}

.accordion-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
}

.accordion-icon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #1e2224;
    border-radius: 0 0 10px 10px;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.schedule-list {
    padding: 20px 25px;
    margin: 0;
    list-style: none;
}

.schedule-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.schedule-list li::before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: 0;
}

.sub-list {
    margin-top: 8px;
    margin-left: 20px;
    list-style: none;
}

.sub-list li {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 6px;
    padding-left: 15px;
}

.sub-list li::before {
    content: "•";
    color: #ffffff;
    font-size: 1rem;
}


/* Footer Styles */
/* Footer Section */
.main-footer {
    background: black;
    color: #fff;
    padding: 60px;
    padding-bottom: 30px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .footer-container {
        padding: 0px;
        max-width: 100%;
    }
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
    justify-content: center;
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
        justify-content: center;
    }
}


.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
@media (max-width: 767px) {
    .footer-section {
        flex-direction: column;
        align-items: left;
        justify-content: left;
        align-items: left;
    }
}



/* Logo Section */
.logo-section {
    max-width: 350px;
    align-items: center !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.logo-icon {
    margin-right: 15px;
    font-size: 2rem;
    color: #c99d44;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.collections-list {
    color: #ffffff;
}


.collection-link {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.collection-link:hover {
    color: #c99d44 !important;
    text-decoration: none;
}

/* Contact Section */
.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 25px 0;
}

.collections-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 25px 0;
}


.company-info {
    margin-bottom: 25px;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 10px 0;
}

.company-address {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-icon {
    margin-right: 10px;
    flex-shrink: 0;
    color: #fff;
    font-size: 1rem;
}

.contact-item span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-link:hover {
    background: #c99d44;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.link-separator {
    color: #666;
    font-size: 0.9rem;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #171718;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 100;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 0px;
        right: 10px;
    }
}

.scroll-to-top:hover {
    background: #c99d44;
}

/* View All Collections Button */
.view-all-collections-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.view-all-collections-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-all-collections-btn:hover {
    background: #c99d44;
    border-color: #c99d44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 157, 68, 0.4);
}

@media (max-width: 767px) {
    .view-all-collections-btn-container {
        margin-top: 30px;
    }
    
    .view-all-collections-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}


