/* ===================================================
   YABİ VETERİNER KLİNİĞİ - HİZMET DETAY STILLERİ
   =================================================== */

/* --- 1. HERO / BREADCRUMB BANNER --- */
.service-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #15162a 0%, #24144e 50%, #150f33 100%);
    padding: 65px 0 70px;
    overflow: hidden;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero-banner::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 280px;
    color: rgba(255, 255, 255, 0.025);
    right: -40px;
    bottom: -60px;
    transform: rotate(-15deg);
    pointer-events: none;
}

.service-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(164, 102, 248, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 700;
}

/* Hero Badge & Title */
.hero-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.7) 0%, rgba(168, 85, 247, 0.7) 100%);
    border: 1px solid rgba(168, 85, 247, 0.5);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
}

.hero-service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 16px;
    word-break: break-word;
}

.hero-service-summary {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 780px;
}


/* --- 2. MAIN LAYOUT & GRID --- */
.service-detail-section {
    background-color: var(--bg-light);
    padding: 60px 0 100px;
    position: relative;
    z-index: 10;
}

.service-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 42px;
    align-items: start;
}


/* --- 3. LEFT COLUMN: MAIN SERVICE CONTENT --- */
.service-main-content {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Cover Image Card */
.detail-cover-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(21, 22, 42, 0.08);
    background: #ffffff;
    height: 440px;
    width: 100%;
}

.detail-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.detail-cover-card:hover .detail-cover-img {
    transform: scale(1.03);
}

.cover-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(21, 22, 42, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-width: calc(100% - 48px);
}

.cover-floating-badge i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Main Text & Overview Card */
.detail-body-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 40px;
    border: 1px solid rgba(21, 22, 42, 0.06);
    box-shadow: 0 10px 30px rgba(21, 22, 42, 0.03);
}

.detail-body-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark-navy);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 14px;
    line-height: 1.25;
}

.detail-body-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3.5px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-light));
    border-radius: 3px;
}

.detail-text-paragraph {
    font-size: 16px;
    line-height: 1.85;
    color: #45495e;
    margin-bottom: 24px;
}

/* Highlight Quote Callout */
.detail-callout-quote {
    background: linear-gradient(135deg, rgba(121, 40, 202, 0.06) 0%, rgba(168, 85, 247, 0.03) 100%);
    border-left: 4px solid var(--brand-purple);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 30px 0;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.quote-icon {
    font-size: 24px;
    color: var(--brand-purple);
    margin-top: 2px;
    flex-shrink: 0;
}

.quote-content p {
    font-size: 15.5px;
    font-style: italic;
    color: #2b2e42;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 8px;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-purple);
    display: inline-block;
}

/* Scope / Procedures Checklist */
.detail-scope-section {
    margin-top: 40px;
}

.section-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
}

.section-subheading i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.scope-item-card {
    background: #faf9fd;
    border: 1px solid #eeebf8;
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.scope-item-card:hover {
    background: #ffffff;
    border-color: rgba(121, 40, 202, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(121, 40, 202, 0.08);
}

.scope-check-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7928ca 0%, #9d62fc 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(121, 40, 202, 0.25);
    margin-top: 2px;
    flex-shrink: 0;
}

.scope-text-wrap {
    flex: 1;
}

.scope-text-wrap h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 6px;
    line-height: 1.35;
}

.scope-text-wrap p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Advantages Strip */
.detail-advantages-strip {
    background: linear-gradient(135deg, #15162a 0%, #20133e 100%);
    border-radius: 20px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(21, 22, 42, 0.12);
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.adv-icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.adv-info h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2px;
}

.adv-info p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    margin: 0;
}

/* FAQ Accordion */
.detail-faq-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 40px;
    border: 1px solid rgba(21, 22, 42, 0.06);
    box-shadow: 0 10px 30px rgba(21, 22, 42, 0.03);
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.faq-accordion-item {
    border: 1px solid #eae8f5;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #ffffff;
}

.faq-accordion-item.open {
    border-color: rgba(121, 40, 202, 0.3);
    box-shadow: 0 8px 24px rgba(121, 40, 202, 0.06);
}

.faq-accordion-header {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark-navy);
    transition: color 0.2s ease, background-color 0.2s ease;
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
}

.faq-accordion-header:hover {
    color: var(--brand-purple);
    background-color: #faf9fd;
}

