/* ============================================================
   SERVICES PREMIUM PAGE – SCORTANU BEAUTY & ACADEMY
   Palette: white (#fff), champagne (#f5ede0), beige (#e8d5b7),
            gold (#d4af37), dark (#2c2c2c), text-light (#666)
   ============================================================ */

/* ---- HERO ---- */
.sp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero_image.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20,15,10,0.78) 0%, rgba(44,44,44,0.55) 60%, rgba(212,175,55,0.18) 100%);
}

.sp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 24px;
    color: #fff;
}

.sp-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #fff;
}

.sp-hero-subtitle {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.sp-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-cta-book {
    padding: 15px 36px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.sp-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25d366;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.sp-cta-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.sp-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.sp-hero-scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.sp-hero-scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ---- SECTIONS ---- */
.sp-section {
    padding: 90px 20px;
}

.sp-section--light {
    background-color: #f9f7f4;
}

.sp-section--dark {
    background-color: #1e1a16;
    color: #fff;
}

.sp-section--champagne {
    background-color: #f5ede0;
}

.sp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-section-header--light .sp-section-title,
.sp-section-header--light .sp-section-subtitle {
    color: #fff;
}

.sp-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.sp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    color: #2c2c2c;
    margin-bottom: 16px;
    line-height: 1.2;
}

.sp-section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- CARDS GRID ---- */
.sp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.sp-cards-grid--2col {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

/* ---- SERVICE CARD ---- */
.sp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

.sp-card--dark {
    background: #2a2420;
    color: #f0ebe4;
}

.sp-card--dark .sp-card-title {
    color: #f0ebe4;
}

.sp-card--dark .sp-card-desc {
    color: rgba(240,235,228,0.75);
}

.sp-card--dark .sp-card-details li {
    color: rgba(240,235,228,0.75);
    border-bottom-color: rgba(255,255,255,0.08);
}

.sp-card--dark .sp-detail-label {
    color: var(--primary-color);
}

.sp-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-card:hover .sp-card-image img {
    transform: scale(1.05);
}

.sp-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-color);
    color: #2c2c2c;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.sp-badge-premium {
    background: #2c2c2c;
    color: var(--primary-color);
}

.sp-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sp-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sp-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.sp-card-details {
    list-style: none;
    margin-bottom: 20px;
}

.sp-card-details li {
    font-size: 13px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0ebe4;
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.sp-card-details li:last-child {
    border-bottom: none;
}

.sp-detail-label {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 110px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.sp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #f0ebe4;
    margin-top: auto;
}

.sp-price-block {
    display: flex;
    flex-direction: column;
}

.sp-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.sp-price-package {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.sp-book-btn {
    white-space: nowrap;
    padding: 10px 22px;
    font-size: 13px;
}

/* ---- INJECTABLE NOTE ---- */
.sp-injectable-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    margin-top: 36px;
    padding: 16px 20px;
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    background: rgba(212,175,55,0.06);
}

.sp-injectable-note svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ---- HIFU LAYOUT ---- */
.sp-hifu-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.sp-hifu-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    position: sticky;
    top: 90px;
}

.sp-hifu-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.sp-hifu-mechanism {
    margin-bottom: 28px;
}

.sp-hifu-mechanism h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.sp-hifu-mechanism p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

.sp-hifu-depths {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8d5b7;
}

.sp-depth-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #444;
}

.sp-depth-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

/* ---- PRICING TABLE ---- */
.sp-pricing-table {
    margin-top: 56px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.sp-pricing-table-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c2c2c;
    padding: 24px 28px 16px;
    border-bottom: 1px solid #f0ebe4;
}

.sp-pricing-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.sp-pricing-table th {
    background: #2c2c2c;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sp-pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f5f0ea;
    color: #444;
}

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

.sp-pricing-table tr:nth-child(even) td {
    background: #faf8f5;
}

.sp-pricing-table td:first-child {
    font-weight: 600;
    color: #2c2c2c;
}

/* ---- LASER GRID ---- */
.sp-laser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.sp-laser-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.3s;
}

.sp-laser-card:hover {
    border-color: var(--primary-color);
}

.sp-laser-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,175,55,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.sp-laser-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
}

.sp-laser-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.sp-laser-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: rgba(212,175,55,0.07);
    border-radius: 8px;
}

.sp-laser-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.sp-laser-price-row strong {
    color: var(--primary-color);
    font-size: 15px;
}

