/* Velux Blinds Page Styles - Roxanne's Interiors */
.velux-blinds-page {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #414344;
}

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

/* Hero Section */
.velux-hero {
    background: linear-gradient(135deg, #f9f9f8 0%, #e8e8e8 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.velux-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://ext.same-assets.com/3358497995/923179783.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

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

.page-title {
    font-family: 'Jost', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #414344;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Titles */
.section-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 20px;
}

/* Why Choose Velux Section */
.why-velux-section {
    padding: 80px 0;
    background: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.intro-text {
    font-size: 1.1rem;
    color: #414344;
    margin-bottom: 30px;
    line-height: 1.7;
}

.velux-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.velux-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #414344;
    font-size: 1rem;
}

.velux-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #57b3bb;
    font-weight: bold;
    font-size: 1.2rem;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Velux Types Section */
.velux-types {
    padding: 80px 0;
    background: #f9f9f8;
}

.velux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.velux-type-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.velux-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.velux-image {
    height: 250px;
    overflow: hidden;
}

.velux-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.velux-type-card:hover .velux-image img {
    transform: scale(1.05);
}

.velux-content {
    padding: 35px 30px;
}

.velux-content h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.velux-content p {
    margin-bottom: 20px;
    color: #414344;
    font-size: 0.95rem;
    line-height: 1.6;
}

.velux-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px 0;
}

.velux-benefits li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #414344;
    font-size: 0.9rem;
}

.velux-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #57b3bb;
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #57b3bb;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: #4a9ca5;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    box-shadow: 0 5px 15px rgba(87, 179, 187, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #57b3bb;
    border: 2px solid #57b3bb;
}

.cta-button.secondary:hover {
    background: #57b3bb;
    color: white;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f8;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: #57b3bb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(87, 179, 187, 0.3);
}

.process-step h3 {
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
}

.process-step p {
    color: #414344;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 4rem;
    color: #57b3bb;
    font-family: serif;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #414344;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #989696;
    font-size: 0.9rem;
}

/* CTA Section */
.velux-cta-section {
    padding: 80px 0;
    background: #2c5aa0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button.primary {
    background: #57b3bb;
    font-size: 1.1rem;
    padding: 18px 35px;
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 16px 35px;
}

.cta-buttons .cta-button.secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.8rem;
    }

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

    .velux-types,
    .why-velux-section,
    .how-it-works,
    .testimonials-section,
    .velux-cta-section {
        padding: 60px 0;
    }

    .velux-content {
        padding: 25px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.2rem;
    }

    .velux-hero {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .velux-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .quote-icon {
        font-size: 3rem;
    }
}