/*=====================================================
    RESET & GLOBAL STYLES STARTS
=====================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a1117;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
/*=====================================================
    RESET & GLOBAL STYLES ENDS
=====================================================*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.restro-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(3, 14, 22, 0.95) 0%, rgba(3, 14, 22, 0.9) 100%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(207, 168, 110, 0.4);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-img {
    width: clamp(65px, 8vw, 120px) !important;
    height: auto !important;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link:hover, .nav-item:hover > .nav-link { color: #cfa86e; text-decoration: none; }

.has-dropdown > .nav-link::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 6px;
    font-size: 12px;
    display: inline-block;
    transition: transform 0.2s;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #1a2a32;
    border-radius: 8px;
    padding: 8px 0;
    margin: 8px 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(207, 168, 110, 0.3);
    z-index: 100;
}

.nav-item:hover > .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: block;
    padding: 10px 20px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none;
}

.dropdown-menu-custom a:hover {
    background: #cfa86e;
    color: #1a2a32;
    padding-left: 28px;
}

.dropdown-submenu { position: relative; }
.dropdown-submenu > a::after {
    content: '\f105';
    font-family: 'FontAwesome';
    float: right;
    font-size: 12px;
}
.dropdown-submenu .dropdown-menu-custom {
    top: 0;
    left: 100%;
    margin-top: -8px;
}
.dropdown-submenu:hover > .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.action-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.action-icon i { font-size: 18px; color: #ffffff; transition: color 0.2s; }
.action-icon:hover i { color: #cfa86e; }

.cart-wrapper { position: relative; }
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #cfa86e;
    color: #1a2a32;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-btn {
    background: transparent;
    border: 2px solid #cfa86e;
    color: #cfa86e;
    padding: 8px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 40px;
}
.book-btn:hover { background: #cfa86e; color: #ffffff; text-decoration: none; transform: translateY(-2px); }

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #cfa86e;
    transition: all 0.3s;
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! BANNER SLIDER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.new-banner-slider {
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.banner-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.banner-text-content { flex: 1; color: #fff; max-width: 600px; }
.banner-subtitle {
    display: inline-block;
    color: #cfa86e;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}
.banner-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #cfa86e;
    transform: translateY(-50%);
}
.banner-title { font-size: 4rem; font-weight: 800; line-height: 1.2; margin-bottom: 15px; color: #fff; }
.banner-title .highlight { color: #cfa86e; }
.banner-subheading { font-size: 1.5rem; font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 20px; font-style: italic; }
.banner-description { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 30px; max-width: 500px; }
.btn-primary {
    display: inline-block;
    background: #cfa86e;
    color: #0a0a0a;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #cfa86e;
}
.btn-primary:hover { background: transparent; color: #cfa86e; transform: translateY(-3px); }
.btn-outline {
    display: inline-block;
    background: transparent;
    color: #cfa86e;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    border: 2px solid #cfa86e;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: #cfa86e; color: #0a0a0a; transform: translateY(-3px); }
.banner-buttons { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.banner-features { display: flex; gap: 30px; flex-wrap: wrap; }
.feature { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 13px; }
.feature i { font-size: 18px; color: #cfa86e; }
.banner-slider-area { flex: 1; max-width: 500px; width: 100%; }
.slider-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 4px rgba(207,168,110,0.3);
    background: #000;
    aspect-ratio: 4 / 5;
    width: 100%;
}
.bannerSwiper { width: 100%; height: 100%; }
.bannerSwiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    text-align: center;
}
.slide-caption span { color: #cfa86e; font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.bannerSwiper .swiper-button-next, .bannerSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid #cfa86e;
}
.bannerSwiper .swiper-button-next:after, .bannerSwiper .swiper-button-prev:after {
    font-size: 16px;
    color: #cfa86e;
}
/* Responsive */
@media (max-width: 1024px) { .banner-container { padding: 60px 40px; gap: 40px; } .banner-title { font-size: 3rem; } .banner-slider-area { max-width: 400px; } }
@media (max-width: 768px) {
    .new-banner-slider { min-height: auto; padding: 40px 0; }
    .banner-container { flex-direction: column; padding: 40px 25px; gap: 40px; }
    .banner-text-content { text-align: center; max-width: 100%; }
    .banner-title { font-size: 2.5rem; }
    .banner-buttons, .banner-features { justify-content: center; }
    .banner-slider-area { max-width: 450px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .banner-title { font-size: 1.8rem; }
    .banner-subheading { font-size: 1rem; }
    .btn-primary, .btn-outline { padding: 8px 20px; font-size: 13px; }
    .banner-slider-area { max-width: 100%; }
    .slider-frame { aspect-ratio: 3 / 4; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! BANNER SLIDER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about-us { position: relative; padding: 100px 0; background: #0a1117; }
.about-us .container { max-width: 1300px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-lg-6 { width: 50%; padding: 0 15px; }
.col-lg-12 { width: 100%; padding: 0 15px; }
.about-us-image { position: relative; margin-right: 70px; padding: 0 100px 0 60px; }
.about-us-img img { width: 100%; aspect-ratio: 1 / 1.53; object-fit: cover; border-radius: 999px; }
.company-experience {
    width: 165px;
    position: absolute;
    top: 120px;
    right: 0px;
    background: #cfa86e;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.company-experience .icon-box i { font-size: 38px; color: #ffffff; }
.company-experience-content h3 { font-size: 18px; font-weight: 600; color: #ffffff; margin: 0; }
.section-title { margin-bottom: 40px; }
.section-title h3 {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cfa86e;
    padding-left: 16px;
    margin-bottom: 10px;
}
.section-title h3::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    background: #cfa86e;
    border-radius: 50%;
    transform: translateY(-50%);
}
.section-title h2 { font-size: 42px; font-weight: 800; text-transform: uppercase; color: #ffffff; }
.section-title p { color: #AEB0B4; line-height: 1.6em; margin-top: 10px; }
.about-content-list ul { list-style: none; padding: 0; }
.about-content-list ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #AEB0B4;
}
.about-content-list ul li::before {
    content: '\2713';
    font-size: 18px;
    color: #cfa86e;
    position: absolute;
    top: 0;
    left: 0;
}
.about-content-btn { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    background: #cfa86e;
    color: #ffffff;
    border-radius: 30px;
    padding: 17px 58px 17px 30px;
    transition: all 0.5s ease;
    text-decoration: none;
}
.btn-default:hover { background: transparent; color: #1F2120; text-decoration: none; }
.btn-default.btn-highlighted { background: #ffffff; color: #1F2120; }
.btn-default.btn-highlighted:hover { color: #ffffff; background: #cfa86e; }
.about-detail-box { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 60px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,0.1); }
.about-detail-item { width: calc(33.33% - 20px); display: flex; align-items: center; }
.about-detail-item .icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cfa86e;
    border-radius: 50%;
    margin-right: 30px;
    transition: all 0.3s;
}
.about-detail-item .icon-box i { font-size: 32px; color: #cfa86e; }
.about-detail-item:hover .icon-box { background: #cfa86e; border-color: #ffffff; }
.about-detail-item:hover .icon-box i { color: #ffffff; }
.about-detail-content h3 { font-size: 22px; color: #ffffff; margin-bottom: 5px; }
.about-detail-content p { color: #AEB0B4; margin: 0; }
@media (max-width: 991px) {
    .about-us { padding: 50px 0; }
    .about-us-image { max-width: 80%; margin: 0 auto; padding: 0; }
    .company-experience { width: 130px; top: 20px; right: -20px; }
    .about-detail-item { width: calc(50% - 15px); }
    .section-title h2 { font-size: 34px; }
    .col-lg-6 { width: 100%; }
}
@media (max-width: 767px) {
    .about-detail-item { width: 100%; }
    .section-title h2 { font-size: 28px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! POPULAR ITEMS SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.popular-items {
    background: linear-gradient(135deg, #0e1a22 0%, #0a1117 100%);
    padding: 100px 0;
}
.popular-item-card {
    background: rgba(26, 42, 50, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(207, 168, 110, 0.2);
    margin: 15px 0;
}
.popular-item-card:hover { transform: translateY(-10px); border-color: rgba(207, 168, 110, 0.6); }
.popular-item-img { position: relative; overflow: hidden; height: 280px; }
.popular-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.popular-item-card:hover .popular-item-img img { transform: scale(1.08); }
.popular-item-content { padding: 25px 20px 30px; text-align: center; }
.rating { display: flex; justify-content: center; gap: 5px; margin-bottom: 12px; }
.rating i { color: #cfa86e; font-size: 16px; }
.review-count { color: #9aa9b2; font-size: 14px; margin-left: 8px; }
.popular-item-content h3 a { font-size: 24px; font-weight: 700; color: #ffffff; text-decoration: none; transition: color 0.3s; }
.popular-item-content h3 a:hover { color: #cfa86e; }
.popular-item-content p { color: #AEB0B4; font-size: 14px; line-height: 1.6; }
.popular-slider { padding-bottom: 50px; }
.swiper-pagination-bullet { background: #cfa86e !important; opacity: 0.5; }
.swiper-pagination-bullet-active { opacity: 1; }
@media (max-width: 767px) { .popular-items { padding: 60px 0; } .popular-item-img { height: 220px; } }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! POPULAR ITEMS SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.gallery-section { padding: 100px 0; background: #0a1117; }
.gallery-section .section-title { text-align: center; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #cfa86e; font-size: 28px; background: rgba(0,0,0,0.6); border-radius: 50%; padding: 12px; }
@media (max-width: 767px) { .gallery-section { padding: 60px 0; } .gallery-grid { gap: 15px; } }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GALLERY SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.faq-section.dark-theme {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 80px 0;
    position: relative;
}
.faq-section.dark-theme .section-title h3 { color: #cfa86e; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.faq-section.dark-theme .section-title h2 { color: #fff; font-size: 36px; font-weight: 700; }
.faq-section.dark-theme .section-title p { color: rgba(255,255,255,0.7); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 20px; }
.faq-artist-info { position: sticky; top: 100px; align-self: start; }
.artist-card {
    background: rgba(20, 20, 35, 0.95);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(207, 168, 110, 0.3);
}
.artist-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cfa86e, #e6c99c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.artist-icon i { font-size: 40px; color: #1a1a2e; }
.artist-card h3 { font-size: 24px; font-weight: 700; color: #cfa86e; margin-bottom: 20px; }
.artist-address { display: flex; gap: 15px; background: rgba(30,30,50,0.8); padding: 15px; border-radius: 16px; margin-bottom: 20px; border-left: 3px solid #cfa86e; text-align: left; }
.artist-address i { font-size: 24px; color: #cfa86e; }
.address-details p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.8); }
.artist-contact { margin: 20px 0; padding: 15px 0; border-top: 1px solid rgba(207,168,110,0.3); border-bottom: 1px solid rgba(207,168,110,0.3); }
.contact-item { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 12px 0; font-size: 15px; color: rgba(255,255,255,0.9); }
.contact-item i { font-size: 18px; color: #cfa86e; width: 25px; }
.artist-hours { background: rgba(30,30,50,0.6); padding: 15px; border-radius: 16px; text-align: left; }
.artist-hours h4 { font-size: 16px; font-weight: 600; color: #cfa86e; margin-bottom: 12px; }
.artist-hours p { margin: 8px 0; font-size: 14px; color: rgba(255,255,255,0.8); }
.btn-primary-dark, .btn-primary-dark-small {
    display: inline-block;
    background: #cfa86e;
    color: #0a0a0a;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 2px solid #cfa86e;
}
.btn-primary-dark:hover, .btn-primary-dark-small:hover { background: transparent; color: #cfa86e; transform: translateY(-2px); }
.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: #cfa86e;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    border: 2px solid #cfa86e;
    transition: all 0.3s ease;
}
.btn-outline-dark:hover { background: #cfa86e; color: #0a0a0a; transform: translateY(-2px); }
.artist-cta { display: flex; gap: 15px; justify-content: center; margin-top: 25px; }
.faq-accordion { background: rgba(20,20,35,0.9); border-radius: 24px; padding: 20px; border: 1px solid rgba(207,168,110,0.2); }
.faq-item { border-bottom: 1px solid rgba(207,168,110,0.2); }
.faq-question { display: flex; align-items: center; gap: 15px; padding: 20px 15px; cursor: pointer; }
.faq-question h4 { flex: 1; font-size: 16px; font-weight: 600; margin: 0; color: #fff; }
.faq-toggle i { font-size: 16px; color: #cfa86e; transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 15px 0 50px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 15px 20px 50px; }
.faq-promo-banner {
    max-width: 1100px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(30,30,50,0.95));
    border-radius: 20px;
    padding: 30px 40px;
    text-align: center;
    border: 1px solid rgba(207,168,110,0.4);
}
.promo-content { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.promo-content i { font-size: 48px; color: #cfa86e; }
.promo-content h4 { font-size: 22px; font-weight: 700; color: #cfa86e; margin: 0; }
@media (max-width: 992px) { .faq-grid { grid-template-columns: 1fr; } .faq-artist-info { position: static; } }
@media (max-width: 768px) { .faq-section.dark-theme { padding: 50px 0; } .faq-section.dark-theme .section-title h2 { font-size: 28px; } }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FAQ SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ARTICLE SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.dark-article-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #14141f 100%);
    padding: 80px 0;
    position: relative;
    border-top: 1px solid rgba(207,168,110,0.2);
    border-bottom: 1px solid rgba(207,168,110,0.2);
}
.dark-article-wrapper { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.dark-article-header { text-align: center; margin-bottom: 40px; }
.article-category { display: inline-block; color: #cfa86e; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.dark-article-title { font-size: 42px; font-weight: 700; margin-bottom: 20px; color: #ffffff; }
.gold-text { color: #cfa86e; }
.title-divider { width: 80px; height: 3px; background: linear-gradient(90deg, #cfa86e, #e6c99c); margin: 0 auto; border-radius: 3px; }
.dark-article-content { color: rgba(255,255,255,0.85); }
.lead-text { font-size: 18px; line-height: 1.6; color: #cfa86e; font-weight: 500; margin-bottom: 25px; border-bottom: 1px dashed rgba(207,168,110,0.3); padding-bottom: 15px; }
.dark-article-content p { font-size: 16px; line-height: 1.8; margin-bottom: 25px; color: rgba(255,255,255,0.8); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 40px 0; text-align: center; }
.stat-card { background: rgba(20,20,35,0.8); border-radius: 16px; padding: 20px 15px; border: 1px solid rgba(207,168,110,0.2); transition: all 0.3s; }
.stat-card:hover { transform: translateY(-5px); border-color: rgba(207,168,110,0.5); }
.stat-card h3 { font-size: 32px; font-weight: 800; color: #cfa86e; margin-bottom: 8px; }
.stat-card p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.article-cta-buttons { display: flex; gap: 20px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.dark-btn-primary {
    display: inline-block;
    background: #cfa86e;
    color: #0a0a0a;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    border: 2px solid #cfa86e;
}
.dark-btn-primary:hover { background: transparent; color: #cfa86e; transform: translateY(-3px); text-decoration: none; }
.dark-btn-outline {
    display: inline-block;
    background: transparent;
    color: #cfa86e;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    border: 2px solid #cfa86e;
}
.dark-btn-outline:hover { background: #cfa86e; color: #0a0a0a; transform: translateY(-3px); text-decoration: none; }
@media (max-width: 992px) { .dark-article-title { font-size: 36px; } .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .dark-article-section { padding: 50px 0; } .dark-article-title { font-size: 28px; } .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .stat-card h3 { font-size: 24px; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .dark-article-title { font-size: 24px; } .article-cta-buttons { flex-direction: column; } .dark-btn-primary, .dark-btn-outline { text-align: center; } }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ARTICLE SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.site-footer.footer1 {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #041b26;
    width: 100%;
}
.footer1 .site-footer__main { padding-top: 80px; }
.footer1 h3.wp-block-heading { color: #cfa86e; font-size: 22px; font-weight: 800; margin-bottom: 25px; }
.footer1 .wp-block-group__inner-container p { color: #e0e0e0; font-size: 16px; line-height: 1.8em; margin-bottom: 12px; }
.footer-widget__social { margin-top: 25px; display: flex; justify-content: center; gap: 12px; }
.footer-widget__social a i {
    background: #cfa86e;
    border-radius: 50%;
    font-size: 16px;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    color: #041b26;
    font-style: normal;
    font-weight: bold;
    display: inline-block;
}
.footer_top { display: flex; align-items: flex-end; padding: 0px 100px 0; }
.footer_top_left, .footer_top_right { width: 100%; height: 2px; background: #cfa86e; margin-bottom: 20px; }
.footer-navbar-brand { width: 100%; max-width: 200px; padding: 0 20px; text-align: center; }
.footer-navbar-brand img { max-width: 100%; height: auto; }
.site-footer__bottom { padding: 60px 0 40px; border-top: 1px solid rgba(207,168,110,0.3); margin-top: 40px; }
.site-footer__bottom .container p.site-footer__copy { text-align: right; margin-bottom: 0; color: #9aa9b2; font-size: 15px; }
ul.footer_copyright_menu { display: flex; align-items: center; flex-wrap: wrap; margin: 0; padding-left: 0; list-style: none; }
ul.footer_copyright_menu li { margin-bottom: 0; margin-right: 30px; }
ul.footer_copyright_menu li a { color: #9aa9b2; font-size: 16px; font-weight: 500; text-decoration: none; transition: all 0.4s; }
ul.footer_copyright_menu li a:hover { color: #cfa86e; }
@media (max-width: 991px) {
    .footer_top { padding: 0px 50px 0; }
    .site-footer__bottom .container p.site-footer__copy { text-align: center; margin-top: 15px; }
    ul.footer_copyright_menu { justify-content: center; }
}
@media (max-width: 767px) {
    .footer_top { flex-direction: column; align-items: center; padding: 0px 20px 0; }
    .footer_top_left, .footer_top_right { width: 100%; margin-bottom: 15px; }
    .footer-navbar-brand { margin: 15px 0; max-width: 150px; }
    .footer1 .site-footer__main { padding-top: 30px; }
    .site-footer__bottom { padding: 40px 0 30px; }
    ul.footer_copyright_menu { flex-direction: column; align-items: center; }
    ul.footer_copyright_menu li { margin: 8px 0; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! SEARCH MODAL STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-modal.active { visibility: visible; opacity: 1; }
.search-container { width: 90%; max-width: 600px; padding: 20px; }
.search-form {
    display: flex;
    background: #1e2e38;
    border: 2px solid #cfa86e;
    border-radius: 50px;
    overflow: hidden;
}
.search-form input { flex: 1; background: transparent; border: none; padding: 16px 24px; color: #fff; font-size: 16px; outline: none; }
.search-form button { background: #cfa86e; border: none; padding: 0 30px; color: #fff; cursor: pointer; font-size: 18px; }
.close-search { position: absolute; top: 30px; right: 30px; background: transparent; border: none; color: #cfa86e; font-size: 32px; cursor: pointer; }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! SEARCH MODAL STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CART SIDEBAR STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    background: #0f1a21;
    z-index: 1500;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    border-left: 2px solid #cfa86e;
    padding: 30px 25px;
    overflow-y: auto;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid rgba(207,168,110,0.3); }
.cart-header h4 { color: #cfa86e; margin: 0; }
.close-cart { background: transparent; border: none; color: #cfa86e; font-size: 24px; cursor: pointer; }
.empty-cart { text-align: center; color: #9aa9b2; padding: 50px 0; }
@media (max-width: 767px) { .cart-sidebar { width: 320px; } }
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CART SIDEBAR STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MENU STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f1a21;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 20px 30px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .nav-menu.open { max-height: 500px; overflow-y: auto; }
    .nav-item { width: 100%; border-bottom: 1px solid rgba(207,168,110,0.15); }
    .nav-link { padding: 14px 25px; }
    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #1e2e38;
        margin: 0;
        border-radius: 0;
    }
    .dropdown-menu-custom.open { display: block; }
    .dropdown-menu-custom a { padding: 12px 25px 12px 45px; }
    .header-actions { gap: 12px; }
    .book-btn { padding: 6px 20px; font-size: 13px; }
}
@media (max-width: 767px) {
    .header-container { padding: 10px 18px; }
    .book-btn { padding: 5px 14px; font-size: 11px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! RESPONSIVE MENU STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/