/* ============================================
   FRANCHISE PAGE CSS
   Style Reference: harcourts.net - Clean & Simple
============================================ */

:root {
    --navy: #001f49;
    --cyan: #00aeef;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

.franchise-page {
    background: white;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== HERO SECTION ===== */
.hero-franchise {
    background: var(--navy);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-franchise::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-eyebrow {
    color: var(--cyan);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-franchise .hero-title {
    color: white;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-franchise .hero-title strong {
    font-weight: 700;
}

.hero-franchise .hero-title .highlight {
    color: var(--cyan);
    font-style: italic;
    font-weight: 700;
}

.hero-franchise .hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-hero-primary {
    background: var(--cyan);
    color: white;
}

.btn-hero-primary:hover {
    background: #0099d6;
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
    border-color: white;
    color: white;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 5rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s;
}

.why-card:hover {
    border-color: var(--cyan);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.1);
}

.why-card i {
    font-size: 1.5rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.why-card span {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== REASONS SECTION ===== */
.reasons-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.2s;
}

.reason-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.08);
}

.reason-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: white;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.reason-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    padding: 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    border-left: 4px solid var(--cyan);
    transition: all 0.2s;
}

.value-item:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 31, 73, 0.08);
}

.value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 1.25rem;
    color: white;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== FRANCHISE CTA SECTION ===== */
.franchise-cta {
    padding: 5rem 0;
    background: var(--gray-50);
}

.cta-box {
    background: var(--navy);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.cta-text .highlight-text {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.btn-wa-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-wa-large:hover {
    background: #20ba5a;
    color: white;
    transform: translateY(-2px);
}

.cta-contact {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-contact a {
    color: var(--cyan);
    text-decoration: none;
}

.cta-contact a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-franchise {
        padding: 4rem 0 3rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-box {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 767px) {
    .hero-franchise {
        padding: 3rem 0 2.5rem;
    }

    .hero-franchise .hero-title {
        font-size: 1.75rem;
    }

    .hero-franchise .hero-desc {
        font-size: 1rem;
    }

    .hero-cta-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .why-section,
    .reasons-section,
    .values-section,
    .franchise-cta {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .reason-item {
        flex-direction: column;
        gap: 1rem;
    }

    .reason-num {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-franchise .hero-title {
        font-size: 1.5rem;
    }

    .why-card {
        padding: 1rem;
    }

    .why-card i {
        font-size: 1.25rem;
    }

    .why-card span {
        font-size: 0.875rem;
    }
}
