/* Home Page Specific Styles */

/* Hero Section / Carousel */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    /*height: 60vh;*/
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    filter: brightness(0.8);
}



/* Responsive carousel adjustments */
@media (max-width: 768px) {
    .carousel-item {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        min-height: 250px;
    }
}

/* No content placeholder styling */
.carousel-item .d-flex {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.carousel-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    max-width: 800px;
    padding: 0;
    background: none;
    border-radius: 0;
}

/* Image-only slides (no caption) */
.carousel-item:not(:has(.carousel-caption)) img {
    filter: brightness(1); /* No darkening for image-only slides */
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    z-index: 10;
    background: none;
    border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 193, 7, 0.9);
}

/* Carousel Indicators */
.carousel-indicators {
    z-index: 10;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 3px;
}

.carousel-indicators button.active {
    background-color: #ffc107;
}

/* Alternative display modes (can be added via admin or classes) */
.carousel-item.fill-mode img {
    object-fit: fill;
}

.carousel-item.cover-mode img {
    object-fit: cover;
    object-position: center center;
}

.carousel-item.smart-crop img {
    object-fit: cover;
    object-position: center 30%; /* Focus on upper-center for portraits/people */
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.btn-book-now {
    background: linear-gradient(45deg, var(--primary-color), #f4d03f);
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
    background: linear-gradient(45deg, #f4d03f, var(--primary-color));
}

/* Services Section */
.services-section {
    background: #111111;
    padding: 80px 0;
    border-top: 1px solid #333;
    position: relative;
    overflow: hidden;
}

/* General Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: block;
    width: 100%;
    clear: both;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    width: 100%;
}

.section-title .lead {
    color: #cccccc !important;
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), #f4d03f);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
    /*padding: 60px 20px;*/
}

.service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 25px 15px 60px 15px;
    border-radius: 15px;
    min-height: 180px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    position: relative;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2);
    border-color: #f4d03f;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.service-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(1.2);
}

.service-placeholder {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
}

.service-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item:hover .service-name {
    color: #d4af37;
}

/* Subcategories Dropdown */
.subcategories-dropdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 18px;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.service-item:hover .subcategories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.service-item.dropdown-disabled:hover .subcategories-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -60%);
    pointer-events: none;
}

.subcategories-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subcategories-header h5 {
    color: #d4af37;
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #444;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.close-dropdown {
    position: absolute;
    top: -5px;
    right: 0;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-dropdown:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #f4d03f;
}

.subcategories-list {
    max-height: 180px;
    overflow-y: auto;
    padding-right: 5px;
}

.subcategories-list::-webkit-scrollbar {
    width: 4px;
}

.subcategories-list::-webkit-scrollbar-track {
    background: #333;
    border-radius: 2px;
}

.subcategories-list::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 2px;
}

.subcategories-list::-webkit-scrollbar-thumb:hover {
    background: #f4d03f;
}

.subcategory-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    border-bottom: 1px solid #444;
    margin: 2px 0;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.subcategory-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.subcategory-item:last-child {
    border-bottom: none;
}

.subcategory-name {
    color: #ffffff;
    font-size: 0.85rem;
    flex: 1;
    text-align: left;
    font-weight: 400;
    line-height: 1.2;
}

.subcategory-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 10px;
}

.subcategories-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #444;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    margin-left: -18px;
    margin-right: -18px;
    margin-bottom: -18px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
    border-radius: 0 0 10px 10px;
}

.starting-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-content {
    padding: 25px;
    text-align: center;
}

