/* Basic settings and variables */
:root {
    --bg-color: #fdfaf6;
    --primary-green: #90c85b;
    --text-dark: #1a1a1a;
    --text-gray: #333333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header section */
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.header-title h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
}

.header-title h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-dark);
}

.header-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.header-contact ul {
    list-style: none;
}

.header-contact li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.header-contact li i {
    color: var(--primary-green);
    font-size: 1.5rem;
    width: 30px;
    margin-right: 10px;
    text-align: center;
}

/* Features */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.feature-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Pricing section */
.pricing-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.card-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.card-list {
    list-style: none;
    flex-grow: 1; /* In case columns are different heights it keeps prices aligned*/
}

.card-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

/* Dot lists */
.card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

.card-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
}

.footer-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

.footer-note-explanation {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 10px;
    font-weight: 400;
}

/* Booking section */
.booking-section {
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.iframe-container {
    width: 100%;
    min-height: 500px;
}

.iframe-container iframe {
    width: 100%;
    border: none;
    border-radius: 8px;
}

/* Picture in the lower part of site */
.image-placeholder {
    width: 100%;
    height: 300px;
    background-image: linear-gradient(to bottom, rgba(253, 250, 246, 1), rgba(253, 250, 246, 0)), url('../img/washed_cars_backgroud.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-top: 40px;
}

/* Responsive design for mobile and smaller screens */
@media (max-width: 900px) {
    .header-title h1 {
        font-size: 3.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .card-price {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .header-section {
        flex-direction: column;
    }
    
    .header-title h1 {
        font-size: 2.8rem;
    }
    
    .booking-section {
        padding: 20px;
    }
}