/* ===========================================
   CLARIO COMPONENTS CSS
   =========================================== */

/* ===========================================
   SWIPER BASE STYLES
   =========================================== */

.clario-swiper {
    position: relative;
    overflow: visible;
    padding-bottom: 50px;
    margin-right: -1rem;
}

/* Desktop: contained carousels */
@media (min-width: 992px) {
    .clario-swiper {
        overflow: hidden;
        margin-right: 0;
    }
}

/* Section clips horizontal overflow (mobile only) */
section {
    overflow-x: clip;
}

.clario-swiper .swiper-button-next,
.clario-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #1c1e21;
    top: auto;
    bottom: 8px;
}

.clario-swiper .swiper-button-prev { 
    left: auto; 
    right: 56px; 
}

.clario-swiper .swiper-button-next { 
    right: 10px; 
}

.clario-swiper .swiper-button-next:after,
.clario-swiper .swiper-button-prev:after { 
    font-size: 16px; 
    font-weight: bold; 
}

.clario-swiper .swiper-button-disabled { 
    opacity: 0.35; 
    pointer-events: none; 
}

.clario-swiper .swiper-wrapper { 
    align-items: stretch; 
}

.clario-swiper .swiper-slide { 
    height: auto; 
}

.clario-swiper .swiper-slide > .card,
.clario-swiper .swiper-slide > a.card { 
    height: 100%; 
}

/* ===========================================
   HERO SECTION
   =========================================== */

.hero-section {
    padding-top: 104px;
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 122px;
    }
}

/* ===========================================
   SERVICES CAROUSEL
   =========================================== */

.services-swiper .swiper-slide { 
    width: 250px; 
    height: 450px; 
}

/* ===========================================
   SLOTS CAROUSEL
   =========================================== */

.slots-swiper .swiper-slide { 
    width: 240px; 
}

/* Slot card - FIXED LAYOUT */
.slot-card {
    box-shadow: none;
    height: 350px;
    display: grid;
    grid-template-rows: 160px 1fr;
    background: #f9fafb;
    border: none;
    border-radius: 0.75rem;
    overflow: hidden;
}

.slot-card .photo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.slot-card .photo-area img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f3f4f6;
}

.slot-card .info-area {
    display: grid;
    grid-template-rows: auto 52px auto;
    padding: 0 0.75rem 1rem;
    text-align: center;
    align-content: start;
    gap: 0.25rem;
}

.slot-card .doctor-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-card .service-name {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 300;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    align-self: start;
}

.slot-card .slots-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

