/* FAQ Accordion Styles - Robbie's Custom Styles */
.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.faq-accordion-container .faq-header {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-accordion-container .faq-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-accordion-container .faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0EB4CA;
    border-radius: 2px;
}

.faq-accordion .faq-item {
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-accordion .faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-accordion .faq-item.active {
    border-color: #3498db;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.15);
}

.faq-accordion .faq-item.active .faq-question {
    background: #0EB4CA;
    color: white;
}

.faq-accordion .faq-item.active .faq-question h3 {
    color: white;
}

.faq-accordion .faq-item.active .faq-question:hover h3 {
    color: #87CEEB !important;
    transition: color 0.3s ease;
}

.faq-accordion .faq-item .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-accordion .faq-item .faq-question:hover {
    background: #e9ecef;
}

.faq-accordion .faq-item .faq-question h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-accordion .faq-item .faq-question .faq-toggle {
    display: none;
}

.faq-accordion .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #ffffff;
}

.faq-accordion .faq-item .faq-answer .faq-content {
    padding: 0 1.5rem;
}

.faq-accordion .faq-item .faq-answer .faq-content p {
    color: #5a6c7d; text-align:left;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.faq-accordion .faq-item.active .faq-answer {
    overflow: visible;
    padding: 1.5rem 0;
}

/* Service Icon Styling */
.service-icon {
    max-width: 80px;
    margin-bottom: 20px;
}

/* Service Short Description */
.service-short-description {
    margin-bottom: 2rem;
}

.service-content-above-gallery {
    margin-bottom: 2rem;
}

.service-content-below-gallery {
    margin-top: 2rem;
}

/* Service Gallery Styling */
.service-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.service-gallery .gallery-item {
    width: 48%;
    max-width: 48%;
}

.service-gallery .gallery-icon.landscape img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Precision-Made Biminis Section */
.precision-biminis-section {
    margin: 38px 0 30px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.precision-biminis-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px;
    text-align: left;
}

.precision-biminis-section p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: left;
}

.precision-biminis-section p:last-child {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Why Choose Elite Yacht Covers Section */
.why-choose-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.why-choose-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px;
    text-align: left;
}

.why-choose-section > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.why-choose-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: left;
}

.why-choose-section h3 + p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.why-choose-section h3:last-of-type + p {
    margin-bottom: 0;
}

/* Bimini CTA Section */
.bimini-cta-section {
    margin: 60px -100vw;
    padding: 0;
    background: #0EB4CA;
    color: white;
    position: relative;
    overflow: hidden;
}

.bimini-cta-content {
    display: flex;
    align-items: flex-start;
    min-height: 450px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 60px 40px;
}

.bimini-cta-left {
    flex: 1;
    padding-right: 60px;
    text-align: left;
}

.bimini-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bimini-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bimini-cta-list {
    margin-bottom: 1.5rem;
}

.bimini-cta-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.bimini-cta-item:last-child {
    margin-bottom: 1.2rem;
}

.bimini-cta-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.bimini-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.bimini-cta-right {
    flex: 0 0 45%;
    position: relative;
}

.bimini-cta-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bimini-cta-bg-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.bimini-cta-bg-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 1;
}

/* Benefits of Custom-Made Yacht Bimini Section */
.benefits-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.benefits-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px;
    text-align: left;
}

.benefits-section > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.benefits-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: left;
}

.benefits-section h3 + p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.benefits-section h3:last-of-type + p {
    margin-bottom: 0;
}

/* Specifications & Material Options Section */
.specifications-section {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.specifications-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px;
    text-align: left;
}

.specifications-section > p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.specifications-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: left;
}

.specifications-section h3 + p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

.specifications-section .specifications-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8ecf0;
}

.specifications-section .specifications-footer p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
    font-style: italic;
}

/* How the Process Works Section */
.process-section {
    margin: 60px 0;
    padding: 0;
}

.process-header {
    text-align: left;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    position: relative;
}

