/* Additional Pages Styles for La Palma */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 120px 0 80px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page Content */
.page-content {
    padding: 0 0 80px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-section ul {
    list-style: none;
    margin-bottom: 20px;
}

.content-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.content-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.content-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon .material-icons {
    font-size: 36px;
    color: var(--text-white);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Booking Process Steps */
.booking-steps {
    margin: 50px 0;
}

.step-card {
    background: var(--bg-white);
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 25px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Advantages List */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.advantage-item {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.advantage-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon .material-icons {
    font-size: 28px;
    color: var(--text-white);
}

.advantage-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.advantage-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.location-tag {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-tag:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

/* Contact Page Specific */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
}

.contact-card-icon .material-icons {
    font-size: 40px;
    color: var(--text-white);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
}

/* Map Container */
.map-container {
    margin: 50px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    padding: 30px;
}

.map-container h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.map-info p {
    margin: 0;
    color: var(--text-light);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.map-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.map-link .material-icons {
    font-size: 20px;
}

/* Privacy Policy Specific */
.privacy-section {
    background: var(--bg-white);
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.privacy-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.privacy-section h3 .material-icons {
    font-size: 28px;
    color: var(--primary-color);
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 20px;
}

.privacy-section ul li::before {
    left: -30px;
}

.last-updated {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 40px;
    color: var(--text-light);
    font-style: italic;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-white);
    padding: 35px 40px;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
}

.highlight-box h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 26px;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-box ul li {
    color: rgba(255, 255, 255, 0.95);
}

.highlight-box ul li::before {
    color: #ffd700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-white);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section h2::after {
    background: rgba(255, 255, 255, 0.4);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button .material-icons {
    font-size: 24px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    background: var(--bg-light);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.breadcrumbs li::before {
    display: none;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: var(--text-light);
    font-size: 18px;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

/* Responsive Design for Pages */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 38px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .content-section h2 {
        font-size: 30px;
    }
    
    .step-card {
        padding: 30px 25px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .content-section h2 {
        font-size: 26px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    .features-grid,
    .advantages-list,
    .contact-info-cards,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .step-number-large {
        margin: 0 auto;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto;
    }
    
    .map-wrapper {
        height: 350px;
    }
    
    .map-info {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .highlight-box,
    .cta-section {
        padding: 30px 25px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 26px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    .content-section h2 {
        font-size: 22px;
    }
    
    .feature-card,
    .contact-card {
        padding: 25px 20px;
    }
    
    .map-wrapper {
        height: 300px;
    }
}
