/* Auto Mieten La Gomera - Main Styles */
/* Color Scheme: Warm Orange/Coral - Different from previous sites */

:root {
    --primary-color: #E65100;
    --primary-dark: #BF360C;
    --primary-light: #FF8A65;
    --secondary-color: #FFA726;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #FFF3E0;
    --bg-white: #FFFFFF;
    --border-color: #FFCCBC;
    --success-color: #4CAF50;
    --shadow: 0 2px 8px rgba(230, 81, 0, 0.15);
    --shadow-hover: 0 4px 16px rgba(230, 81, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with Header */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/la-gomera.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    color: var(--bg-white);
    padding: 10px 0px 30px 0px;
}

/* Header on Hero Background */
.header {
    padding: 20px 0;
    width: 100%;
    position: relative;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 600;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 28px;
    cursor: pointer;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 0px 0px
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.hero-benefits {
        display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 11px;
    margin-bottom: 30px;
  margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

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

/* Widget Container on Hero */
#dch {
    max-width: 1000px;
    margin-top: 30px;
}

/* Section Styles */
section {
    padding: 50px 0;
}

section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* How to Rent Section */
.how-to-rent {
    background: var(--bg-white);
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card .material-icons-outlined {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 12px;
}

.step-title h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

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

/* Services Section */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

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

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

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

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

/* Why Rent Section */
.why-rent {
    background: var(--bg-white);
}

.why-rent-content {
    max-width: 100%;
}

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

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.keyword-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.keyword-tag .material-icons-outlined {
    font-size: 18px;
}

/* Pricing Section */
.pricing {
    background: var(--bg-light);
}

.pricing-intro {
    max-width: 100%;
    margin: 0 0 40px;
    text-align: left;
}

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

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

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

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

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

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

.price-card .price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-card .period {
    color: var(--text-light);
    font-size: 14px;
}

.recommendations {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

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

.recommendations h3 .material-icons-outlined {
    color: var(--primary-color);
}

.recommendations ul {
    list-style: none;
    display: grid;
    gap: 15px;
}

.recommendations li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.recommendations li .material-icons-outlined {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
}

/* Price Table */
.price-table-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--text-dark);
}

.price-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.price-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.price-table tbody tr:hover {
    background: var(--bg-light);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* Reviews Section */
.reviews {
    background: var(--bg-white);
}

.overall-rating {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-hover);
}

.overall-rating .rating-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overall-rating .stars {
    font-size: 32px;
    margin-bottom: 10px;
    color: #FFD700;
}

.overall-rating p {
    font-size: 18px;
    opacity: 0.9;
}

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

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.reviewer-info .location {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviewer-info .location .material-icons-outlined {
    font-size: 16px;
}

.rating {
    display: flex;
    gap: 3px;
    color: #FFD700;
    font-size: 20px;
}

.review-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* Traffic Rules Section */
.traffic-rules {
    background: var(--bg-light);
}

.rules-grid {
    display: grid;
    gap: 30px;
}

.rules-main {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-color);
}

.rules-main h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.rules-main p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.rules-main ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.rules-main li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px;
    background: var(--bg-light);
    border-radius: 8px;
}

.rules-main li .material-icons-outlined {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.rules-sub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rule-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.rule-card .material-icons-outlined {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

/* Places Section */
.places {
    background: var(--bg-white);
}

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

.place-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
        display: flex;
    flex-direction: column;
}

.place-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.place-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.place-card h3 .material-icons-outlined {
    color: var(--primary-color);
    font-size: 28px;
}

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

.place-info {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.info-item .material-icons-outlined {
    font-size: 20px;
    color: var(--secondary-color);
}

/* Top Cars Section */
.top-cars {
    background: var(--bg-light);
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.car-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.car-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #FFFFFF;
    padding: 20px;
}

.car-content {
    padding: 25px;
}

.car-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.car-category {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.car-features {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.feature .material-icons-outlined {
    color: var(--primary-color);
    font-size: 22px;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-view-offer {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
}

.btn-view-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.4);
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question .material-icons-outlined {
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .material-icons-outlined {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--text-dark));
    color: var(--bg-white);
    padding: 40px 0 0;
}

.footer-locations {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-locations h2 {
    color: var(--bg-white);
    font-size: 28px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-locations h2::after {
    display: none;
}

.footer-locations h2 .material-icons-outlined {
    font-size: 32px;
    color: var(--secondary-color);
}

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

.locations-grid ul {
    list-style: none;
}

.locations-grid li {
    margin-bottom: 10px;
}

.locations-grid a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.locations-grid a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.locations-grid li:not(:has(a)) {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-main {
    padding: 40px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-text {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px 30px 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 38px;
    }

    section h2 {
        font-size: 32px;
    }

    .steps-grid,
    .services-grid,
    .rules-sub-grid,
    .cars-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .places-grid {
        grid-template-columns: 1fr;
    }

    .price-table {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 28px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .services-grid,
    .price-cards,
    .reviews-grid,
    .rules-sub-grid,
    .cars-grid {
        grid-template-columns: 1fr;
    }

    .overall-rating .rating-number {
        font-size: 48px;
    }

    .price-table {
        font-size: 12px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-body {
        padding: 50px 20px 20px;
    }

    .container {        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    section h2 {
        font-size: 24px;
    }

    .logo img {
        height: 40px;
    }

    .step-card,
    .service-card,
    .rule-card {
        padding: 25px 15px;
    }

    .car-content h3 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
