/* ==========================================================================
   AI Photoshoot & Photoshoot Ads Generator - Apple-Inspired Clean Design
   Typography: SF Pro Display / SF Pro Text
   Design: Minimal, content-focused, generous whitespace
   ========================================================================== */

/* CSS Variables - Apple-inspired color palette */
:root {
    --apple-black: #1d1d1f;
    --apple-gray-dark: #424245;
    --apple-gray-medium: #6e6e73;
    --apple-gray-light: #86868b;
    --apple-gray-lighter: #f5f5f7;
    --apple-white: #ffffff;
    --apple-blue: #0071e3;
    --apple-blue-hover: #0077ed;
    --section-spacing: 120px;
    --container-max: 980px;
    --container-wide: 1200px;
}

/* Typography - SF Pro inspired system fonts */
.photoshoot-page {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--apple-black);
    background: var(--apple-white);
}

/* Sticky Header */
body:has(.photoshoot-page) nav.navbar.new-layout-navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    background: var(--apple-white) !important;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

body:has(.photoshoot-page) nav.navbar.new-layout-navbar .landing-navbar {
    margin-top: 0 !important;
}

/* CTA Button - Apple style */
.photoshoot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 500;
    color: var(--apple-white);
    background: var(--apple-blue);
    border: none;
    border-radius: 980px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.photoshoot-cta:hover {
    background: var(--apple-blue-hover);
    color: var(--apple-white);
}

/* Why AI Photoshoots Work Section */
.photoshoot-why {
    padding: var(--section-spacing) 24px;
    background: var(--apple-gray-lighter);
}

.photoshoot-why__container {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.photoshoot-why__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-black);
    margin: 0 0 24px;
}

.photoshoot-why__intro {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--apple-gray-medium);
    margin: 0 0 24px;
}

.photoshoot-why__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: inline-block;
    text-align: left;
}

.photoshoot-why__list li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--apple-black);
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.photoshoot-why__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-weight: 600;
}

.photoshoot-why__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--apple-gray-medium);
    margin: 0 auto;
    max-width: 680px;
}

/* Features Section - Table Layout */
.photoshoot-features {
    padding: var(--section-spacing) 24px;
    background: var(--apple-white);
}

.photoshoot-features__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.photoshoot-features__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--apple-black);
    text-align: center;
    margin: 0 0 48px;
}

/* Table Structure */
.photoshoot-features__table {
    border: 1px solid var(--apple-black);
    border-collapse: collapse;
}

.photoshoot-features__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.photoshoot-features__row:not(:last-child) {
    border-bottom: 1px solid var(--apple-black);
}

.photoshoot-features__row--full {
    grid-template-columns: 1fr;
}

.photoshoot-features__cell {
    padding: 32px 24px;
    text-align: center;
}

.photoshoot-features__cell:first-child:not(.photoshoot-features__cell--full) {
    border-right: 1px solid var(--apple-black);
}

.photoshoot-features__cell--full {
    border-right: none;
}

.photoshoot-features__cell-title {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
    color: var(--apple-black);
    margin: 0 0 12px;
}

.photoshoot-features__cell-text {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--apple-gray-dark);
    margin: 0;
}

.photoshoot-features__cell-text strong {
    font-weight: 600;
    font-style: italic;
}

/* How It Works Section */
.photoshoot-how {
    padding: var(--section-spacing) 24px;
    background: var(--apple-gray-lighter);
}

.photoshoot-how__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.photoshoot-how__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-black);
    text-align: center;
    margin: 0 0 64px;
}

.photoshoot-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    counter-reset: step-counter;
}

.photoshoot-step {
    text-align: center;
    position: relative;
    counter-increment: step-counter;
}

.photoshoot-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--apple-blue);
    color: var(--apple-white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.photoshoot-step__title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--apple-black);
    margin: 0 0 12px;
}

.photoshoot-step__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--apple-gray-medium);
    margin: 0;
}

/* Who Can Benefit Section */
.photoshoot-benefit {
    padding: var(--section-spacing) 24px;
    background: var(--apple-white);
}

.photoshoot-benefit__container {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.photoshoot-benefit__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-black);
    margin: 0 0 24px;
}

.photoshoot-benefit__intro {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--apple-gray-medium);
    margin: 0 0 24px;
}

.photoshoot-benefit__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.photoshoot-benefit__list li {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--apple-black);
    padding-left: 28px;
    position: relative;
}

.photoshoot-benefit__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-weight: 600;
}

/* Ready CTA Section */
.photoshoot-ready {
    padding: var(--section-spacing) 24px;
    background: var(--apple-gray-lighter);
    text-align: center;
}

.photoshoot-ready__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.photoshoot-ready__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-black);
    margin: 0 0 20px;
}

.photoshoot-ready__text {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--apple-gray-medium);
    margin: 0 0 40px;
}

/* FAQ Section */
.photoshoot-faq {
    padding: var(--section-spacing) 24px;
    background: var(--apple-white);
}

.photoshoot-faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.photoshoot-faq__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--apple-black);
    text-align: center;
    margin: 0 0 64px;
}

.photoshoot-faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photoshoot-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.photoshoot-faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 40px 24px 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--apple-black);
    text-align: left;
    cursor: pointer;
    position: relative;
    font-family: inherit;
}

.photoshoot-faq__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--apple-gray-light);
    transition: transform 0.3s ease;
}

.photoshoot-faq__question[aria-expanded="true"]::after {
    content: '−';
}

.photoshoot-faq__answer {
    padding: 0 0 24px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--apple-gray-medium);
    display: none;
}

.photoshoot-faq__item.is-open .photoshoot-faq__answer {
    display: block;
}

/* Remove gap between FAQ/Testimonials and Footer */
.photoshoot-page .testimonial-swiper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.photoshoot-page .photoshoot-faq {
    padding-bottom: 60px;
}

/* Ensure no extra margin at the end of page */
.photoshoot-page {
    padding-bottom: 0;
    margin-bottom: 0;
}

.photoshoot-page > *:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1068px) {
    :root {
        --section-spacing: 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .photoshoot-how__steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    /* Features table mobile - stack to single column */
    .photoshoot-features__row {
        grid-template-columns: 1fr;
    }
    
    .photoshoot-features__cell:first-child:not(.photoshoot-features__cell--full) {
        border-right: none;
        border-bottom: 1px solid var(--apple-black);
    }
    
    .photoshoot-features__cell {
        padding: 24px 20px;
    }
    
    .photoshoot-features__title,
    .photoshoot-how__title,
    .photoshoot-ready__title,
    .photoshoot-faq__title,
    .photoshoot-why__title,
    .photoshoot-benefit__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .photoshoot-faq__question {
        font-size: 16px;
        padding: 20px 36px 20px 0;
    }
    
    .photoshoot-faq__answer {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-spacing: 48px;
    }
    
    .photoshoot-step__title {
        font-size: 17px;
    }
    
    .photoshoot-step__number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .photoshoot-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .photoshoot-why__list li,
    .photoshoot-benefit__list li {
        font-size: 15px;
    }
}

/* Schema Markup Helper Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
