/* ── SERVICES HORIZONTAL ACCORDION STYLES ── */
.service-category {
    text-align: center;
    margin: 4rem 0 3rem;
}

.category-heading {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(176, 0, 58, 0.4);
    animation: titleBrilliance 4s ease-in-out infinite alternate;
}

@keyframes titleBrilliance {
    0% {
        text-shadow: 0 0 10px rgba(176, 0, 58, 0.3), 0 0 20px rgba(176, 0, 58, 0.1);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(176, 0, 58, 0.8), 0 0 40px rgba(176, 0, 58, 0.4), 0 0 60px rgba(176, 0, 58, 0.2);
        filter: brightness(1.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(176, 0, 58, 0.5), 0 0 30px rgba(176, 0, 58, 0.2);
        filter: brightness(1.1);
    }
}

.category-heading::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    margin: 15px auto 0;
    box-shadow: 0 0 15px var(--red);
}

.services-accordion-section {
    padding: 8rem 2rem;
    background: #050505;
    min-height: 100vh;
}

.horizontal-accordion {
    display: flex;
    width: 100%;
    max-width: 1300px;
    height: 550px;
    margin: 3rem auto 0;
    gap: 10px;
}

.acc-panel {
    flex: 1; /* All panels start equal */
    height: 100%;
    overflow: hidden;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='26' viewBox='0 0 22 26'%3E%3Cpath d='M7 0 C6 0 5 1 5 2 L5 13 C4 12 3 12 2 12 C1 12 0 13 0 14 C0 15 1 16 2 17 L7 22 C9 24 11 25 14 25 C18 25 22 21 22 17 L22 10 C22 9 21 8 20 8 C19 8 18 9 18 10 L18 8 C18 7 17 6 16 6 C15 6 14 7 14 8 L14 7 C14 6 13 5 12 5 C11 5 10 6 10 7 L10 2 C10 1 9 0 8 0 Z' fill='%23B0003A' stroke='%23100008' stroke-width='0.8' stroke-linejoin='round'/%3E%3C/svg%3E") 7 0, pointer;
    position: relative;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(145deg, rgba(30,10,20,0.9) 0%, rgba(10,5,10,1) 100%);
    border: 1px solid rgba(176, 0, 58, 0.15);
    border-radius: 8px;
    display: flex;
}

/* Vertical Title Column */
.acc-title-col {
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(176, 0, 58, 0.1);
    transition: background 0.4s ease;
}

.acc-vertical-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    transform: rotate(-90deg);
    transition: all 0.4s ease;
}

/* Content Area */
.acc-content {
    flex: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    min-width: 600px; /* Width when expanded */
}

.acc-content-inner {
    max-width: 500px;
}

/* Hover States */
.acc-panel:hover {
    flex: 10; /* Grow significantly */
    border-color: rgba(176, 0, 58, 0.4);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(176, 0, 58, 0.1);
}

.acc-panel:hover .acc-title-col {
    background: rgba(176, 0, 58, 0.05);
}

.acc-panel:hover .acc-vertical-title {
    color: var(--red);
    text-shadow: 0 0 15px rgba(176, 0, 58, 0.6);
}

.acc-panel:hover .acc-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}

/* Detailed Content Styling (Re-using some split logic) */
.detail-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--red);
    display: block;
    margin-bottom: 0.8rem;
}

.detail-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
}

.detail-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 2.5rem;
}

.detail-footer {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.detail-price {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 5px;
}
.detail-price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--red);
}

.detail-cta {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 1px solid var(--red);
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    background: rgba(176, 0, 58, 0.15);
    transition: all 0.3s;
}
.detail-cta:hover {
    background: var(--red);
    box-shadow: 0 0 15px rgba(176, 0, 58, 0.5);
    transform: translateY(-2px);
}

/* ── PHOTOGRAPHY ── */
.mt-large { margin-top: 8rem; }

/* Polaroids */
.photo-polaroids {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin: 4rem auto 3rem;
    max-width: 700px;
    position: relative;
    height: 340px;
}