.category-title {
    background: linear-gradient(45deg, var(--primary-color), #f4d03f);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.category-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Packages Section - 4-Item Rotating Carousel */
.packages-section {
    padding: 80px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Packages Section - Specific Styling */
.packages-section .section-title h2 {
    color: #d4af37;
    font-size: 3rem;
    letter-spacing: 3px;
}

.packages-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.packages-carousel {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

.package-slide {
    width: 25%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
}

.package-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.package-item:hover {
    transform: scale(1.05);
}

.package-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.package-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.package-button {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-button:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Package and Service Links */
.package-item-link,
.service-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.package-item-link:hover,
.service-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.service-price {
    margin-top: 10px;
    text-align: center;
}

.starting-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Book Service Button */
.btn-book-service {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-book-service:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-book-service i {
    font-size: 1rem;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicator.active {
    background: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Carousel Dots */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: #d4af37;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .package-slide {
        width: 33.333%;
    }
    
    .packages-carousel-wrapper {
        padding: 0 60px;
    }
}

@media (max-width: 992px) {
    .package-slide {
        width: 50%;
    }
    
    .packages-carousel-wrapper {
        padding: 0 40px;
    }
    
    .packages-section .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .package-slide {
        width: 100%;
    }
    
    .packages-carousel-wrapper {
        padding: 0 20px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .section-title .lead {
        font-size: 1.1rem;
    }
    
    .package-image {
        height: 300px;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .package-image {
        height: 250px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

/* Additional Services Section (Basic Makeup & Hair Styling) */
.additional-services-section {
    padding: 80px 0;
    background: #000000;
}

.additional-services-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item-large {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 480px;
}

.service-item-large:hover {
    transform: scale(1.02);
}

.service-image-large {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.service-button-large {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #ffffff;
    border: none;
    padding: 15px 0;
    width: 100%;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
}

.service-button-large:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.service-placeholder-large {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 10px;
    border: 2px dashed #555;
}

@media (max-width: 768px) {
    .additional-services-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-item-large {
        max-width: 100%;
    }
    
    .service-image-large {
        height: 280px;
    }
}

/* Services Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 2px solid #d4af37;
    padding: 60px 0;
}

.page-title {
    color: #d4af37;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.9;
}

.services-info-section {
    background: #111111;
    padding: 80px 0;
    border-top: 1px solid #333;
}

.info-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.service-info-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.info-card h4 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* CTA Section completely removed */

/* Package Modal */
.package-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 3% auto;
    width: 90%;
    max-width: 900px;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00bcd4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close:hover {
    background: #00acc1;
}

.modal-body {
    display: flex;
    min-height: 500px;
}

.modal-left {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.modal-package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#modalPackageName {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#modalDescription {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.package-pricing {
    margin-bottom: 50px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.discount-text {
    background: #ff5722;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.book-now-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
    
    .modal-left {
        padding: 40px 30px;
    }
    
    .modal-right {
        min-height: 300px;
    }
    
    #modalPackageName {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        top: 3%;
        transform: unset;

    }

}
.gallery-home .modal-content {
       
        top: 0%;
        transform: unset;

    }

/* Empty State Messages */
.empty-state {
    padding: 80px 0;
    text-align: center;
}

.empty-state h4 {
    color: #6c757d;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-state p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Admin Content Specific Styles */
.admin-content-section {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Global Responsive Design */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .packages-section .section-title h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .carousel-caption {
        bottom: 30px;
    }
    
    .btn-book-now {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .section-title .lead {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px 20px;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .subcategories-dropdown {
        width: 280px;
        padding: 15px;
        margin-top: 5px;
    }
    
    .package-card-new {
        flex-direction: column;
        max-width: 100%;
    }
    
    .package-image-container {
        height: 250px;
    }
    
    .package-details {
        padding: 25px 20px;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .discounted-price {
        font-size: 1.6rem;
    }
    
    .package-book-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .empty-state {
        padding: 50px 0;
    }
    
    .empty-state h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .carousel-caption {
        bottom: 20px;
    }
    
    .btn-book-now {
        padding: 12px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .subcategories-dropdown {
        width: 260px;
        padding: 12px;
        font-size: 0.8rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .subcategory-item {
        padding: 8px 6px;
    }
    
    .subcategories-footer {
        margin-left: -12px;
        margin-right: -12px;
        margin-bottom: -12px;
        padding: 8px 12px 12px 12px;
    }
    
    .package-slide {
        padding: 10px;
    }
    
    .package-image-container {
        height: 200px;
    }
    
    .package-details {
        padding: 20px 15px;
    }
    
    .package-name {
        font-size: 1.1rem;
    }
    
    .discounted-price {
        font-size: 1.4rem;
    }
    
    .package-book-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        margin-top: 20px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 3px;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        height: auto;
        min-height: auto;
        max-height: 350px;
    }
    
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .btn-book-now {
        padding: 12px 20px;
        font-size: 0.6rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .section-title .lead {
        font-size: 1rem;
    }
    
    .categories-section,
    .packages-section {
        padding: 50px 0;
    }
}

/* Gallery Section Styles (Home Page Specific) */
.gallery-section {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    margin: 0 auto;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid #333333;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay-content {
    text-align: center;
    color: white;
}

.gallery-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-service {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery-image {
        height: 200px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 180px;
    }
    
    .gallery-section {
        padding: 50px 0;
    }
}

/* Gallery Modal Styles (Home Page) */
.gallery-home .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background-color: #1a1a1a;
    color: #ffffff;
}

.gallery-home .modal-header {
    background-color: #000000;
    border-bottom: 1px solid #333333;
}

.gallery-home .modal-title {
    color: #d4af37;
}

.gallery-home .btn-close {
    filter: invert(1);
}

.gallery-home .modal-body img {
    border-radius: 0;
    max-height: 70vh;
    width: auto;
}

.gallery-home .modal-footer {
    background-color: #1a1a1a !important;
    border-top: 1px solid #333333;
}

/* Gallery Details in Modal */
.gallery-home .gallery-details {
    text-align: left;
}

.gallery-home .detail-item {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.gallery-home .detail-item strong {
    color: #d4af37;
}

.gallery-home .detail-item i {
    color: #d4af37;
}

/* Gallery Empty State and Load More */
.no-gallery-items {
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 15px;
    border: 2px dashed #d4af37;
}

.no-gallery-items h4 {
    color: #d4af37;
}

.no-gallery-items p {
    color: #cccccc;
}

.btn-load-more {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Home page specific overrides to prevent gallery.css conflicts */
.gallery-home .gallery-section {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 80px 0 !important;
}

.gallery-home .section-title {
    text-align: center !important;
    margin-bottom: 60px !important;
    position: relative !important;
    color: #ffffff !important;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.gallery-home .title-underline {
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(45deg, #d4af37, #f4d03f) !important;
    margin: 0 auto !important;
}