.faq-accordion-item.open .faq-accordion-header {
    color: var(--brand-purple);
    background-color: #faf9fd;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f1effa;
    color: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-accordion-item.open .faq-toggle-icon {
    transform: rotate(180deg);
    background: var(--brand-purple);
    color: #ffffff;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 22px;
    background-color: #ffffff;
}

.faq-accordion-item.open .faq-accordion-body {
    max-height: 600px;
    padding: 14px 22px 22px;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
}

.faq-accordion-body p {
    font-size: 14.8px;
    line-height: 1.75;
    color: #555971;
    margin: 0;
}

/* Detail Appointment CTA Banner & Form */
.detail-cta-card {
    background: linear-gradient(135deg, #15162a 0%, #28174f 60%, #1a0e38 100%);
    border-radius: 24px;
    padding: 44px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(21, 22, 42, 0.15);
}

.detail-cta-card::after {
    content: '\f0f0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 220px;
    color: rgba(255, 255, 255, 0.025);
    bottom: -50px;
    right: -20px;
    pointer-events: none;
}

.cta-header-group {
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    max-width: 620px;
}

.detail-mini-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.detail-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 13px 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: all 0.25s ease;
    width: 100%;
    box-sizing: border-box;
}

.detail-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.detail-input:focus {
    border-color: #a466f8;
    background: rgba(164, 102, 248, 0.12);
    box-shadow: 0 0 0 3px rgba(164, 102, 248, 0.2);
}

.detail-input option {
    background-color: #1e1340;
    color: #ffffff;
}

.btn-detail-submit {
    align-self: flex-start;
    background: linear-gradient(135deg, #fba92c 0%, #f79e1b 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 38px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(247, 158, 27, 0.4);
    transition: all 0.3s ease;
    margin-top: 8px;
    -webkit-tap-highlight-color: transparent;
}

.btn-detail-submit:hover {
    background: linear-gradient(135deg, #f89d18 0%, #e58d0a 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(247, 158, 27, 0.5);
}


/* --- 4. RIGHT COLUMN: SIDEBAR (STICKY ON DESKTOP) --- */
.service-sidebar {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Sidebar Menu Card */
.sidebar-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 24px;
    border: 1px solid rgba(21, 22, 42, 0.06);
    box-shadow: 0 10px 30px rgba(21, 22, 42, 0.03);
}

.sidebar-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Services Navigation List */
.sidebar-services-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.8px;
    font-weight: 700;
    color: #3b3f54;
    background: #faf9fd;
    border: 1px solid #f0edf8;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 48px;
}

.sidebar-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-item-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

/* Service Category Specific Colors */
.icon-purple { background: linear-gradient(135deg, #7928ca, #a855f7); }
.icon-orange { background: linear-gradient(135deg, #ea580c, #f97316); }
.icon-teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.icon-rose { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.icon-purple-light { background: linear-gradient(135deg, #9333ea, #c084fc); }
.icon-amber { background: linear-gradient(135deg, #d97706, #f59e0b); }
.icon-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.icon-emerald { background: linear-gradient(135deg, #059669, #10b981); }
.icon-coral { background: linear-gradient(135deg, #f97316, #fb923c); }

.sidebar-arrow-icon {
    font-size: 12px;
    color: #a4a7be;
    transition: transform 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

.sidebar-nav-item a:hover {
    background: #ffffff;
    border-color: rgba(121, 40, 202, 0.3);
    color: var(--brand-purple);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(121, 40, 202, 0.08);
}

.sidebar-nav-item a:hover .sidebar-arrow-icon {
    color: var(--brand-purple);
    transform: translateX(3px);
}

/* Active Service State */
.sidebar-nav-item.active a {
    background: linear-gradient(135deg, #7928ca 0%, #9d62fc 100%);
    color: #ffffff !important;
    border-color: #7928ca;
    box-shadow: 0 8px 22px rgba(121, 40, 202, 0.35);
    transform: translateX(4px);
}

.sidebar-nav-item.active .sidebar-item-icon {
    background: rgba(255, 255, 255, 0.22) !important;
    box-shadow: none !important;
}

.sidebar-nav-item.active .sidebar-arrow-icon {
    color: #ffffff !important;
    transform: translateX(3px);
}

/* Sidebar Emergency Card */
.sidebar-emergency-card {
    background: linear-gradient(135deg, #15162a 0%, #281452 60%, #1c0e3e 100%);
    border-radius: 22px;
    padding: 30px 24px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(21, 22, 42, 0.12);
}

.sidebar-emergency-card::before {
    content: '\f095';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
    top: -20px;
    right: -20px;
    pointer-events: none;
}

.emergency-pulse-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fba92c 0%, #f79e1b 100%);
    color: #ffffff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 8px rgba(247, 158, 27, 0.2);
    animation: emergencyPulse 2.2s infinite;
}

@keyframes emergencyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 158, 27, 0.5);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(247, 158, 27, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 158, 27, 0);
    }
}

.emergency-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

.emergency-card-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
    margin-bottom: 20px;
}

.btn-sidebar-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #fba92c 0%, #f79e1b 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(247, 158, 27, 0.4);
    transition: all 0.3s ease;
    min-height: 48px;
}

.btn-sidebar-call:hover {
    background: linear-gradient(135deg, #f89d18 0%, #e58d0a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(247, 158, 27, 0.55);
}

.btn-sidebar-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #25d366;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    min-height: 46px;
}

.btn-sidebar-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

/* Sidebar Working Hours */
.sidebar-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-hours-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e9e7f4;
    font-size: 13.5px;
}

.sidebar-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hour-day {
    font-weight: 700;
    color: #3b3f54;
    font-family: 'Montserrat', sans-serif;
}

.hour-time {
    color: var(--brand-purple);
    font-weight: 700;
    background: rgba(121, 40, 202, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12.5px;
}

/* Sidebar Emergency Notice (Ultra High Visibility & Contrast) */
.sidebar-emergency-notice {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff8eb;
    border: 1.5px solid #fbd38d;
    border-left: 4px solid #f79e1b;
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 20px;
    box-shadow: 0 4px 16px rgba(247, 158, 27, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar-emergency-notice:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(247, 158, 27, 0.22);
}

.sidebar-emergency-notice i {
    color: #d97706;
    font-size: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.25));
}

.sidebar-emergency-notice span {
    color: #7c3d00;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.45;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1px;
}


/* --- 5. TOAST / ALERT NOTIFICATION --- */
.detail-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #15162a;
    color: #ffffff;
    border-left: 5px solid #22c55e;
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 480px;
}

.detail-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #22c55e;
    font-size: 20px;
    flex-shrink: 0;
}

.toast-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.8px;
    font-weight: 600;
    line-height: 1.5;
}


/* ===================================================
   6. RESPONSIVE OPTIMIZATIONS ACROSS ALL BREAKPOINTS
   =================================================== */

/* --- 1150px (Small Laptops / Desktops) --- */
@media screen and (max-width: 1150px) {
    .service-layout-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 32px;
    }

    .hero-service-title {
        font-size: 36px;
    }

    .detail-cover-card {
        height: 400px;
    }
}

/* --- 992px (Tablets Landscape & Small Screens) --- */
@media screen and (max-width: 992px) {
    .service-hero-banner {
        padding: 50px 0 55px;
    }

    .hero-service-title {
        font-size: 32px;
    }

    .hero-service-summary {
        font-size: 15.5px;
    }

    .service-layout-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 40px;
    }

    .service-sidebar {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
        position: static;
    }

    .detail-cover-card {
        height: 350px;
    }

    .detail-body-card,
    .detail-faq-card,
    .detail-cta-card {
        padding: 34px 28px;
    }

    .detail-advantages-strip {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 16px;
        padding: 24px 24px;
    }
}

/* --- 768px (Tablets Portrait) --- */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .service-detail-section {
        padding: 45px 0 75px;
    }

    .service-hero-banner {
        padding: 40px 0 45px;
    }

    .hero-service-title {
        font-size: 27px;
        line-height: 1.25;
    }

    .hero-service-summary {
        font-size: 14.5px;
    }

    .detail-cover-card {
        height: 290px;
        border-radius: 20px;
    }

    .cover-floating-badge {
        bottom: 16px;
        left: 16px;
        font-size: 12.5px;
        padding: 8px 16px;
    }

    .detail-body-card,
    .detail-faq-card,
    .detail-cta-card {
        padding: 26px 20px;
        border-radius: 20px;
    }

    .detail-body-title {
        font-size: 23px;
    }

    .scope-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 12px;
    }

    .scope-item-card {
        padding: 16px 18px;
    }

    .detail-form-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 14px;
    }

    .btn-detail-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .detail-toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: calc(100vw - 40px);
    }
}

/* --- 480px (Standard Mobile) --- */
@media screen and (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .service-hero-banner {
        padding: 32px 0 38px;
    }

    .breadcrumb-nav {
        font-size: 12.5px;
        gap: 6px;
        margin-bottom: 14px;
    }

    .hero-service-badge {
        font-size: 11px;
        padding: 5px 14px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .hero-service-title {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .hero-service-summary {
        font-size: 13.8px;
        line-height: 1.6;
    }

    .detail-cover-card {
        height: 220px;
        border-radius: 16px;
    }

    .cover-floating-badge {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        font-size: 11.5px;
        padding: 7px 12px;
        justify-content: center;
        border-radius: 20px;
    }

    .detail-body-card,
    .detail-faq-card,
    .detail-cta-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .detail-body-title {
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 16px;
    }

    .detail-text-paragraph {
        font-size: 14.5px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .detail-callout-quote {
        padding: 16px 14px;
        gap: 12px;
        margin: 22px 0;
        border-radius: 12px;
    }

    .quote-icon {
        font-size: 20px;
    }

    .quote-content p {
        font-size: 14px;
    }

    .section-subheading {
        font-size: 18px;
        margin-bottom: 16px;
        gap: 10px;
    }

    .section-subheading i {
        font-size: 17px;
    }

    .scope-item-card {
        padding: 14px 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .scope-check-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
        border-radius: 10px;
    }

    .scope-text-wrap h4 {
        font-size: 14.5px;
        margin-bottom: 4px;
    }

    .scope-text-wrap p {
        font-size: 13px;
        line-height: 1.5;
    }

    .detail-advantages-strip {
        padding: 18px 16px;
        border-radius: 16px;
        gap: 14px;
    }

    .adv-icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 17px;
        border-radius: 12px;
    }

    .adv-info h5 {
        font-size: 14px;
    }

    .adv-info p {
        font-size: 12px;
    }

    .faq-accordion-header {
        padding: 15px 14px;
        font-size: 14px;
        gap: 10px;
    }

    .faq-toggle-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 11px;
    }

    .faq-accordion-body {
        padding: 0 14px;
    }

    .faq-accordion-item.open .faq-accordion-body {
        padding: 12px 14px 18px;
    }

    .faq-accordion-body p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .cta-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .cta-title {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .cta-desc {
        font-size: 13.8px;
        line-height: 1.55;
    }

    .detail-input {
        font-size: 13.5px;
        padding: 11px 14px;
    }

    .btn-detail-submit {
        font-size: 14px;
        padding: 13px 20px;
    }

    .sidebar-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .sidebar-heading {
        font-size: 16.5px;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }

    .sidebar-nav-item a {
        padding: 11px 12px;
        font-size: 13px;
    }

    .sidebar-item-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 12px;
    }

    .sidebar-emergency-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .emergency-pulse-icon {
        width: 50px;
        height: 50px;
        font-size: 19px;
        margin-bottom: 12px;
    }

    .emergency-card-title {
        font-size: 18px;
    }

    .emergency-card-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .btn-sidebar-call {
        font-size: 14.5px;
        padding: 12px 16px;
    }

    .btn-sidebar-whatsapp {
        font-size: 13.5px;
        padding: 11px 16px;
    }

    .sidebar-emergency-notice {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 12px;
        margin-top: 16px;
    }

    .sidebar-emergency-notice i {
        font-size: 19px;
    }

    .sidebar-emergency-notice span {
        font-size: 12.5px;
    }
}

/* --- 360px (Compact Mobile - Small Screen) --- */
@media screen and (max-width: 360px) {
    .header-container {
        padding: 0 12px;
    }

    .service-hero-banner {
        padding: 26px 0 32px;
    }

    .breadcrumb-nav {
        font-size: 11.5px;
        gap: 5px;
    }

    .hero-service-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .hero-service-title {
        font-size: 20px;
    }

    .hero-service-summary {
        font-size: 13px;
    }

    .detail-cover-card {
        height: 190px;
        border-radius: 14px;
    }

    .cover-floating-badge {
        font-size: 10.5px;
        padding: 6px 10px;
        gap: 6px;
    }

    .detail-body-card,
    .detail-faq-card,
    .detail-cta-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .detail-body-title {
        font-size: 18px;
    }

    .section-subheading {
        font-size: 16.5px;
    }

    .scope-item-card {
        padding: 12px 10px;
        gap: 10px;
    }

    .scope-check-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 11px;
    }

    .scope-text-wrap h4 {
        font-size: 13.5px;
    }

    .scope-text-wrap p {
        font-size: 12.5px;
    }

    .cta-title {
        font-size: 18.5px;
    }

    .cta-desc {
        font-size: 12.8px;
    }

    .detail-input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .btn-detail-submit {
        font-size: 13.5px;
        padding: 12px 16px;
    }

    .sidebar-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .sidebar-emergency-card {
        padding: 18px 12px;
        border-radius: 14px;
    }

    .emergency-card-title {
        font-size: 17px;
    }

    .emergency-card-desc {
        font-size: 12px;
    }

    .sidebar-emergency-notice {
        padding: 10px 12px;
        gap: 8px;
    }

    .sidebar-emergency-notice span {
        font-size: 11.8px;
    }
}