.slot-card .date-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.slot-card .date-badge.today { background: #16a34a; }
.slot-card .date-badge.tomorrow { background: #16a34a; }
.slot-card .date-badge.future { background: var(--clario-blue); }
.slot-card .date-badge.no-slots { background: #e5e7eb; color: #374151; }

.slot-card .time-btn {
    display: inline-block;
    background: white;
    color: var(--clario-blue);
    border: 1px solid var(--clario-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0.25rem 0.25rem 0;
    text-decoration: none;
    transition: background 0.2s;
}

.slot-card .time-btn:hover {
    background: #eff6ff;
}

.slots-container {
    min-height: 400px;
}

/* ===========================================
   VIDEOS CAROUSEL
   =========================================== */

.videos-swiper .swiper-slide { 
    width: 280px; 
}

.videos-swiper .swiper-slide .card { 
    height: 100%; 
    min-height: 340px; 
    display: flex; 
    flex-direction: column; 
}

.videos-swiper .swiper-slide .card-body { 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.videos-swiper .swiper-slide .card-body p:last-child { 
    margin-top: auto; 
}

@media (min-width: 1200px) { 
    .videos-swiper .swiper-slide { 
        width: 480px; 
    }
    .videos-swiper .swiper-slide .card { 
        min-height: 420px; 
    }
}

/* Video card play button */
.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* ===========================================
   ACCORDION STYLES
   =========================================== */

.accordion-item {
    background: white;
    border: none;
    border-bottom: 1px solid #e5e7eb;
}

.accordion-item:first-child { 
    border-top: none; 
}

.accordion-item:last-child { 
    border-bottom: none; 
}

.accordion-button { 
    background: white; 
    box-shadow: none; 
}

.accordion-button:not(.collapsed) { 
    background: white; 
    color: inherit; 
    box-shadow: none; 
}

.accordion-button:focus { 
    box-shadow: none; 
    border-color: transparent; 
}

/* ===========================================
   FAQ SECTION
   =========================================== */

.faq-accordion .accordion-item {
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e5e7eb;
}

.faq-accordion .accordion-button {
    border-radius: 0.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* ===========================================
   CLARA ACCORDION
   =========================================== */

.clara-accordion {
    border-top: none;
    min-height: 420px;
}

.clara-item {
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.3s ease;
}

.clara-item.active {
    grid-template-rows: auto 1fr;
}

.clara-trigger {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.clara-trigger-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    padding-right: 1rem;
}

.clara-icon {
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.clara-item.active .clara-icon {
    transform: rotate(180deg);
}

.clara-content {
    overflow: hidden;
    min-height: 0;
}

.clara-content p {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #374151;
    padding-bottom: 1.25rem;
    margin: 0;
}

/* Clara Images */
.clara-images {
    max-height: 550px;
    position: relative;
    
}

.clara-image {
    max-height: 550px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clara-image:first-child {
    position: relative;
}

.clara-image.active {
    opacity: 1;
}

.clara-item:last-child {
    border-bottom: none;
}

/* ===========================================
   FAQ ACCORDION (same style as Clara)
   =========================================== */

.faq-accordion {
    border-top: none;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active {
    grid-template-rows: auto 1fr;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-trigger {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-trigger-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    padding-right: 1rem;
}

.faq-icon {
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    overflow: hidden;
    min-height: 0;
}

.faq-content p {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #374151;
    padding-bottom: 1.25rem;
    margin: 0;
}

.faq-content a {
    color: var(--clario-orange);
    text-decoration: none;
}

.faq-content a:hover {
    text-decoration: underline;
}

/* ===========================================
   TEXT PADDING (all screens)
   Adds padding to text elements without affecting carousels
   =========================================== */

/* Titles and subtitles */
.section-title,
.section-subtitle {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Title wrapper blocks */
.container > .text-start {
    padding-left: 1rem;
    padding-right: 1rem;
}
.container > .text-start .section-title,
.container > .text-start .section-subtitle {
.container > .text-center .section-title,
.container > .text-center .section-subtitle {
    padding-left: 0;
    padding-right: 0;
}
    padding-left: 0;
.container > .text-center .section-title,
.container > .text-center .section-subtitle {
    padding-left: 0;
    padding-right: 0;
}
    padding-right: 0;
.container > .text-center .section-title,
.container > .text-center .section-subtitle {
    padding-left: 0;
    padding-right: 0;
}
}
.container > .text-center .section-title,
.container > .text-center .section-subtitle {
    padding-left: 0;
    padding-right: 0;
}


/* FAQ section */
.faq-accordion {
    padding-left: 1rem;
    padding-right: 1rem;
}
.container > .section-title {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Timeline section */
.container > .row.g-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* CTA buttons */
.container > .text-center {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero video containers */
.hero-section .d-block,
.hero-section .d-none {
    /* margin-left: 1rem; - removed, now in white card */
    /* margin-right: 1rem; - removed, now in white card */
}

/* ===========================================
   TIMELINE ACCORDION STYLE
   =========================================== */

.timeline-accordion {
    border-top: none;
}

.timeline-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: var(--clario-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.timeline-content {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #374151;
    margin: 0;
    padding-left: 56px;
}

@media (max-width: 767.98px) {
    .timeline-accordion {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .timeline-content {
        padding-left: 0;
    }
}

/* ===========================================
   TIMELINE BOX TEXT STYLES (same as accordion)
   =========================================== */

.timeline-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.timeline-box-text {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #374151;
    margin: 0;
}

/* Procedures Mobile Image */
.procedures-image-mobile img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: top center;
}

/* Procedures Desktop Image (same as Clara) */
#procedures .sticky-top img {
    max-height: 550px;
    object-fit: cover;
    object-position: top center;
}

/* Procedures accordion link styling */
#procedures .clara-content .btn-link-arrow {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Clara Mobile Images */
.clara-images-mobile {
    position: relative;
}

.clara-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clara-image-mobile:first-child {
    position: relative;
}

.clara-image-mobile.active {
    opacity: 1;
}

/* Clara card - no extra padding on title (card already has p-4/p-lg-5) */
.bg-white.rounded-4 .section-title,
.bg-white.rounded-4 .section-subtitle {
    padding-left: 0;
    padding-right: 0;
}

/* ===========================================
   TIMELINE STEPS - Modern style
   =========================================== */

.timeline-steps {
    position: relative;
}

.timeline-step {
    position: relative;
    height: 100%;
}


/* Label - discrete step text */
.timeline-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--clario-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* ===========================================
   VISUAL HIERARCHY - Reduce text fatigue
   =========================================== */

/* Section titles - softer than pure black */
.section-title {
    color: #374151;
}

/* Card body text - lighter weight */
.timeline-box-text,
.clara-content p,
.faq-content p,
.card-body p {
    font-weight: 300;
}

/* Subtitles - slightly lighter */
.section-subtitle {
    color: #6b7280;
}

/* ===========================================
   HERO BOX LASER - Service pages
   =========================================== */

.hero-box-laser {
    aspect-ratio: 16/9;
    position: relative;
}

.hero-box-laser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile: taller hero, crop differently */
@media (max-width: 767.98px) {
    .hero-box-laser {
        aspect-ratio: unset;
        height: 60vh;
    }

    .hero-box-laser img {
        width: 150%;
        object-position: 60% center;
    }
}

/* Gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Text overlay */
.hero-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    z-index: 20;
    padding: 2rem;
}

@media (min-width: 1200px) {
    .hero-text-overlay {
        padding: 3rem 4rem 5rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.25;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Tablet portrait: 768px - 991px */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Tablet landscape / small desktop: 992px - 1199px */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }
}

/* Desktop: 1200px+ */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}
}

/* ===========================================
   BADGE LABEL
   =========================================== */

.badge-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ===========================================
   LINK ARROW BUTTON
   =========================================== */

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--clario-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-link-arrow:hover {
    color: var(--clario-orange);
    text-decoration: underline;
}

/* ===========================================
   VIDEO MODAL
   =========================================== */

.video-modal {
    z-index: 999999 !important;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 95vw;
    max-width: 95vw;
    aspect-ratio: 16/9;
    background: #000;
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
    transform: scale(1.1);
}

/* ===========================================
/* ===========================================
   VIDEO CONTAINER & PLAY BUTTON
   =========================================== */

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

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

.video-container:hover img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-container:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.cursor-pointer {
    cursor: pointer;
}

/* ===========================================
   GRADIENT BACKGROUNDS
   =========================================== */

.bg-clario-gradient-light {
    background: linear-gradient(135deg, #eff6ff 0%, #fff7ed 100%);
}

/* ===========================================
   PRICING SECTION
   =========================================== */

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-item {
    transition: box-shadow 0.2s ease;
}

.pricing-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===========================================
   ALERT INFO OVERRIDE
   =========================================== */

.alert-info {
    background-color: #eff6ff;
    border-color: #dbeafe;
    color: #374151;
}

/* ===========================================
   VIDEO SECTION - Laser page
   =========================================== */

#video .video-box {
    aspect-ratio: 16/9;
    overflow: hidden;
}

#video .video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile: square video, cropped from left */
@media (max-width: 767.98px) {
    #video .video-box {
        aspect-ratio: 16/9;
    }

    #video .video-box video {
        width: auto;
        height: 100%;
        object-position: 20% center;
    }
}

/* ===========================================
   RECOMMENDATION BOX - Orange 50 background
   =========================================== */

.recommendation-box {
    background-color: #fff7ed;
    border: 1px solid #fed7aa;
    color: #374151;
}

/* FAQ content text - reusable outside accordion */
.faq-content-text {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #374151;
    font-weight: 300;
}

/* ===========================================
   DOCTOR PROFILE PAGE
   =========================================== */

/* Timeline year badge container */
.timeline-year-badge {
    min-width: 120px;
}

@media (max-width: 767.98px) {
    .timeline-year-badge {
        min-width: auto;
        margin-bottom: 0.5rem;
    }
    
    .timeline-professional .d-flex {
        flex-direction: column;
    }
}

/* Doctor profile image */
.doctor-profile-img {
    max-width: 350px;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

/* Specialization cards hover effect */
#specializations .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#specializations .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Affiliation cards */
#affiliations .card {
    transition: transform 0.2s ease;
}

#affiliations .card:hover {
    transform: translateY(-4px);
}

/* Timeline number icon container */
.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================================
   PARALLAX HERO EFFECT
   =========================================== */

.hero-parallax {
    overflow: hidden;
}

.hero-parallax img {
    will-change: transform;
    transform: translateY(0);
    transition: none;
}

/* Mobile: dezactivat parallax pentru performance */
@media (max-width: 767.98px) {
    .hero-parallax img {
        transform: none;
    }
}

/* ===========================================
   SERVICE BOXES (Homepage)
   =========================================== */

.service-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-box:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Link arrow button */
.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clario-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.2s ease, gap 0.2s ease;
}

.btn-link-arrow:hover {
    color: var(--clario-orange);
    gap: 0.75rem;
}

.btn-link-arrow svg {
    transition: transform 0.2s ease;
}

.btn-link-arrow:hover svg {
    transform: translateX(4px);
}

/* ===========================================
   TEAM PAGE STYLES
   =========================================== */

.team-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card:hover .team-photo {
    box-shadow: 0 8px 30px rgba(0, 114, 206, 0.2);
}

.team-photo {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
}

.team-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.875rem;
    color: var(--clario-orange);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.team-badge-wrapper {
    min-height: 28px;
    margin-top: auto;
    padding-top: 0.25rem;
}

.row-doctors {
    --bs-gutter-y: 4rem;
}

.team-specialty {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Staff Cards (smaller) */
.staff-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-4px);
}

.staff-photo {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    max-width: 200px;
    transition: box-shadow 0.3s ease;
    border-radius: 50%;
}

.staff-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.125rem;
}

.staff-role {
    font-size: 0.875rem;
    color: #6c757d;
}

a.staff-card:hover .staff-photo {
    box-shadow: 0 8px 30px rgba(0, 114, 206, 0.2);
}

.badge-tenure {
    display: inline-block;
    background: linear-gradient(135deg, var(--clario-orange) 0%, #e67e22 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    margin-top: 0.25rem;
}

/* ===========================================
   DOCTOR PROFILE STYLES
   =========================================== */

.doctor-photo {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    max-width: 280px;
    border-radius: 50%;
}

.quote-box {
    padding: 0;
    position: relative;
    padding-left: 4rem;
}

.quote-box::before {
    content: '❝';
    font-size: 5rem;
    color: var(--clario-orange);
    opacity: 0.4;
    position: absolute;
    top: -0.5rem;
    left: 0;
    line-height: 1;
}

.quote-text {
    font-size: 1.125rem;
    font-style: italic;
}

/* Accordion for doctor pages */
.accordion-clario .accordion-button {
    font-weight: 600;
    background: transparent;
}

.accordion-clario .accordion-button:not(.collapsed) {
    color: var(--clario-blue);
    background: white;
}

.accordion-clario .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 114, 206, 0.2);
}

/* Styled lists */
.list-styled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.list-styled li:last-child {
    border-bottom: none;
}

.list-styled .year {
    font-weight: 600;
    color: var(--clario-blue);
    min-width: 80px;
    display: inline-block;
}

/* Truncatable lists */
.list-styled.truncated li:nth-child(n+6) {
    display: none;
}

.list-styled.truncated.expanded li {
    display: block;
}

.show-all-btn {
    background: none;
    border: none;
    padding: 0.5rem 0;
    color: var(--clario-blue);
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.show-all-btn:hover {
    text-decoration: underline;
}

.show-all-btn svg {
    transition: transform 0.2s;
}

.show-all-btn.expanded svg {
    transform: rotate(180deg);
}

/* ===========================================
   REVIEWS LIST STYLES (Doctor pages)
   =========================================== */

.reviews-header {
    color: inherit;
}

.reviews-header:hover {
    opacity: 0.85;
}

.review-stars-header {
    color: #fbbf24;
    font-size: 1.25rem;
}

.reviews-list .review-item {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.reviews-list .review-item.hidden {
    display: none;
}

.reviews-list .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews-list .review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.reviews-list .review-text {
    font-size: 1rem;
    line-height: 1.6;
    overflow: auto;
}

.reviews-list .review-date {
    font-size: 0.875rem;
}

.reviews-list .review-author-link:hover {
    color: var(--clario-blue);
}

.reviews-list .google-icon {
    width: 18px;
    height: 18px;
}

.reviews-list .review-image-link {
    float: left;
}

.reviews-list .review-image {
    width: 120px;
    height: 120px;
    border-radius: 0.5rem;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s;
    margin: 0 0.75rem 0.5rem 0;
}

.reviews-list .review-image:hover {
    transform: scale(1.02);
}

.reviews-list .read-more-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--clario-blue);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.reviews-list .read-more-btn:hover {
    text-decoration: underline;
}

.reviews-list .read-more-btn svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 2px;
    transition: transform 0.2s;
}

.reviews-list .read-more-btn.expanded svg {
    transform: rotate(180deg);
}

/* ===========================================
   IMAGE MODAL (Reviews)
   =========================================== */

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.image-modal img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 114, 206, 0.15);
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--clario-orange);
    color: white;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

/* ===========================================
   DESPRE/ABOUT PAGE STYLES
   =========================================== */

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--clario-orange);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    background: var(--clario-orange);
    border-radius: 50%;
    transform: translateX(-50%);
    margin-left: 1px;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clario-orange);
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: #6c757d;
}

