/* ============================================
   AGRA DESTINATION PAGE - EXACT DESIGN
   ============================================ */

   :root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a2e;
    --accent: #c9a961;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 40px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 30, 0.8) 100%),
                url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.banner-title {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin: 0;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Tour Packages Grid Section */
.tour-packages-grid {
    background: var(--white);
}

.tour-package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.tour-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.package-content {
    padding: 20px;
    text-align: center;
}

.package-content h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

/* About Agra Section */
.about-agra {
    background: var(--white);
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.about-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    margin: 0;
}

/* Photo Gallery Section */
.photo-gallery {
    background: var(--light);
}

.photo-gallery .section-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Gallery Carousel Items */
.gallery-carousel .gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 10px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 50px;
    color: var(--primary);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* View All Button */
.btn-view-all-gallery {
    display: inline-block;
    padding: 14px 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-view-all-gallery:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Owl Carousel Custom Navigation */
.gallery-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.gallery-carousel .owl-nav [class*='owl-'] {
    width: 50px;
    height: 50px;
    background: var(--gradient) !important;
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    pointer-events: all;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-carousel .owl-nav [class*='owl-']:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.gallery-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.gallery-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.gallery-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: block;
    transition: var(--transition);
}

.gallery-carousel .owl-dots .owl-dot.active span,
.gallery-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary);
    width: 35px;
    border-radius: 10px;
}

/* GLightbox Fix */
.glightbox-clean .gslide-media {
    background: #000 !important;
}

.glightbox-clean .gslide-image img {
    max-height: 90vh !important;
    max-width: 90vw !important;
    object-fit: contain !important;
}

.glightbox-clean .gslide-description {
    background: var(--gradient) !important;
    color: var(--white) !important;
}

.glightbox-clean .gslide-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
}

.glightbox-clean .gslide-desc {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.glightbox-clean .gclose,
.glightbox-clean .gprev,
.glightbox-clean .gnext {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .gallery-item img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-content p {
        text-align: left;
    }
    
    .package-image {
        height: 220px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .package-content h4 {
        font-size: 1rem;
    }
    
    .btn-view-all-gallery {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .gallery-item img {
        height: 220px;
    }
}