.sp-laser-sessions {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.sp-laser-sessions strong {
    color: var(--primary-color);
    font-style: normal;
}

.sp-laser-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    padding: 18px 22px;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    background: rgba(212,175,55,0.05);
    line-height: 1.6;
}

.sp-laser-note svg {
    flex-shrink: 0;
    color: #e8a020;
    margin-top: 1px;
}

/* ---- BODY CONTOURING ---- */
.sp-body-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.sp-body-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    border: 1px solid #ede5d8;
    transition: box-shadow 0.3s;
}

.sp-body-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.sp-body-card--featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fffdf8, #fdf6e8);
}

.sp-body-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.sp-body-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), #e8d5b7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    flex-shrink: 0;
}

.sp-body-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2c2c2c;
    line-height: 1.3;
}

.sp-body-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.sp-body-badge {
    font-size: 11px;
    font-weight: 700;
    background: var(--primary-color);
    color: #2c2c2c;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.sp-body-indications {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 36px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.sp-body-indications h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.sp-indications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.sp-indication-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.sp-indication-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.sp-body-pricing {
    background: #2c2c2c;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.sp-body-pricing-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-body-pricing-item {
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.sp-body-pricing-item .sp-detail-label {
    min-width: 100px;
}

/* ---- GALLERY ---- */
.sp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.sp-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    background: #fff;
    transition: transform 0.3s;
}

.sp-gallery-item:hover {
    transform: translateY(-4px);
}

.sp-gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sp-gallery-before,
.sp-gallery-after {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sp-gallery-before img,
.sp-gallery-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-gallery-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sp-gallery-label--after {
    background: var(--primary-color);
    color: #2c2c2c;
}

.sp-gallery-caption {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-align: center;
    border-top: 1px solid #f0ebe4;
}

/* ---- TESTIMONIALS ---- */
.sp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.sp-testimonial {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 32px 28px;
    transition: border-color 0.3s;
}

.sp-testimonial:hover {
    border-color: var(--primary-color);
}

.sp-testimonial-stars {
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.sp-testimonial-text {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.sp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sp-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.sp-testimonial-author strong {
    display: block;
    font-size: 14px;
    color: #fff;
}

.sp-testimonial-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ---- FAQ ---- */
.sp-faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-faq-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ede5d8;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sp-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}

.sp-faq-question:hover {
    color: var(--primary-color);
}

.sp-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.sp-faq-question[aria-expanded="true"] .sp-faq-icon {
    transform: rotate(180deg);
}

.sp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.sp-faq-answer.open {
    max-height: 400px;
    padding: 0 24px 22px;
}

.sp-faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

/* ---- LEGAL ---- */
.sp-legal {
    background: #2c2c2c;
    padding: 40px 20px;
}

.sp-legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    color: rgba(255,255,255,0.75);
}

.sp-legal-content svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 4px;
}

.sp-legal-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.sp-legal-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-legal-content ul li {
    font-size: 13px;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}

.sp-legal-content ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ---- FINAL CTA ---- */
.sp-final-cta {
    background: linear-gradient(135deg, #1e1a16 0%, #2c2c2c 100%);
    padding: 90px 20px;
    text-align: center;
    color: #fff;
}

.sp-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 44px);
    margin-bottom: 16px;
    color: #fff;
}

.sp-final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .sp-hifu-layout {
        grid-template-columns: 1fr;
    }
    .sp-hifu-image {
        position: static;
        height: 300px;
    }
    .sp-hifu-image img {
        height: 300px;
    }
    .sp-laser-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sp-hero {
        min-height: 100svh;
    }
    .sp-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .sp-cta-book,
    .sp-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }
    .sp-cards-grid,
    .sp-cards-grid--2col {
        grid-template-columns: 1fr;
    }
    .sp-gallery-pair {
        grid-template-columns: 1fr 1fr;
    }
    .sp-gallery-before,
    .sp-gallery-after {
        height: 150px;
    }
    .sp-body-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    .sp-pricing-table {
        overflow-x: auto;
    }
    .sp-pricing-table table {
        min-width: 560px;
    }
    .sp-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .sp-legal-content {
        flex-direction: column;
    }
}


/* ---- Before & After Labels on Service Cards ---- */
.sp-card-before-after {
    position: relative;
}

.sp-ba-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    bottom: 12px;
}

.sp-ba-before {
    left: 12px;
}

.sp-ba-after {
    right: 12px;
    background: #d4af37;
    color: #2c2c2c;
}