.founder-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

/* ===========================================
   PRICING PAGE STYLES
   =========================================== */

.pricing-card {
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.pricing-card-header:hover {
    background: #f9fafb;
}

.pricing-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
}

.pricing-card-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    transition: transform 0.3s ease, background 0.2s ease;
}

.pricing-card.active .pricing-card-toggle {
    transform: rotate(180deg);
}

.pricing-card-header:hover .pricing-card-toggle {
    background: #e5e7eb;
}

.pricing-card-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.pricing-card.active .pricing-card-body {
    display: block;
}

.pricing-table {
    width: 100%;
}

.pricing-table tr {
    border-bottom: 1px solid #f3f4f6;
}

.pricing-table tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 0.75rem 0;
    vertical-align: top;
}

.pricing-table .service-name {
    color: #374151;
    font-weight: 400;
}

.pricing-table .price {
    text-align: right;
    font-weight: 600;
    color: var(--clario-blue);
    white-space: nowrap;
}

.pricing-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

/* ===========================================
   HERO PAGE-SPECIFIC POSITIONING
   =========================================== */

/* Cataract hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-cataracta img {
        object-position: center center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-cataracta {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-cataracta img {
        object-position: center center;
    }
}

/* Smile Pro hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-smile-pro img {
        object-position: 100% center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-smile-pro {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-smile-pro img {
        object-position: 75% center;
    }
}

/* LASIK hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-lasik img {
        object-position: center center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-lasik {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-lasik img {
        object-position: center center;
    }
}

/* PRK hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-prk img {
        object-position: center center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-prk {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-prk img {
        object-position: center center;
    }
}

/* Presbyond hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-presbyond img {
        object-position: 100% center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-presbyond {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-presbyond img {
        object-position: 75% center;
    }
}

/* Oculoplastica hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-oculoplastica img {
        object-position: center 30%;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-oculoplastica {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-oculoplastica img {
        object-position: center 30%;
    }
}

/* VisionSPA hero */
@media (max-width: 767.98px) {
    .hero-box-visionspa {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-visionspa img {
        object-position: center center;
    }
}

/* Optica hero */
@media (max-width: 767.98px) {
    .hero-box-laser.hero-optica {
        aspect-ratio: 1/1;
        height: auto;
    }
}
/* Oftalmologie Adulti hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-adulti img {
        object-position: center center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-adulti {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-adulti img {
        object-position: center center;
    }
}

/* Oftalmologie Copii hero */
@media (min-width: 768px) {
    .hero-box-laser.hero-copii img {
        object-position: center center;
    }
}

@media (max-width: 767.98px) {
    .hero-box-laser.hero-copii {
        aspect-ratio: 1/1;
        height: auto;
    }
    .hero-box-laser.hero-copii img {
        object-position: center center;
    }
}


/* Pricing table - additional styles */
.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--clario-blue);
    white-space: nowrap;
    padding-left: 1rem;
}