.process-header-underline {
    width: 60px;
    height: 3px;
    background: #0EB4CA;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.process-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step .step-content {text-align:left}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0EB4CA;
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Speak to Our Team Section */
.speak-to-team-section {
    margin: 60px 0 40px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.speak-to-team-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.5rem;
}

.speak-to-team-section p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.speak-to-team-section p:nth-child(2) {
    font-size: 1.1rem;
}

.speak-to-team-section p:nth-child(3) {
    font-size: 1rem;
}

.speak-to-team-section p:nth-child(4) {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.speak-to-team-section p:nth-child(4) a {
    color: #3498db;
    text-decoration: none;
}

.speak-to-team-section p:nth-child(5) {
    font-size: 1rem;
}

.speak-to-team-section p:nth-child(6) {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-accordion-container {
        padding: 1rem 0.5rem;
    }
    
    .faq-accordion-container .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-accordion .faq-item .faq-question {
        padding: 1rem;
    }
    
    .faq-accordion .faq-item .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-accordion .faq-item .faq-answer .faq-content {
        padding: 0 1rem;
    }
    
    .faq-accordion .faq-item.active .faq-answer {
        padding: 1rem 0;
    }

    .process-section .process-header h2 {
        font-size: 2rem !important;
    }
    
    .process-step {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1rem !important;
    }
    
    .process-step .step-number {
        align-self: flex-start !important;
    }
    
    .process-step .step-content h3 {
        font-size: 1.1rem !important;
    }

    .precision-biminis-section {
        padding: 30px 20px !important;
    }

    .precision-biminis-section h2 {
        font-size: 1.8rem !important;
    }

    .bimini-cta-section {
        margin: 40px 0 !important;
        padding: 0 !important;
    }
    
    .bimini-cta-section > div {
        padding: 30px 20px 50px 20px !important;
        align-items: flex-start !important;
        flex-wrap: wrap;
    }
    
    .bimini-cta-section > div > div:first-child {
        padding-right: 0 !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
        width:100%;
    }
    
    .bimini-cta-section > div > div:last-child {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width:100%;
    }
    
    .bimini-cta-section img {
        height: 250px !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .bimini-cta-section h2 {
        font-size: 2rem !important;
    }

    .bimini-cta-section p {
        font-size: 1.1rem !important;
    }

    .why-choose-section {
        padding: 30px 20px !important;
    }

    .why-choose-section h2 {
        font-size: 1.8rem !important;
    }

    .why-choose-section h3 {
        font-size: 1.1rem !important;
    }

    .benefits-section {
        padding: 30px 20px !important;
    }

    .benefits-section h2 {
        font-size: 1.8rem !important;
    }

    .benefits-section h3 {
        font-size: 1.1rem !important;
    }

    .specifications-section {
        padding: 30px 20px !important;
    }

    .specifications-section h2 {
        font-size: 1.8rem !important;
    }

    .specifications-section h3 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .faq-accordion-container .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-accordion .faq-item .faq-question {
        padding: 0.8rem;
    }
    
    .faq-accordion .faq-item .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .process-section .process-header h2 {
        font-size: 1.8rem !important;
    }
    
    .process-step .step-content h3 {
        font-size: 1rem !important;
    }

    .precision-biminis-section {
        padding: 25px 15px !important;
    }

    .precision-biminis-section h2 {
        font-size: 1.6rem !important;
    }


    .why-choose-section {
        padding: 25px 15px !important;
    }

    .why-choose-section h2 {
        font-size: 1.6rem !important;
    }

    .why-choose-section h3 {
        font-size: 1rem !important;
    }

    .benefits-section {
        padding: 25px 15px !important;
    }

    .benefits-section h2 {
        font-size: 1.6rem !important;
    }

    .benefits-section h3 {
        font-size: 1rem !important;
    }

    .specifications-section {
        padding: 25px 15px !important;
    }

    .specifications-section h2 {
        font-size: 1.6rem !important;
    }

    .specifications-section h3 {
        font-size: 1rem !important;
    }
}