/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-primary: #FF6B35;
    --orange-dark: #E85A2A;
    --orange-light: #FF8C5A;
    --white: #FFFFFF;
    --off-white: #FFF8F5;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #CCCCCC;
    --gray-bg: #F5F5F5;
}

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

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: var(--orange-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo-slogan {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-style: italic;
    margin: 0;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--orange-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gray-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.stars {
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--orange-primary);
}

.btn-primary:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--orange-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Features */
.features {
    padding: 3rem 0;
    background-color: var(--off-white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* How it works */
.how-it-works {
    padding: 4rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--orange-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: var(--off-white);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--orange-primary);
}

.service-card h3 {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Bike Rental */
.bike-rental {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.rental-highlight {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange-primary);
    margin: 1rem 0 0.5rem;
}

.rental-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.rental-content {
    max-width: 800px;
    margin: 2rem auto 0;
}

.rental-main {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rental-main h3 {
    color: var(--orange-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.rental-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.rental-main p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.rental-offers-title {
    color: var(--orange-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.rental-offers {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.rental-offers li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.rental-offers li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.rental-closing {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rental-slogan {
    color: var(--orange-primary);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.rental-rules {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 10px;
    border-left: 4px solid var(--orange-primary);
}

.rental-rules-title {
    color: var(--orange-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.rental-rules-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.rental-rules-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.rental-rules-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

/* Location */
.location {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.location-feature {
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: 10px;
}

.location-feature strong {
    color: var(--orange-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* About */
.about {
    padding: 4rem 0;
    background-color: var(--off-white);
}

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

.about-text h3 {
    color: var(--orange-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-list {
    list-style: none;
    margin: 1rem 0;
}

.about-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.old-price {
    font-size: 1.5rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.new-price {
    font-size: 2rem;
    color: var(--orange-primary);
    font-weight: 700;
}

.service-description {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--white);
}

.rating-badge {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.testimonial {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.testimonial .stars {
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-medium);
}

.testimonial-author {
    font-weight: 600;
    color: var(--gray-dark);
}

/* CTA */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background-color: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: var(--gray-medium);
}

/* Contact */
.contact {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--orange-primary);
}

.contact-form-wrapper {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: -0.5rem;
}

/* Footer */
.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-slogan {
    color: var(--orange-light);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--orange-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-buttons a {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo-slogan {
        display: none;
    }

    .rental-main {
        padding: 1.5rem;
    }

    .rental-main h3 {
        font-size: 1.5rem;
    }

    .rental-offers-title {
        font-size: 1.2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 1.5rem;
    }

    .steps-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
