/* ========================================
SERVICES PAGE HERO
======================================== */

.services-hero {
    position: relative;
    padding: 160px 20px 140px 20px;
    background-image: url("/services/hero.png");
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

/* Purple overlay */
.services-overlay {
    position: absolute;
    inset: 0;
    background: rgba(155, 94, 182, 0.45);
}

/* Bottom white fade effect */
.services-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        #ffffff 100%
    );
}

/* Content container */
.services-hero-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
}

/* Badge */
.services-badge {
    display: inline-block;
    background: #6D3091;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #FFF100;
    margin-bottom: 20px;
}

/* Heading */
.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #410068;
    margin-bottom: 20px;
}

/* Paragraph */
.services-hero p {
    font-size: 22px;
    line-height: 1.6;
    color: #410068;
    margin-bottom: 35px;
}

/* Button */
.services-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #6D3091;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.services-btn:hover {
    background: #410068;
}


@media (max-width: 992px) {

    .services-hero {
        padding: 140px 20px 120px 20px;
    }

    .services-hero h1 {
        font-size: 38px;
    }

    .services-hero p {
        font-size: 18px;
    }
}


@media (max-width: 768px) {

    .services-hero {
        padding: 120px 15px 100px 15px;
    }

    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .services-btn {
        width: 100%;
        max-width: 280px;
    }

    .services-fade {
        height: 100px;
    }
}




/* ========================================
SERVICES LIST SECTION
======================================== */

.services-list-section {
    padding: 120px 20px;
    background: #f5f4f7;
}

.services-list-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: wrap;
}

.services-column {
    flex: 1;
    min-width: 320px;
}

.services-column h2 {
    font-size: 32px;
    font-weight: 700;
    color: #410068;
    margin-bottom: 25px;
}

.services-subtext {
    font-size: 16px;
    color: #641991;
    margin-bottom: 25px;
    max-width: 400px;
}

/* LIST */

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(65, 0, 104, 0.2);
}

/* CHECK ICON CONTAINER */

.check-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.check-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* TEXT */

.service-text {
    font-size: 18px;
    color: #410068;
}


@media (max-width: 992px) {

    .services-list-container {
        flex-direction: column;
        gap: 60px;
    }

    .services-column {
        text-align: center;
    }

    .services-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .services-list li {
        justify-content: flex-start;
        text-align: left;
    }
}


@media (max-width: 768px) {

    .services-list-section {
        padding: 80px 15px;
    }

    .services-column h2 {
        font-size: 24px;
    }

    .service-text {
        font-size: 16px;
    }

    .check-icon {
        width: 24px;
        height: 24px;
    }
}


/* ========================================
APPOINTMENT SECTION
======================================== */

.appointment-section {
    position: relative;
    padding: 140px 20px;
    background-image: url("/services/service-form.png");
    background-size: cover;
    background-position: center;
}

/* Soft purple overlay */
.appointment-overlay {
    position: absolute;
    inset: 0;

}

.appointment-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
}

.appointment-card {
    background: linear-gradient(135deg, #5a0b87, #7a39a6);
    border-radius: 35px;
    padding: 70px 60px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(65, 0, 104, 0.25);
}

/* Header */

.appointment-header {
    text-align: center;
    margin-bottom: 50px;
}

.appointment-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.appointment-header p {
    font-size: 15px;
    opacity: 0.9;
}

/* Form Grid */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
}

/* Form Group */

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.9;
}

/* Inputs */

.form-group input {
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 14px;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.7);
}
.custom-select {
    position: relative;
    width: 100%;
}

.select-selected {
    background: rgba(255,255,255,0.15);
    padding: 14px 16px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    position: relative;
}

/* Arrow */
.select-selected::after {
    content: "▾";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Dropdown panel */
.select-items {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #6D3091;
    border-radius: 10px;
    overflow: hidden;
    z-index: 99;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.select-items div {
    padding: 12px 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.select-items div:hover {
    background: #5a0b87;
}

.select-hide {
    display: none;
}


/* Submit */

.appointment-submit {
    text-align: center;
    margin-top: 40px;
}

.appointment-submit button {
    background: #fff;
    color: #6D3091;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.appointment-submit button:hover {
    background: #f3f3f3;
}

.appointment-submit small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.8;
}


@media (max-width: 992px) {

    .appointment-card {
        padding: 60px 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@media (max-width: 768px) {

    .appointment-section {
        padding: 80px 15px;
    }

    .appointment-card {
        padding: 40px 25px;
        border-radius: 25px;
    }

    .appointment-header h2 {
        font-size: 24px;
    }

    .appointment-header p {
        font-size: 14px;
    }

    .appointment-submit button {
        width: 100%;
    }
}





/* ========================================
FINAL CTA SECTION
======================================== */

.final-cta {
    background: linear-gradient(135deg, #5a0b87, #7a39a6);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.final-cta-container {
    max-width: 900px;
    margin: auto;
}

/* Heading */

.final-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Subtext */

.final-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Buttons */

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* WhatsApp Button */

.cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #25D366;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-whatsapp img {
    width: 24px;
}

.cta-whatsapp span {
    text-align: left;
}

.cta-whatsapp small {
    display: block;
    font-size: 11px;
    color: #555;
}

.cta-whatsapp strong {
    font-size: 14px;
}

/* Call Button */

.cta-call {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1B75BB;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-call img {
    width: 22px;
}

.cta-call span {
    text-align: left;
}

.cta-call small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

.cta-call strong {
    font-size: 14px;
}

/* Hover */

.cta-whatsapp:hover {
    transform: translateY(-3px);
}

.cta-call:hover {
    transform: translateY(-3px);
}



@media (max-width: 992px) {

    .final-cta {
        padding: 80px 20px;
    }

    .final-cta h2 {
        font-size: 26px;
    }
}


@media (max-width: 768px) {

    .final-cta {
        padding: 60px 15px;
    }

    .final-cta h2 {
        font-size: 22px;
    }

    .final-cta p {
        font-size: 14px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-whatsapp,
    .cta-call {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}


.small-gap{
    background: #fff;
    height: 50px;
    width: 100%;
}




/* =========================================
PREMIUM SCROLL ANIMATION SYSTEM
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Variants */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Soft Zoom */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* Button subtle float */
.cta-whatsapp,
.cta-call {
    transition: transform 0.3s ease;
}

.cta-whatsapp:hover,
.cta-call:hover {
    transform: translateY(-6px) scale(1.02);
}





.services-column h2 {
    position: relative;
    display: inline-block;
}

.services-column h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    background: #6D3091;
    transition: width 0.8s ease;
}

.services-column.active h2::after {
    width: 100%;
}