/* Growth Fraction Pages Styles */

/* ============================================
   FOR FRACTIONALS PAGE (page-for-fractionals.hbs)
   ============================================ */

/* Hero Section */
.ff-hero-section {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 60px 60px;
}

.ff-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ff-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ff-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 400px;
}

.ff-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.ff-feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
}

.ff-feature-card.ff-featured {
    border-left: 3px solid var(--accent-lime);
}

.ff-icon {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.ff-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.ff-feature-card.ff-featured h3 {
    color: var(--accent-lime);
}

.ff-feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mission Section */
.ff-mission-section {
    padding: 100px 60px;
    background: var(--white);
    color: var(--bg-dark);
}

.ff-mission-container {
    max-width: 800px;
    margin: 0 auto;
}

.ff-mission-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.ff-mission-section p {
    font-size: 1rem;
    color: var(--gray-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.ff-mission-section a {
    color: var(--bg-dark);
    text-decoration: underline;
}

.ff-mission-section .btn {
    margin-top: 24px;
}

/* Benefits Section */
.ff-benefits-section {
    padding: 100px 60px;
    background: var(--white);
    color: var(--bg-dark);
}

.ff-benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ff-benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.ff-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
}

.ff-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ff-benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ff-benefit-icon svg {
    width: 20px;
    height: 20px;
    color: var(--bg-dark);
}

.ff-benefit-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ff-benefit-text p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

/* Community Section */
.ff-community-section {
    padding: 100px 60px;
    background: var(--white);
    color: var(--bg-dark);
}

.ff-community-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ff-community-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.ff-community-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.ff-community-text p {
    font-size: 0.95rem;
    color: var(--gray-mid);
    line-height: 1.8;
}

.ff-stats-grid {
    display: flex;
    gap: 16px;
}

.ff-stat-card {
    flex: 1;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
}

.ff-stat-card.white {
    background: var(--white);
    border: 1px solid #e0e0e0;
}

.ff-stat-card.lime {
    background: var(--accent-lime);
}

.ff-stat-card.dark {
    background: var(--bg-dark);
    color: var(--white);
}

.ff-stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ff-stat-card.dark .ff-stat-number {
    color: var(--accent-lime);
}

.ff-stat-label {
    font-size: 0.8rem;
    color: var(--gray-mid);
    line-height: 1.4;
}

.ff-stat-card.lime .ff-stat-label {
    color: var(--bg-dark);
}

.ff-stat-card.dark .ff-stat-label {
    color: var(--text-muted);
}

/* Testimonials Section */
.ff-testimonials-section {
    padding: 100px 60px;
    background: var(--white);
    color: var(--bg-dark);
}

.ff-testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ff-testimonials-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.ff-testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.ff-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ff-testimonial-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.ff-testimonial-card p {
    font-size: 1rem;
    color: var(--bg-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.ff-testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-dark);
}

/* FAQ Section (For Fractionals) */
.ff-faq-section {
    padding: 80px 60px;
    background: var(--gray-bg);
    color: var(--bg-dark);
}

.ff-faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.ff-faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.ff-faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.ff-faq-item summary {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.ff-faq-item summary::-webkit-details-marker {
    display: none;
}

.ff-faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
}

.ff-faq-item[open] summary::after {
    content: '\2212';
}

.ff-faq-item[open] summary {
    background: var(--bg-dark);
    color: var(--white);
}

.ff-faq-item p {
    padding: 0 24px 20px;
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.7;
}

.ff-faq-item[open] p {
    background: var(--bg-dark);
    color: var(--text-muted);
}

/* Final CTA (For Fractionals) */
.ff-final-cta-section {
    background: var(--bg-dark);
    padding: 100px 60px;
    text-align: center;
}

.ff-final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

/* ============================================
   APPLICATION FORM PAGE (page-apply.hbs)
   ============================================ */

.apply-hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 60px 60px;
    text-align: center;
}

.apply-container {
    max-width: 800px;
    margin: 0 auto;
}

.apply-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.apply-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.apply-form-section {
    padding: 80px 60px;
    background: var(--white);
}

.apply-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.apply-intro {
    margin-bottom: 48px;
}

.apply-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.apply-intro p {
    color: var(--gray-mid);
    line-height: 1.6;
}

.apply-form {
    color: var(--bg-dark);
}

.form-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--bg-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--bg-dark);
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: var(--white);
    color: var(--bg-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-lime);
    box-shadow: 0 0 0 3px rgba(191, 255, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    padding-top: 32px;
}

.form-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-mid);
}

/* ============================================
   DEFAULT PAGE STYLES
   ============================================ */

.page-content {
    padding: 80px 60px;
    background: var(--white);
    color: var(--bg-dark);
}

.page-content .container {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-mid);
}

/* Responsive */
@media (max-width: 768px) {
    .ff-hero-section,
    .ff-mission-section,
    .ff-benefits-section,
    .ff-community-section,
    .ff-testimonials-section,
    .ff-faq-section,
    .ff-final-cta-section,
    .apply-hero,
    .apply-form-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ff-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ff-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ff-community-container {
        grid-template-columns: 1fr;
    }

    .ff-stats-grid {
        flex-direction: column;
    }

    .ff-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ff-hero-section h1,
    .apply-hero h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HIRE A FRACTIONAL PAGE (page-hire.hbs)
   ============================================ */

.hire-hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 60px 60px;
    text-align: center;
}

.hire-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hire-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.hire-form-section {
    padding: 80px 60px;
    background: var(--white);
}

.hire-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.hire-intro {
    margin-bottom: 48px;
}

.hire-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.hire-intro p {
    color: var(--gray-mid);
    line-height: 1.6;
}

.hire-form {
    color: var(--bg-dark);
}

@media (max-width: 768px) {
    .hire-hero,
    .hire-form-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hire-hero h1 {
        font-size: 2.5rem;
    }
}
