/* ==========================================================================
   Skindecor Luxury Service Pages Design System & Central Theme
   ========================================================================== */

:root {
    --sd-brand-burgundy: #800020;
    --sd-burgundy-dark: #4a101d;
    --sd-burgundy-deep: #2b0b12;
    --sd-gold-accent: #d4af37;
    --sd-gold-hover: #b89628;
    --sd-rose-light: #fce4ec;
    --sd-bg-cream: #fcf9f9;
    --sd-text-main: #2b2b2b;
    --sd-text-muted: #555555;
    --sd-shadow-luxury: 0 15px 45px rgba(128, 0, 32, 0.08);
}

/* Service Hero Section */
.sd-srv-hero, .acn-hero-sec {
    background: linear-gradient(135deg, #2b0b12 0%, #4a101d 50%, #800020 100%);
    padding: 140px 0 50px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.sd-srv-hero::before, .acn-hero-sec::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.sd-srv-hero-title, .acn-hero-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.sd-srv-hero-subtitle, .acn-hero-subtitle {
    font-size: 16px;
    color: #fce4ec;
    margin-bottom: 18px;
    font-weight: 300;
}
.sd-srv-breadcrumb, .acn-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex-wrap: wrap;
    justify-content: center;
}
.sd-srv-breadcrumb a, .acn-breadcrumb a {
    color: #fce4ec;
    text-decoration: none;
    transition: color 0.2s ease;
}
.sd-srv-breadcrumb a:hover, .acn-breadcrumb a:hover {
    color: #d4af37;
}

/* Service Content Sections */
.sd-srv-sec, .acn-sec {
    padding: 70px 0;
    background-color: #ffffff;
}
.sd-srv-sec-alt, .acn-sec-alt {
    padding: 70px 0;
    background-color: #fcf9f9;
}
.sd-srv-dark-sec, .acn-dark-sec {
    background: linear-gradient(145deg, #1b070c 0%, #2b0b12 100%);
    color: #ffffff;
    padding: 70px 0;
}
.sd-srv-dark-sec h2, .sd-srv-dark-sec h3, .acn-dark-sec h2, .acn-dark-sec h3 {
    font-family: 'Abhaya Libre', serif;
    color: #d4af37;
}

/* Typography */
.sd-srv-title, .acn-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 34px;
    font-weight: 800;
    color: #800020;
    margin-bottom: 16px;
    line-height: 1.25;
}
.sd-srv-text, .acn-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
}
.sd-srv-text p, .acn-text p {
    margin-bottom: 16px;
}
.sd-srv-text ul, .acn-text ul {
    margin-bottom: 16px;
    padding-left: 20px;
}
.sd-srv-text li, .acn-text li {
    margin-bottom: 8px;
}

/* Images & Visual Containers */
.sd-srv-img-box, .acn-img-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(128, 0, 32, 0.12);
    border: 4px solid #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sd-srv-img-box:hover, .acn-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(128, 0, 32, 0.18);
}
.sd-srv-img-box img, .acn-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Cards & Feature Pillars */
.sd-srv-pillar-card, .acn-pillar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border-left: 4px solid #800020;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sd-srv-pillar-card:hover, .acn-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(128, 0, 32, 0.1);
}
.sd-srv-pillar-title, .acn-pillar-title {
    font-size: 19px;
    font-weight: 700;
    color: #800020;
    margin-bottom: 12px;
    font-family: 'Abhaya Libre', serif;
}
.sd-srv-dark-card, .acn-dark-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: transform 0.3s ease;
}
.sd-srv-dark-card:hover, .acn-dark-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
}

/* Interactive FAQ Accordion */
.sd-srv-faq-card, .acn-faq-card {
    background: #ffffff;
    border: 1px solid #f0e6e6;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: border-color 0.2s ease;
}
.sd-srv-faq-card:hover, .acn-faq-card:hover {
    border-color: rgba(128, 0, 32, 0.3);
}
.sd-srv-faq-btn, .acn-faq-btn {
    width: 100%;
    padding: 18px 24px;
    text-align: left;
    background: #ffffff;
    border: none;
    font-size: 16.5px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.sd-srv-faq-btn:hover, .acn-faq-btn:hover {
    background: #fffcfc;
    color: #800020;
}
.sd-srv-faq-body, .acn-faq-body {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

/* Appointment Booking Form Component */
.sd-srv-form-card, .acn-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(128, 0, 32, 0.08);
    border: 1px solid rgba(128, 0, 32, 0.08);
    padding: 36px;
}
.sd-srv-input, .acn-input {
    width: 100%;
    height: 50px;
    padding: 12px 18px;
    font-size: 14px;
    color: #2b2b2b;
    background-color: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.sd-srv-input:focus, .acn-input:focus {
    background-color: #ffffff;
    border-color: #800020;
    outline: none;
    box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.1);
}
.sd-srv-btn, .acn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #800020 0%, #b22222 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}
.sd-srv-btn:hover, .acn-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(128, 0, 32, 0.4);
}

/* Responsiveness */
@media (max-width: 991px) {
    .sd-srv-hero, .acn-hero-sec {
        padding: 120px 15px 40px 15px;
    }
    .sd-srv-hero-title, .acn-hero-title {
        font-size: 32px;
    }
    .sd-srv-sec, .sd-srv-sec-alt, .sd-srv-dark-sec,
    .acn-sec, .acn-sec-alt, .acn-dark-sec {
        padding: 45px 0;
    }
    .sd-srv-title, .acn-title {
        font-size: 28px;
    }
    .sd-srv-form-card, .acn-form-card {
        padding: 25px 20px;
    }
    .sd-srv-img-box, .acn-img-box {
        margin-top: 25px;
    }
}
@media (max-width: 575px) {
    .sd-srv-hero-title, .acn-hero-title {
        font-size: 25px;
    }
    .sd-srv-hero-subtitle, .acn-hero-subtitle {
        font-size: 13px;
    }
    .sd-srv-btn, .acn-btn {
        width: 100%;
        padding: 12px 20px;
    }
    .sd-srv-form-card, .acn-form-card {
        padding: 20px 15px;
    }
}