.pricing-table .service-detail {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.pricing-table a {
    color: inherit;
    text-decoration: none;
}

.pricing-table a:hover {
    color: var(--clario-orange);
}

/* ===========================================
   BODY TEXT - Consistent paragraph styling
   Same as accordion content
   =========================================== */
.body-text {
    font-size: 1.125rem;
    line-height: 1.4;
    color: #374151;
    font-weight: 300;
}

/* Recommendation box link - inherit text style */
.recommendation-box .btn-link-arrow {
    font-weight: 300;
    font-size: inherit;
}

/* ===========================================
   QUIZ MODAL - 80% viewport
   =========================================== */
.quiz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quiz-modal.active {
    display: flex;
}

.quiz-modal-content {
    position: relative;
    width: 80vw;
    height: 80vh;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
}

.quiz-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.quiz-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.quiz-modal-body {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 767.98px) {
    .quiz-modal-content {
        width: 95vw;
        height: 85vh;
    }
    
    .quiz-modal-close {
        top: -45px;
    }
}

/* ===========================================


/* ===========================================
   BLOG MINIMAL CSS
   =========================================== */

/* Reading Progress Bar */
.reading-progress {
    /* Sub navbar dropdown z-index (1000) */
    position: fixed;
    top: 88px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--clario-orange), var(--clario-blue));
    z-index: 900;
    transition: width 0.1s ease-out;
}

