/* ═══════════════════════════════════════════════════════════════
   VUVITA PLASTIK CERRAHI PAGE STYLES
   Premium Health & Wellness Brand
   Prefix: vp- (Vuvita Plastic)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   SECTION: EXPERTISE - CARD GRID
   ═══════════════════════════════════════════════════════════════ */

#vp-expertise {
    padding: 120px 0;
    background: var(--vuvita-cream, #f8f6f3);
    position: relative;
}

.vp-expertise__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vp-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.vp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.vp-section-label::before,
.vp-section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--vuvita-gold, #c9a962);
}

.vp-section-label span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vuvita-gold, #c9a962);
}

.vp-section-title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 52px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    line-height: 1.2;
    margin-bottom: 20px;
}

.vp-section-title span {
    color: var(--vuvita-gold, #c9a962);
}

.vp-section-desc {
    font-size: 16px;
    color: var(--vuvita-gray, #8a8a8a);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.vp-expertise__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vp-expertise__card {
    background: var(--vuvita-white, #fff);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.vp-expertise__card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--vuvita-gold, #c9a962), var(--vuvita-gold-light, #e0c98a));
    transform: scaleX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.vp-expertise__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.vp-expertise__card:hover::before {
    transform: scaleX(1);
}

.vp-expertise__image-wrapper {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.vp-expertise__image-inner {
    width: 100%;
    height: 100%;
}

.vp-expertise__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-expertise__card:hover .vp-expertise__image {
    transform: scale(1.1);
}

.vp-expertise__icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.05) 0%, rgba(201, 169, 98, 0.01) 100%);
}

.vp-expertise__icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-expertise__icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(201, 169, 98, 0.3);
    animation: vpRotate 20s linear infinite;
}

@keyframes vpRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.vp-expertise__card:hover .vp-expertise__icon {
    background: linear-gradient(135deg, var(--vuvita-gold, #c9a962) 0%, var(--vuvita-gold-dark, #a68b4b) 100%);
    transform: scale(1.1);
}

.vp-expertise__icon i {
    font-size: 36px;
    color: var(--vuvita-gold, #c9a962);
    transition: color 0.2s ease;
}

.vp-expertise__card:hover .vp-expertise__icon i {
    color: var(--vuvita-white, #fff);
}

.vp-expertise__content {
    padding: 32px;
}

.vp-expertise__name {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 12px;
}

.vp-expertise__desc {
    font-size: 14px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.7;
    margin-bottom: 24px;
}

.vp-expertise__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.vp-expertise__tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--vuvita-cream, #f8f6f3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    letter-spacing: 0.3px;
    transition: 0.3s;
}

.vp-expertise__card:hover .vp-expertise__tag {
    background: var(--vuvita-gold, #c9a962);
    color: var(--vuvita-white, #fff);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: TREATMENTS - MASONRY GALLERY
   ═══════════════════════════════════════════════════════════════ */

#vp-treatments {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--vuvita-charcoal, #1a1a1a) 0%, var(--vuvita-black, #0a0a0a) 100%);
    position: relative;
}

.vp-treatments__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vp-section-header--light .vp-section-title {
    color: var(--vuvita-white, #fff);
}

.vp-section-header--light .vp-section-desc {
    color: var(--vuvita-gray-light, #b5b5b5);
}

.vp-treatments__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 24px;
}

.vp-treatment {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.vp-treatment:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.vp-treatment:nth-child(4) {
    grid-column: span 2;
}

.vp-treatment__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-treatment:hover .vp-treatment__image {
    transform: scale(1.1);
}

.vp-treatment__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.95) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-treatment:hover .vp-treatment__overlay {
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.vp-treatment__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 1;
}

.vp-treatment__category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--vuvita-gold-light, #e0c98a);
    margin-bottom: 12px;
}

.vp-treatment__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--vuvita-white, #fff);
    margin-bottom: 8px;
}

.vp-treatment:nth-child(1) .vp-treatment__title {
    font-size: 36px;
}

.vp-treatment__desc {
    font-size: 13px;
    color: var(--vuvita-gray-light, #b5b5b5);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-treatment:hover .vp-treatment__desc {
    opacity: 1;
    transform: translateY(0);
}

.vp-treatment__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--vuvita-gold, #c9a962);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-treatment:hover .vp-treatment__link {
    opacity: 1;
    transform: translateY(0);
}

.vp-treatment__link i {
    transition: transform 0.2s ease;
}

.vp-treatment__link:hover i {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: PROCESS - HORIZONTAL TIMELINE
   ═══════════════════════════════════════════════════════════════ */

#vp-process {
    padding: 120px 0;
    background: var(--vuvita-white, #fff);
    position: relative;
    overflow: hidden;
}

.vp-process__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vp-process__timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.vp-process__timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--vuvita-gold, #c9a962), var(--vuvita-gold-light, #e0c98a), var(--vuvita-gold, #c9a962));
}

.vp-process__step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.vp-process__number {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--vuvita-gold, #c9a962) 0%, var(--vuvita-gold-dark, #a68b4b) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-process__step:hover .vp-process__number {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(201, 169, 98, 0.4);
}

.vp-process__number span {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--vuvita-white, #fff);
}

.vp-process__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 16px;
}

.vp-process__desc {
    font-size: 14px;
    color: var(--vuvita-gray, #8a8a8a);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

.vp-process__icon {
    position: absolute;
    top: 35px;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--vuvita-cream, #f8f6f3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
}

.vp-process__step:last-child .vp-process__icon {
    display: none;
}

.vp-process__icon i {
    color: var(--vuvita-gold, #c9a962);
    font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: DOCTORS - CARD GRID
   ═══════════════════════════════════════════════════════════════ */

#vp-doctors {
    padding: 120px 0;
    background: var(--vuvita-cream, #f8f6f3);
}

.vp-doctors__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vp-doctors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.vp-doctor {
    background: var(--vuvita-white, #fff);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.vp-doctor:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.vp-doctor__image {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.vp-doctor__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vp-doctor:hover .vp-doctor__image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.vp-doctor__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--vuvita-gold, #c9a962);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.4);
}

.vp-doctor__badge i {
    color: var(--vuvita-white, #fff);
    font-size: 18px;
}

.vp-doctor__content {
    padding: 28px;
    text-align: center;
}

.vp-doctor__name {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--vuvita-charcoal, #1a1a1a);
    margin-bottom: 8px;
}

.vp-doctor__specialty {
    font-size: 13px;
    color: var(--vuvita-gold, #c9a962);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vp-doctor__experience {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vp-doctor__stat {
    text-align: center;
}

.vp-doctor__stat-value {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--vuvita-charcoal, #1a1a1a);
}

.vp-doctor__stat-label {
    font-size: 11px;
    color: var(--vuvita-gray, #8a8a8a);
    letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION: CTA - FULL WIDTH GRADIENT
   ═══════════════════════════════════════════════════════════════ */

#vp-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vuvita-charcoal, #1a1a1a) 0%, var(--vuvita-black, #0a0a0a) 50%, var(--vuvita-charcoal, #1a1a1a) 100%);
    position: relative;
    overflow: hidden;
}

.vp-cta__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vp-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vp-cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--vuvita-gold, #c9a962) 0%, var(--vuvita-gold-dark, #a68b4b) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vpPulse 2s infinite;
}

@keyframes vpPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(201, 169, 98, 0);
    }
}

.vp-cta__icon i {
    font-size: 32px;
    color: var(--vuvita-white, #fff);
}

.vp-cta__title {
    font-family: var(--vuvita-font-display, 'Cormorant Garamond', serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--vuvita-white, #fff);
    margin-bottom: 20px;
    line-height: 1.2;
}

.vp-cta__title span {
    color: var(--vuvita-gold, #c9a962);
}

.vp-cta__desc {
    font-size: 17px;
    color: var(--vuvita-gray-light, #b5b5b5);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.vp-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.vp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.vp-btn--primary {
    background: linear-gradient(135deg, var(--vuvita-gold, #c9a962) 0%, var(--vuvita-gold-dark, #a68b4b) 100%);
    color: var(--vuvita-black, #0a0a0a);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.3);
}

.vp-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.4);
}

.vp-cta__whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--vuvita-white, #fff);
}

.vp-cta__whatsapp:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .vp-expertise__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-treatments__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .vp-treatment:nth-child(1) {
        grid-column: span 2;
        height: 400px;
    }

    .vp-treatment:nth-child(4) {
        grid-column: span 1;
    }

    .vp-doctors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .vp-section-title {
        font-size: 42px;
    }

    .vp-process__timeline {
        flex-direction: column;
        gap: 60px;
    }

    .vp-process__timeline::before {
        display: none;
    }

    .vp-process__step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 32px;
    }

    .vp-process__number {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .vp-process__number span {
        font-size: 32px;
    }

    .vp-process__icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .vp-section-title {
        font-size: 38px;
    }

    .vp-expertise__grid,
    .vp-treatments__grid,
    .vp-doctors__grid {
        grid-template-columns: 1fr;
    }

    .vp-treatment:nth-child(1) {
        grid-column: span 1;
        height: 350px;
    }

    .vp-expertise__container,
    .vp-treatments__container,
    .vp-process__container,
    .vp-doctors__container,
    .vp-cta__container {
        padding: 0 30px;
    }

    .vp-cta__title {
        font-size: 36px;
    }

    .vp-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .vp-btn {
        width: 100%;
        justify-content: center;
    }
}