/* Mica Tour Specific Styles */
.tour-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 50%, #991B1B 100%);
    overflow: hidden;
    padding-top: 80px;
}

.tour-hero-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    position: relative;
    animation: slideInUp 1s ease-out;
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tour-tagline {
    font-size: 1.5rem;
    color: #FCD34D;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tour-description {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.tour-hero-image {
    flex: 1;
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.tour-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 50px;
    filter: contrast(1.1) saturate(1.2);
}

.tour-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F0FF 0%, #E6E6FA 100%);
}

.tour-packages {
    padding: 6rem 0;
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(139, 0, 139, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 0, 139, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B008B 0%, #9932CC 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.package-card:hover::before {
    opacity: 0.05;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 0, 139, 0.15),
        0 0 30px rgba(139, 0, 139, 0.1);
}

.package-card > * {
    position: relative;
    z-index: 2;
}

.package-image {
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #8B008B;
}

.package-duration {
    font-size: 1rem;
    color: #9932CC;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.package-features i {
    color: #9932CC;
    font-size: 0.8rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B008B;
}

.price-unit {
    font-size: 1rem;
    color: var(--text-gray);
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B008B 0%, #9932CC 100%);
    color: var(--text-white);
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 0, 139, 0.3);
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.package-btn:hover::before {
    left: 100%;
}

.package-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(139, 0, 139, 0.4),
        0 0 20px rgba(139, 0, 139, 0.3);
}

.blog-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F0FF 0%, #E6E6FA 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(139, 0, 139, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 0, 139, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B008B 0%, #9932CC 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.blog-card:hover::before {
    opacity: 0.03;
}

.blog-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 16px 40px rgba(139, 0, 139, 0.15),
        0 0 25px rgba(139, 0, 139, 0.1);
}

.blog-card > * {
    position: relative;
    z-index: 1;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #8B008B;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.blog-date {
    color: #9932CC;
    font-weight: 500;
}

.blog-read-more {
    color: #8B008B;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #9932CC;
}

.booking-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(139, 0, 139, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 0, 139, 0.1);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #8B008B;
    text-align: center;
}

.booking-form-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #8B008B;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input {
    padding: 1rem;
    border: 2px solid rgba(139, 0, 139, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-input:focus {
    outline: none;
    border-color: #8B008B;
    box-shadow: 0 0 0 3px rgba(139, 0, 139, 0.1);
}

.booking-btn {
    grid-column: 1 / -1;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #8B008B 0%, #9932CC 100%);
    color: var(--text-white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 0, 139, 0.3);
    margin-top: 1rem;
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.booking-btn:hover::before {
    left: 100%;
}

.booking-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(139, 0, 139, 0.4),
        0 0 20px rgba(139, 0, 139, 0.3);
}

.booking-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(139, 0, 139, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 0, 139, 0.1);
    text-align: center;
}

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #8B008B;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #8B008B;
    font-size: 1.1rem;
}

.contact-details i {
    color: #9932CC;
    width: 20px;
}

.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F0FF 0%, #E6E6FA 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(139, 0, 139, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(139, 0, 139, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B008B 0%, #9932CC 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.review-card:hover::before {
    opacity: 0.03;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 16px 40px rgba(139, 0, 139, 0.15),
        0 0 25px rgba(139, 0, 139, 0.1);
}

.review-card > * {
    position: relative;
    z-index: 1;
}

.review-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.review-rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #8B008B;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-author {
    text-align: center;
}

.review-author strong {
    display: block;
    font-weight: 700;
    color: #8B008B;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-author span {
    color: #9932CC;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tour-hero {
        flex-direction: column;
        min-height: auto;
        padding-top: 80px;
    }
    
    .tour-hero-content {
        padding: 2rem 1rem;
    }
    
    .tour-title {
        font-size: 2.5rem;
    }
    
    .tour-hero-image {
        height: 300px;
        border-radius: 15px;
        margin: 2rem 1rem 0;
    }
    
    .tour-hero-image img {
        border-radius: 15px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-form-fields {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