@media (max-width: 991.98px) {
    .reading-progress {
    /* Sub navbar dropdown z-index (1000) */
        top: 70px;
    }
}

/* Reading Time */
.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #6c757d;
}

.reading-time svg {
    opacity: 0.7;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.875rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
}

.breadcrumb-item a {
    color: var(--clario-blue);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.breadcrumb-separator {
    color: #adb5bd;
    margin: 0 0.25rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.share-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.share-icons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #0d65d9;
    color: white;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background: #1da851;
    color: white;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background: #005885;
    color: white;
}

.share-copy {
    background: #f3f4f6;
    color: #374151;
    position: relative;
}

.share-copy:hover {
    background: #e5e7eb;
}

.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.copy-tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Sticky */
.sidebar-sticky {
    position: sticky;
    top: 120px;
}

@media (max-width: 991.98px) {
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
}

/* TOC Link Active */
.toc-link.active {
    color: var(--clario-blue);
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--clario-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--clario-orange);
    box-shadow: 0 4px 12px rgba(255, 105, 0, 0.3);
}

@media (max-width: 991.98px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* Related Articles (Bottom Section) */
.related-card {
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.related-card-img {
    height: 180px;
    overflow: hidden;
}

.related-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clario-orange);
    margin-bottom: 0.5rem;
}

