/* Additional Pages Styles - Auto Mieten La Gomera */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Sticky Header for Internal Pages */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header .header {
    padding: 15px 0;
}

.sticky-header .logo,
.sticky-header .nav a {
    color: white;
}

.sticky-header .nav a:hover {
    color: var(--secondary-color);
}

/* About Page */
.intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.advantages-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.advantage-card {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.advantage-card .material-icons-outlined {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.booking-process {
    padding: 80px 0;
    background: var(--bg-white);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(10px);
}

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

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

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

.locations-served {
    padding: 80px 0;
    background: var(--bg-light);
}

.locations-content {
    max-width: 900px;
    margin: 0 auto;
}

.locations-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.location-item {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.location-item .material-icons-outlined {
    color: var(--primary-color);
    font-size: 28px;
}

.location-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.contact-card .material-icons-outlined {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

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

.contact-card a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 30px;
}

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

.airport-info {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.airport-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.airport-info h3 .material-icons-outlined {
    color: var(--primary-color);
    font-size: 32px;
}

.airport-details {
    display: grid;
    gap: 15px;
}

.airport-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.airport-detail .material-icons-outlined {
    color: var(--secondary-color);
    font-size: 24px;
}

.airport-detail strong {
    color: var(--text-dark);
    margin-right: 8px;
}

.airport-detail a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.airport-detail a:hover {
    text-decoration: underline;
}

/* Privacy Policy Page */
.privacy-content {
    padding: 80px 0;
    background: var(--bg-white);
}

.privacy-section {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.privacy-section h2 .material-icons-outlined {
    color: var(--primary-color);
    font-size: 32px;
}

.privacy-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--text-dark);
}

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

.privacy-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Responsive for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .intro-content h2,
    .locations-content h2,
    .map-container h2 {
        font-size: 28px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto;
    }

    .advantages-grid,
    .contact-cards,
    .locations-list {
        grid-template-columns: 1fr;
    }

    .privacy-section {
        padding: 25px 20px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }
}
