/* Services Page Styles */

/* Hero Section */
.sv-hero {
    min-height: 60vh;
    padding: 150px 60px 60px;
    display: flex;
    flex-direction: column;
    background: #0c0c0c;
    max-width: 1000px;
    margin: 0 auto;
}

.sv-hero-content {
    text-align: left;
    margin-bottom: 40px;
}

.sv-hero-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.sv-hero-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 20px;
}

.sv-hero-subtext {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.sv-hero-image {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.sv-hero-image img {
    width: 100%;
    height: auto;
}

.sv-rotating-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    animation: sv-rotate 15s linear infinite;
}

.sv-rotating-badge svg {
    width: 100%;
    height: 100%;
}

.sv-rotating-badge text {
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

@keyframes sv-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Services List */
.sv-services {
    padding: 10px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Accordion */
.sv-accordion {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sv-accordion:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sv-accordion-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    cursor: pointer;
    align-items: start;
}

.sv-accordion-body {
    max-height: 200px;
    overflow: visible;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 40px 120px;
    /* text-align: center; */
}

.sv-accordion.active .sv-accordion-body {
    max-height: 200px;
    padding: 0 0 40px 120px;
}

.sv-service-num {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: rgba(255,255,255,0.4);
}

.sv-service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    color: #ec472d !important;
    margin: 0;
    line-height: 1;
}

.sv-service-desc {
    padding-top: 10px;
}

.sv-service-desc p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin: 0 0 15px;
}

.sv-includes {
    color: #ec472d !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* Statement Section */
.sv-statement {
    padding: 0px 3rem;
    max-width: 1000px;
    margin: 0;
}

.sv-statement-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.sv-statement p {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.sv-statement p.pf-purpose-text {
    font-size: clamp(32px, 2vw, 60px);
    color: #474747 !important;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

.sv-statement .header-button {
    margin: 30px 0;
}

.sv-statement-footer {
    font-size: 16px !important;
    color: rgba(255,255,255,0.6) !important;
    margin-top: 20px !important;
    font-family: 'Poppins', sans-serif;
}

.sv-cta-btn {
    display: inline-flex;
    align-items: center;
    margin: 40px 0;
    text-decoration: none;
}

.sv-cta-btn .button-icon {
    background: #fa821d;
    color: #0c0c0c;
}

.sv-cta-btn .button-text span {
    color: #fff;
}

.sv-highlight {
    color: #ec472d;
}

/* Footer */
.sv-footer {
    padding: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sv-footer .copyright {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .sv-hero {
        padding: 120px 20px 40px;
    }
    
    .sv-accordion-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sv-accordion-body {
        padding: 0 0 0 0;
    }
    
    .sv-accordion.active .sv-accordion-body {
        padding: 0 0 40px 0;
    }
    
    .sv-services {
        padding: 10px 20px;
    }
    
    .sv-statement {
        padding: 0px 20px;
    }
    
    .sv-footer {
        padding: 40px 20px;
    }
    
    .sv-rotating-badge {
        width: 80px;
        height: 80px;
        top: -20px;
        right: -10px;
    }
}