.related-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--clario-blue);
}

.related-card:hover .related-card-link {
    color: var(--clario-orange);
}

/* Share Instagram */
.share-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.share-instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #a01472 100%);
    color: white;
}

/* Instagram tooltip */
.instagram-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.instagram-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.share-instagram {
    position: relative;
}


.badge-welcome {
    display: inline-block;
    background: linear-gradient(135deg, #0072ce 0%, #0088e0 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    margin-top: 0.25rem;
}

/* ===========================================
   SERVICII SECTION - No side padding on cards
   =========================================== */
#servicii .row.g-4 {
    padding-left: 0;
    padding-right: 0;
}


/* ===========================================
   WAITLIST MODAL
   =========================================== */

.waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 1rem;
    padding-top: env(safe-area-inset-top, 1rem);
    padding-bottom: env(safe-area-inset-bottom, 1rem);
}

.waitlist-modal.active {
    display: flex;
}

.waitlist-modal-content {
    background: #fff;
    border-radius: 1rem;
    width: 100%;
    max-width: 480px;
    max-height: calc(100vh - 2rem);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    padding: 1.5rem;
    position: relative;
}


.waitlist-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: #6b7280;
    transition: color 0.2s;
}

.waitlist-modal-close:hover {
    color: #1f2937;
}

.waitlist-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.waitlist-subtitle {
    font-size: 0.95rem;
}

/* Radio Group */
.waitlist-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.waitlist-radio {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.waitlist-radio:hover {
    border-color: #f97316;
}

.waitlist-radio input {
    accent-color: #f97316;
}

.waitlist-radio input:checked + span {
    color: #f97316;
    font-weight: 500;
}

/* Checkbox Group */
.waitlist-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.waitlist-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.waitlist-checkbox input {
    accent-color: #f97316;
    width: 1rem;
    height: 1rem;
}

.waitlist-checkbox a {
    color: #f97316;
}

/* Success View */
.waitlist-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.waitlist-success-icon svg {
    color: white;
}

.waitlist-success-details {
    font-size: 0.95rem;
}

/* Form overrides */
.waitlist-modal .form-control,
.waitlist-modal .form-select {
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
}

.waitlist-modal .form-control:focus,
.waitlist-modal .form-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .waitlist-modal {
        padding: 0.5rem;
    }

    .waitlist-modal-content {
        padding: 1rem;
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
        border-radius: 0.75rem;
    }

    .waitlist-title {
        font-size: 1.25rem;
    }
}