.polaroid {
    background: #f5f0eb;
    padding: 12px 12px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    width: 200px;
    flex-shrink: 0;
    position: absolute;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.polaroid-caption {
    display: block;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #333;
    margin-top: 10px;
    letter-spacing: 0.1em;
}

.polaroid--left  { transform: rotate(-8deg) translateX(-80px); z-index: 1; }
.polaroid--center { transform: rotate(1deg); z-index: 3; }
.polaroid--right { transform: rotate(7deg) translateX(80px); z-index: 2; }

.polaroid:hover { transform: rotate(0deg) scale(1.05) translateY(-8px); z-index: 10; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }

/* Film rate card */
.film-rate-card {
    max-width: 640px;
    margin: 3rem auto 5rem;
    background: #080808;
    border: 1px solid #1a1a1a;
    position: relative;
    display: flex;
    gap: 0;
}

.film-sprockets {
    width: 36px;
    flex-shrink: 0;
    background: #050505;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 10px,
        #1a1a1a 10px,
        #1a1a1a 11px,
        transparent 11px,
        transparent 20px
    );
    position: relative;
}

.film-sprockets::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 14px,
        #0f0f0f 14px,
        #0f0f0f 30px,
        transparent 30px,
        transparent 44px
    );
    background-size: 100% 44px;
}

.film-sprockets::after {
    content: '';
    position: absolute;
    top: 22px; left: 50%; transform: translateX(-50%);
    width: 16px; height: 12px;
    background: repeating-linear-gradient(
        to bottom,
        #1c1c1c 0px, #1c1c1c 12px,
        transparent 12px, transparent 32px
    );
    background-size: 16px 32px;
    bottom: 22px;
    top: 22px;
    border-radius: 3px;
}

.film-inner {
    flex: 1;
    padding: 2rem 2.5rem;
    border-left: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
}

.film-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1e1e1e;
}

.film-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    color: #fff;
}

.film-meta {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 0.1em;
}

.film-section {
    padding: 1.5rem 0;
}

.film-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.film-frame-num {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #333;
    letter-spacing: 0.1em;
}

.film-section-label {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
}

.film-label--nsfw {
    color: var(--red);
}

.film-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.9rem;
}

.film-row-name {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.film-row-dots {
    flex: 1;
    border-bottom: 1px solid #1e1e1e;
    margin: 0 12px;
}

.film-row-price {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.film-addon {
    font-size: 0.7rem;
    color: #333;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.film-red-line {
    height: 2px;
    background: var(--red);
    opacity: 0.6;
    margin: 0 -2.5rem;
}

.film-discount-strip {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.film-discount-tag {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--red);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    flex-shrink: 0;
}

.film-discount-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.film-discount-items span {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.film-discount-val {
    color: #fff;
    font-weight: 700;
}

.film-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #1a1a1a;
    margin-top: 0.5rem;
}

.film-bottom-bar span {
    font-family: 'Courier New', monospace;
    font-size: 0.6rem;
    color: #2a2a2a;
    letter-spacing: 0.1em;
}

@media (max-width: 640px) {
    .photo-polaroids { height: 260px; }
    .polaroid { width: 150px; }
    .polaroid img { height: 130px; }
    .polaroid--left  { transform: rotate(-8deg) translateX(-55px); }
    .polaroid--right { transform: rotate(7deg)  translateX(55px); }
    .film-rate-card { margin: 2rem 1rem; }
    .film-inner { padding: 1.5rem; }
    .film-red-line { margin: 0 -1.5rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .horizontal-accordion {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .acc-panel {
        flex-direction: column;
        height: auto;
    }

    .acc-title-col {
        width: 100%;
        height: 60px;
        border-right: none;
        border-bottom: 1px solid rgba(176, 0, 58, 0.1);
    }

    .acc-vertical-title {
        transform: rotate(0);
        font-size: 1.1rem;
    }

    .acc-content {
        padding: 2.5rem;
        min-width: auto;
        display: block; /* Visible on mobile tap? Let's just stack them for now */
        opacity: 1;
        visibility: visible;
    }

    .acc-panel:hover {
        flex: none;
    }

    .film-sprockets { width: 24px; }
}
