/* ══════════════════════════════════════════════════════════════
   ELY'S CURE — FRANCHISING SAYFASI STİLLERİ (franchising.css)
   ══════════════════════════════════════════════════════════════ */

:root {
    --bento-navy: #13425e;
    --bento-navy-light: #2f5977;
    --bento-gold: #c9a96e;
    --bento-gold-hover: #b39359;
    --bento-bg: #f9f9f9;
    --bento-card-bg: #ffffff;
    --bento-border: rgba(194, 199, 206, 0.4);
    --bento-text-main: #1a1c1c;
    --bento-text-muted: #72787e;
}

/* ── Hero Section ── */
.franchise-hero {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

.franchise-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.franchise-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.franchise-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.4) 50%, #f9f9f9 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.franchise-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ── Main Content Section ── */
.franchise-main-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 6rem 20px;
}

/* ── Intro Content (Lorem Ipsum Area) ── */
.franchise-intro-card {
    background: var(--bento-card-bg);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(19, 66, 94, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.8;
}

.franchise-intro-card p {
    font-size: 16px;
    color: var(--bento-text-main);
    margin-bottom: 1.5rem;
}

.franchise-intro-card p:last-child {
    margin-bottom: 0;
}

/* ── Layout Grid ── */
.franchise-layout-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px;
}

@media (min-width: 1024px) {
    .franchise-layout-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .form-col-7 {
        grid-column: span 7 / span 7;
    }

    .info-col-5 {
        grid-column: span 5 / span 5;
    }
}

/* ── Bento Cards ── */
.bento-card {
    background: var(--bento-card-bg);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px -10px rgba(19, 66, 94, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-card:hover {
    box-shadow: 0 20px 40px -15px rgba(19, 66, 94, 0.22);
    transform: translateY(-3px);
    border-color: rgba(201, 169, 110, 0.4);
}

/* ── Info Card (Call to Action) ── */
.info-row {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
    border: 1px solid transparent;
    width: 100%;
}

.info-row:hover {
    background-color: rgba(19, 66, 94, 0.04);
    border-color: rgba(19, 66, 94, 0.08);
}

.bento-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.bento-icon-box.gold {
    background-color: rgba(201, 169, 110, 0.15);
    color: var(--bento-gold);
}

.info-row:hover .bento-icon-box.gold {
    background-color: var(--bento-gold);
    color: #FFFFFF;
}

/* ── Premium Forms ── */
.form-group-relative {
    position: relative;
    width: 100%;
}

.input-field {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 0.5rem;
    padding: 1.15rem 1.25rem 0.85rem 1.25rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: var(--bento-text-main);
    transition: all 0.3s ease;
    height: 56px;
}

.input-field:focus {
    outline: none;
    border-color: var(--bento-gold);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12);
}

.floating-label {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    color: var(--bento-text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
}

/* Floating Label Animation */
.input-field:focus~.floating-label,
.input-field:not(:placeholder-shown)~.floating-label,
.input-field.has-value~.floating-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bento-gold);
    background: white;
    padding: 0 0.35rem;
    text-transform: uppercase;
}

/* Textarea Customization */
textarea.input-field {
    height: auto;
    min-height: 140px;
    padding-top: 1.25rem;
}

/* Custom Checkbox */
.form-check-input-custom {
    width: 19px;
    height: 19px;
    border: 1px solid rgba(194, 199, 206, 0.8);
    border-radius: 4px;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-color: #FFFFFF;
}

.form-check-input-custom:checked {
    background-color: var(--bento-navy-light);
    border-color: var(--bento-navy-light);
}

.form-check-input-custom:checked::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Primary Button */
.btn-primary-custom {
    padding: 16px 32px;
    background-color: var(--bento-navy);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-primary-custom:hover {
    background-color: var(--bento-navy-light);
    box-shadow: 0 8px 20px rgba(19, 66, 94, 0.25);
}

/* ── Premium Phone Callout Card ── */
.premium-callout-card {
    background: linear-gradient(135deg, var(--bento-navy) 0%, #0d283c 100%);
    color: #FFFFFF;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    width: 100%;
    box-shadow: 0 15px 35px -10px rgba(13, 40, 60, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.premium-callout-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0) 70%);
}

.premium-callout-card h4 {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.premium-callout-card p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.premium-callout-phone-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px 20px;
    border-radius: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.premium-callout-phone-btn:hover {
    background: var(--bento-gold);
    border-color: var(--bento-gold);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
    transform: translateY(-2px);
}

.premium-callout-phone-btn span.material-symbols-outlined {
    font-size: 24px;
}