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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

ul {
    list-style-position: inside;
    padding-left: 10px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* --- Placeholder Utilities --- */
.img-placeholder, .img-placeholder-large, .brand-placeholder, .img-placeholder-map {
    background-color: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
}

.img-placeholder { height: 250px; width: 100%; }
.img-placeholder-large { height: 400px; width: 100%; }
.img-placeholder-map { height: 300px; width: 100%; }
.brand-placeholder { width: 120px; height: 40px; margin: 0 15px; }


/* --- NEW: Main Header (White Background) --- */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Optional subtle separation */
    text-align: center;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 250px;
    max-height: 80px; /* Restrict height so it doesn't get too tall */
    width: auto;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 60px 0 100px;
    background: url('skiing-background.png') no-repeat center center/cover; /* Replace with real image */
    background-color: #f4f4f4; /* Fallback color */
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-area {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 250px; /* Ensure logo doesn't get too big */
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Changed to a dark grey/black overlay with 60% opacity */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Hero Button Styles */
.btn-hero {
    display: inline-block;
    background-color: #ef233c; /* Red color matching footer */
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(239, 35, 60, 0.4);
}

.btn-hero:hover {
    background-color: #d90429;
    transform: translateY(-2px);
}

.btn-hero i {
    margin-right: 10px;
}

.rating .stars {
    color: #f1c40f;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

/* --- Brands Section --- */
.brands {
    padding: 30px 0;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.brands-title {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
    flex-wrap: wrap;
    gap: 30px; /* Increased gap for better spacing */
}

/* New style for the brand logo images */
.brand-logo-img {
    max-height: 50px; /* Set a consistent maximum height */
    width: auto;      /* Maintain aspect ratio */
    filter: grayscale(100%); /* Optional: Make logos grayscale for a unified look */
    opacity: 0.7;            /* Optional: Slightly transparent */
    transition: all 0.3s;
}

/* Optional: Hover effect to bring back color */
.brand-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Services Section --- */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    text-align: left;
    gap: 40px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img, .service-desc {
    flex: 1;
}

.service-desc h3 {
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.service-desc ul li {
    margin-bottom: 8px;
}

.pricing-list {
    margin: 60px auto;
    max-width: 800px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pricing-list h3 {
    margin-bottom: 20px;
}

.large-image-container {
    margin-top: 60px;
}

/* --- Testimonials Generic --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: bold;
    color: #e74c3c;
}

/* --- Testimonials Specifics --- */
.testimonials-top, .testimonials-bottom {
    padding: 60px 0;
    text-align: center;
    background-color: #fafafa;
}

/* --- Process Section (Dark Blue) --- */
.process {
    background-color: #2c3e50;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.process h2 {
    margin-bottom: 50px;
    color: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

/* --- About Us --- */
.about-us {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-img {
    flex: 1;
}

/* --- Location Section (Dark Blue) --- */
.location-section {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.location-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hours-info {
    flex: 0 0 250px;
    text-align: left;
}

.hours-info i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.map-area {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

/* --- FAQ --- */
.faq {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #ccc;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* --- CTA Footer (Red) --- */
.cta-footer {
    background-color: #ef233c; /* Bright Red */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-footer h2 { font-size: 2.5rem; margin-bottom: 5px; }
.cta-footer h3 { font-size: 1.8rem; margin-bottom: 20px; font-weight: 400; }
.cta-footer p { margin-bottom: 30px; }

.btn-white {
    display: inline-block;
    background-color: #fff;
    color: #ef233c;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* --- Footer --- */
footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 8px; /* Adds space between the address lines */
}

footer p:first-child {
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* --- Mobile Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }

    .service-row, .service-row.reverse, .about-grid, .location-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .service-desc ul {
        display: inline-block;
        text-align: left;
    }

    .pricing-list {
        padding: 20px;
    }
    
    .hours-info {
        text-align: center;
    }
}