/* ============================================
   PARNIKA FRANCHISES STYLES
   ============================================ */

/* --- VISIBILITY OVERRIDES --- */
.banner-title,
.banner-subtitle,
.section-title,
.intro-text,
.model-card,
.presence-item,
.why-list li,
.faq-item {
    opacity: 1 !important;
    transform: none !important;
}

:root {
    --primary-dark: #212121;
    --primary-teal: #2F5755;
    --secondary-teal: #5A9690;
    --white: #ffffff;
    --gray: #6B6B6B;
    --light-bg: #e6f2f1;
    --gold: #D4AF37;
    --silver: #C0C0C0;
    --bronze: #CD7F32;
    --platinum: #E5E4E2;
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

section {
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.Momo-Signature-word {
    font-family: "Momo Signature", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 2.6rem;
    color: #df2d68;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    /* font-family: 'Momo Signature', cursive; */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-teal);
}

.franchise-intro {
    background: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--gray);
    font-family: 'Ubuntu', sans-serif;
}

.why-choose {
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    font-family: 'Ubuntu', sans-serif;
}

.why-list li i {
    color: var(--secondary-teal);
    font-size: 1.2rem;
}

.why-img-box {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-img-box:hover img {
    transform: scale(1.05);
}

.franchise-presence {
    background: var(--white);
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.presence-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
}

.presence-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.presence-item:hover img {
    transform: scale(1.1);
}

.franchise-models {
    background: #f9f9f9;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.model-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    border-top: 5px solid transparent;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.model-card.bronze {
    border-color: var(--bronze);
}

.model-card.silver {
    border-color: var(--silver);
}

.model-card.gold {
    border-color: var(--gold);
}

.model-card.platinum {
    border-color: var(--platinum);
}

.model-header {
    padding: 1.5rem;
    color: var(--white);
}

.model-card.bronze .model-header {
    background: var(--bronze);
}

.model-card.silver .model-header {
    background: #999;
}

.model-card.gold .model-header {
    background: var(--gold);
}

.model-card.platinum .model-header {
    background: var(--platinum);
}

.model-header h3 {
    font-size: 1.8rem;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
}

.model-body {
    padding: 2rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Ubuntu', sans-serif;
}

.area-tag {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    display: block;
}

.btn-model {
    padding: 10px 25px;
    border: 2px solid var(--secondary-teal);
    color: var(--secondary-teal);
    background: transparent;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-model:hover {
    background: var(--secondary-teal);
    color: var(--white);
}

/* --- 4. Comparison Chart (Image) --- */
.franchise-comparison {
    background: var(--white);
    text-align: center;
}

.comparison-image-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 20px;
    background: #fff;
}

.comparison-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .comparison-image-container {
        width: 100%;
        padding: 0;
        box-shadow: none;
    }
}

.franchise-faq {
    background: var(--light-bg);
    padding-bottom: 6rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: 'Ubuntu', sans-serif;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f4f4f4;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-img-box {
        order: -1;
        margin-bottom: 2rem;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-active {
    display: flex;
    opacity: 1;
}

.modal-active .modal-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 10;
}

.modal-body-content {
    text-align: center;
}

.modal-img {
    width: 100%;
    height: auto;
    display: block;
}