/* Service Pages Specific Styles */

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #333;
    margin-bottom: 10px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legal-content h3 {
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    color: #667eea;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.note {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #2196f3;
    margin-top: 30px;
}

/* Cookie Policy Specific */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookie-settings-btn {
    margin: 20px 0;
}

.browser-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.browser-links li {
    list-style: none;
    margin: 0;
}

.browser-links a {
    display: block;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    text-decoration: none;
    color: #667eea;
    transition: background-color 0.3s ease;
}

.browser-links a:hover {
    background-color: #667eea;
    color: white;
}

.additional-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

/* Service Detail Pages */
.service-detail {
    padding: 40px 0 80px;
}

.service-intro {
    text-align: center;
    margin-bottom: 80px;
}

.service-icon-large {
    color: #667eea;
    margin-bottom: 30px;
}

.service-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.content-grid {
    display: grid;
    gap: 60px;
}

.content-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.content-section h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.content-section h3 svg {
    color: #667eea;
}

/* Tour List Styles */
.tour-list {
    display: grid;
    gap: 30px;
}

.tour-item {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.tour-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tour-item h4 {
    color: #667eea;
    margin-bottom: 15px;
}

.tour-item ul {
    margin-top: 15px;
    color: #666;
}

/* Event Formats */
.event-formats,
.celebration-types {
    display: grid;
    gap: 30px;
}

.format-item,
.celebration-item {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.format-item:hover,
.celebration-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.format-item h4,
.celebration-item h4 {
    color: #e74c3c;
    margin-bottom: 15px;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.activity-card {
    text-align: center;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    color: #e74c3c;
    margin-bottom: 15px;
}

.activity-card h4 {
    color: #333;
    margin-bottom: 15px;
}

/* Target Groups */
.target-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.group-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.group-item h4 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background: #e74c3c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 8px;
}

/* Locations */
.locations-grid,
.private-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.location-card,
.location-item {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.location-card:hover,
.location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-card h4,
.location-item h4 {
    color: #f39c12;
    margin-bottom: 15px;
}

.location-features,
.location-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.location-features span,
.location-details span {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-category {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #f39c12;
}

.feature-category h4 {
    color: #f39c12;
    margin-bottom: 15px;
}

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

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    margin: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #667eea;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
}

.timeline-content h4 {
    color: #333;
    margin-bottom: 10px;
}

/* Private Events Specific */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.occasion-card {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.occasion-icon {
    color: #e91e63;
    margin-bottom: 20px;
}

.occasion-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.occasion-card ul {
    text-align: left;
    margin-top: 15px;
    color: #666;
}

/* Services Detailed */
.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-group {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.service-group h4 {
    color: #e91e63;
    margin-bottom: 15px;
}

/* Special Services */
.special-services {
    display: grid;
    gap: 25px;
}

.special-item {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    border-left: 4px solid #e91e63;
}

.special-item h4 {
    color: #e91e63;
    margin-bottom: 15px;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    color: white;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.thanks-content h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.thanks-message {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.next-steps h3 {
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-icon {
    color: white;
    margin-bottom: 15px;
}

.step-item h4 {
    margin-bottom: 10px;
}

.newsletter-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.benefits-list {
    text-align: left;
    max-width: 600px;
    margin: 20px auto 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.benefit-item svg {
    color: white;
    flex-shrink: 0;
}

/* CTA Section for service pages */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 30px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .service-intro {
        margin-bottom: 60px;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .thanks-content h2 {
        font-size: 1.2rem;
    }
    
    .next-steps,
    .newsletter-benefits {
        padding: 30px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .activities-grid,
    .occasions-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-content {
        margin-left: 10px;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .browser-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .content-section {
        padding: 25px 15px;
    }
    
    .service-features,
    .services-detailed {
        grid-template-columns: 1fr;
    }
    
    .locations-grid,
    .private-locations {
        grid-template-columns: 1fr;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
        font-size: 0.85rem;
    }
}
