/* Services for Patients Page Styles */

/* Hero Section */
.hero-patient {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    overflow: hidden;
}

.hero-patient__overlay {
    position: relative;
    width: 100%;
    padding: 120px 20px 80px;
}

.hero-patient__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-patient__title {
    margin: 0 0 40px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.hero-patient__title-regular {
    font-style: normal;
}

.hero-patient__title-highlight {
    font-style: italic;
    color: #C80180;
}

.hero-patient__description {
    max-width: 900px;
    margin: 0 auto 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    text-align: center;
}

.hero-patient__cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-patient__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-patient__cta--primary {
    background: #C80180;
    color: #FFFFFF;
    border: 1px solid #C80180;
}

.hero-patient__cta--primary:hover {
    background: #A00167;
    border-color: #A00167;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.hero-patient__cta--primary svg path {
    fill: #FFFFFF;
}

.hero-patient__cta--secondary {
    background: #FFFFFF;
    color: #C80180;
    border: 1px solid #C80180;
}

.hero-patient__cta--secondary:hover {
    background: #C80180;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 1, 128, 0.3);
}

.hero-patient__cta--secondary:hover svg path {
    fill: #FFFFFF;
}

.hero-patient__cta svg {
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-patient__title {
        font-size: 48px;
    }
    
    .hero-patient__description {
        font-size: 20px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hero-patient {
        min-height: 50vh;
    }
    
    .hero-patient__overlay {
        padding: 80px 20px 60px;
    }
    
    .hero-patient__title {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .hero-patient__description {
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 36px;
        max-width: 100%;
    }
    
    .hero-patient__cta {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero-patient__cta svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-patient__overlay {
        padding: 80px 16px 50px;
    }
    
    .hero-patient__title {
        font-size: 28px;
        line-height: 120%;
    }
    
    .hero-patient__description {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 32px;
    }
    
    .hero-patient__cta-group {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-patient__cta {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
        gap: 8px;
    }
}

/* JellyMed Section */
.jellymed-section {
    position: relative;
    min-height: 80vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.jellymed-container {
    width: 100%;
    padding: 0;
}

.jellymed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 80vh;
}

/* Left Column - Logo */
.jellymed-logo-col {
    background: #FAFAF8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jellymed-logo {
    max-width: 40%;
    height: auto;
}

/* Right Column - Content */
.jellymed-content-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.jellymed-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.jellymed-text {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #000000;
}

.jellymed-text:last-of-type {
    margin-bottom: 0;
}

/* JellyMed Responsive Styles */
@media (max-width: 1024px) {
    .jellymed-section {
        padding: 0;
    }
    
    .jellymed-container {
        padding: 0;
    }
    
    .jellymed-grid {
        gap: 40px;
    }
    
    .jellymed-heading {
        font-size: 48px;
    }
    
    .jellymed-text {
        font-size: 16px;
    }
    
    .jellymed-logo-col {
        padding: 40px;
    }
    
    .jellymed-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .jellymed-section {
        padding: 0;
    }
    
    .jellymed-container {
        padding: 0;
    }
    
    .jellymed-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .jellymed-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .jellymed-text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .jellymed-text:last-of-type {
        margin-bottom: 0;
    }
    
    .jellymed-logo-col {
        padding: 40px 30px;
        order: 1;
    }
    
    .jellymed-content-col {
        order: 2;
    }
}

@media (max-width: 480px) {
    .jellymed-section {
        padding: 0;
    }
    
    .jellymed-container {
        padding: 0;
    }
    
    .jellymed-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .jellymed-logo {
        max-width: 60%;
    }
    
    .jellymed-text {
        font-size: 15px;
        line-height: 150%;
    }
    
    .jellymed-logo-col {
        padding: 30px 20px;
    }
}

/* RapidResponse Section */
.rapidresponse-section {
    position: relative;
    min-height: 80vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.rapidresponse-container {
    width: 100%;
    padding: 0;
}

.rapidresponse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 80vh;
}

/* Left Column - Content */
.rapidresponse-content-col {
    padding: 60px 60px 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.rapidresponse-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.rapidresponse-text {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #000000;
}

.rapidresponse-text:last-of-type {
    margin-bottom: 0;
}

/* Right Column - Logo */
.rapidresponse-logo-col {
    background: #FAFAF8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rapidresponse-logo {
    max-width: 40%;
    height: auto;
}

/* RapidResponse Responsive Styles */
@media (max-width: 1024px) {
    .rapidresponse-section {
        padding: 0;
    }
    
    .rapidresponse-container {
        padding: 0;
    }
    
    .rapidresponse-grid {
        gap: 40px;
    }
    
    .rapidresponse-heading {
        font-size: 48px;
    }
    
    .rapidresponse-text {
        font-size: 16px;
    }
    
    .rapidresponse-logo-col {
        padding: 40px;
    }
    
    .rapidresponse-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .rapidresponse-section {
        padding: 0;
    }
    
    .rapidresponse-container {
        padding: 0;
    }
    
    .rapidresponse-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rapidresponse-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .rapidresponse-text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .rapidresponse-text:last-of-type {
        margin-bottom: 0;
    }
    
    .rapidresponse-content-col {
        order: 2;
    }
    
    .rapidresponse-logo-col {
        padding: 40px 30px;
        order: 1;
    }
}

@media (max-width: 480px) {
    .rapidresponse-section {
        padding: 0;
    }
    
    .rapidresponse-container {
        padding: 0;
    }
    
    .rapidresponse-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .rapidresponse-logo {
        max-width: 60%;
    }
    
    .rapidresponse-text {
        font-size: 15px;
        line-height: 150%;
    }
    
    .rapidresponse-logo-col {
        padding: 30px 20px;
    }
}

/* MeltOff Section */
.meltoff-section {
    position: relative;
    min-height: 80vh;
    padding: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
}

.meltoff-container {
    width: 100%;
    padding: 0;
}

.meltoff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 80vh;
}

/* Right Column - Content */
.meltoff-content-col {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.meltoff-heading {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
}

.meltoff-text {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #000000;
}

.meltoff-text:last-of-type {
    margin-bottom: 0;
}

/* Right Column - Logo */
.meltoff-logo-col {
    background: #FAFAF8;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meltoff-logo {
    max-width: 40%;
    height: auto;
}

/* MeltOff Responsive Styles */
@media (max-width: 1024px) {
    .meltoff-section {
        padding: 0;
    }
    
    .meltoff-container {
        padding: 0;
    }
    
    .meltoff-grid {
        gap: 40px;
    }
    
    .meltoff-heading {
        font-size: 48px;
    }
    
    .meltoff-text {
        font-size: 16px;
    }
    
    .meltoff-logo-col {
        padding: 40px;
    }
    
    .meltoff-logo {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .meltoff-section {
        padding: 0;
    }
    
    .meltoff-container {
        padding: 0;
    }
    
    .meltoff-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .meltoff-heading {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .meltoff-text {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 20px;
    }
    
    .meltoff-text:last-of-type {
        margin-bottom: 0;
    }
    
    .meltoff-content-col {
        order: 2;
    }
    
    .meltoff-logo-col {
        padding: 40px 30px;
        order: 1;
    }
}

@media (max-width: 480px) {
    .meltoff-section {
        padding: 0;
    }
    
    .meltoff-container {
        padding: 0;
    }
    
    .meltoff-heading {
        font-size: 28px;
        line-height: 120%;
    }
    
    .meltoff-logo {
        max-width: 60%;
    }
    
    .meltoff-text {
        font-size: 15px;
        line-height: 150%;
    }
    
    .meltoff-logo-col {
        padding: 30px 20px;
    }
}

/* Patient Testimonials Section */
.patient-testimonials-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 80px 20px;
}

.patient-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.patient-testimonials-icon {
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
}

.patient-testimonials-title {
    margin: 0 0 32px;
    font-family: 'IvyPresto Headline', 'Playfair Display', serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
}

.patient-testimonials-title-regular {
    font-style: normal;
}

.patient-testimonials-title-italic {
    font-style: italic;
    color: #C80180;
}

.patient-testimonials-description {
    max-width: 900px;
    margin: 0 auto 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #101010;
    text-align: center;
}

.patient-testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.patient-testimonials-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.patient-testimonials-arrow:hover {
    transform: scale(1.05);
}

.patient-testimonials-arrow:active {
    transform: scale(0.95);
}

.patient-testimonials-arrow svg {
    display: block;
}

.patient-testimonials-content {
    flex: 0 0 800px;
    max-width: 800px;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.patient-testimonials-slides {
    position: relative;
    width: 100%;
}

.patient-testimonials-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.patient-testimonials-slide.active {
    display: block;
    opacity: 1;
}

.patient-testimonials-quote {
    margin: 0 0 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #101010;
}

.patient-testimonials-attribution {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
    color: #C80180;
}

/* Patient Testimonials Responsive Styles */
@media (max-width: 1024px) {
    .patient-testimonials-section {
        padding: 60px 20px;
    }
    
    .patient-testimonials-title {
        font-size: 48px;
    }
    
    .patient-testimonials-description {
        font-size: 16px;
        max-width: 700px;
    }
    
    .patient-testimonials-carousel {
        gap: 30px;
    }
    
    .patient-testimonials-quote {
        font-size: 16px;
        line-height: 28px;
    }
    
    .patient-testimonials-attribution {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 768px) {
    .patient-testimonials-section {
        min-height: auto;
        padding: 50px 20px;
    }
    
    .patient-testimonials-title {
        font-size: 36px;
        line-height: 110%;
        margin-bottom: 24px;
    }
    
    .patient-testimonials-description {
        font-size: 16px;
        line-height: 140%;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .patient-testimonials-carousel {
        gap: 20px;
        margin-top: 32px;
    }
    
    .patient-testimonials-arrow svg {
        width: 50px;
        height: 50px;
    }
    
    .patient-testimonials-quote {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    
    .patient-testimonials-attribution {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .patient-testimonials-section {
        padding: 40px 16px;
    }
    
    .patient-testimonials-icon {
        margin-bottom: 20px;
    }
    
    .patient-testimonials-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .patient-testimonials-title {
        font-size: 28px;
        line-height: 120%;
    }
    
    .patient-testimonials-description {
        font-size: 15px;
        line-height: 150%;
    }
    
    .patient-testimonials-carousel {
        gap: 16px;
        flex-direction: column;
    }
    
    .patient-testimonials-arrow {
        order: 2;
    }
    
    .patient-testimonials-arrow-left {
        transform: rotate(90deg);
    }
    
    .patient-testimonials-arrow-right {
        transform: rotate(90deg);
    }
    
    .patient-testimonials-content {
        order: 1;
    }
    
    .patient-testimonials-arrow svg {
        width: 40px;
        height: 40px;
    }
    
    .patient-testimonials-quote {
        font-size: 14px;
        line-height: 24px;
    }
    
    .patient-testimonials-attribution {
        font-size: 15px;
        line-height: 26px;
    }
}

/* IvyPresto Font Face Declarations */
@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/Regular\ IvyPresto.otf.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/italic\ Regular\ IvyPresto.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/Bold\ IvyPresto.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IvyPresto Headline';
    src: url('../../typography/italic\ bold\ IvyPresto.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}
