/* Inner Pages Specific Styling */

.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--white); }
.text-large { font-size: 18px; line-height: 1.8; color: var(--text-light); }
.text-primary { color: var(--primary-color); }
.border-bottom { border-bottom: 1px solid rgba(0,0,0,0.05); }

/* ============================================================
   INNER HERO — Split Layout Redesign
   ============================================================ */

.inner-hero {
    position: relative;
    min-height: 88vh;
    background: linear-gradient(135deg, #001f4d 0%, #003a87 50%, #004a99 100%);
    color: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Animated Particles --- */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hp {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    animation: hpFloat 12s ease-in-out infinite;
}

.hp1  { width: 220px; height: 220px; top: -70px;  left: -70px;  animation-duration: 14s; animation-delay: 0s; }
.hp2  { width: 120px; height: 120px; top: 15%;    right: 4%;    animation-duration: 11s; animation-delay: 1.5s; }
.hp3  { width:  70px; height:  70px; bottom: 22%; left: 8%;     animation-duration: 9s;  animation-delay: 3s; }
.hp4  { width: 280px; height: 280px; top: 35%;    right: -90px; animation-duration: 16s; animation-delay: 2s;   background: rgba(252,163,17,0.05); }
.hp5  { width:  45px; height:  45px; top: 65%;    left: 28%;    animation-duration: 8s;  animation-delay: 4s; }
.hp6  { width: 140px; height: 140px; bottom: 8%;  right: 18%;   animation-duration: 12s; animation-delay: 0.5s; }
.hp7  { width:  55px; height:  55px; top: 12%;    left: 38%;    animation-duration: 7s;  animation-delay: 2.5s; }
.hp8  { width:  85px; height:  85px; top: 48%;    left: 52%;    animation-duration: 13s; animation-delay: 1s;   background: rgba(252,163,17,0.04); }

@keyframes hpFloat {
    0%, 100% { transform: translateY(0)    scale(1);    opacity: 0.6; }
    50%       { transform: translateY(-28px) scale(1.06); opacity: 1; }
}

/* --- Gold Glow Blob --- */
.hero-blob {
    position: absolute;
    top: -180px;
    right: -80px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252,163,17,0.10) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 9s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1);    opacity: 0.7; }
    50%       { transform: scale(1.12); opacity: 1; }
}

/* --- Hero Grid --- */
.inner-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 155px 0 170px;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* --- Left: Content --- */
.inner-hero-content {
    position: relative;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.hero-badge-pill i {
    color: var(--accent-color);
    font-size: 14px;
}

.inner-hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 24px;
}

.inner-hero-title .accent-word {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.inner-hero-title .accent-word::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    opacity: 0.35;
    border-radius: 2px;
}

.inner-hero-desc {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    max-width: 510px;
    margin-bottom: 36px;
    font-weight: 300;
}

/* --- CTA Group --- */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.btn-hero-phone:hover { color: var(--accent-color); }

.phone-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-hero-phone:hover .phone-icon-wrap {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.phone-text small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.65;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.phone-text {
    font-size: 16px;
    line-height: 1.3;
}

/* --- Trust Strip --- */
.hero-trust-strip {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.trust-stat {
    display: flex;
    flex-direction: column;
}

.trust-stat strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.trust-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.18);
}

/* --- Right: Visual --- */
.inner-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Pulse rings */
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.10);
    top: 50%;
    left: 50%;
    pointer-events: none;
    animation: ringPulse 7s ease-in-out infinite;
}

.ring-1 {
    width: 370px;
    height: 370px;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ring-2 {
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    border-color: rgba(255,255,255,0.05);
    animation-delay: 1.2s;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.8; }
    50%       { transform: translate(-50%,-50%) scale(1.04); opacity: 1; }
}

.hero-img-container {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.hero-main-img {
    width: 100%;
    height: auto;
    max-width: 430px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 24px 44px rgba(0,0,0,0.32));
}

/* Floating Stat Cards */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0,20,80,0.18);
    z-index: 5;
    min-width: 165px;
    animation: hfcFloat 5s ease-in-out infinite;
}

.hero-float-card.card-top-left {
    top: 6%;
    left: -18px;
    animation-delay: 0s;
}

.hero-float-card.card-bottom-right {
    bottom: 8%;
    right: -18px;
    animation-delay: 1.8s;
}

@keyframes hfcFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.hfc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0,74,153,0.10);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.hfc-icon.accent {
    background: rgba(252,163,17,0.12);
    color: var(--accent-color);
}

.hfc-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

.hfc-text span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Wave Transition --- */
.wave-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.wave-shape svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   INNER HERO — Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .inner-hero-grid {
        grid-template-columns: 1fr;
        padding: 140px 0 185px;
        text-align: center;
    }

    .inner-hero-content { order: 1; }
    .inner-hero-visual  { order: 2; }

    .inner-hero-title { font-size: 44px; }

    .inner-hero-desc { margin-left: auto; margin-right: auto; }

    .hero-cta-group    { justify-content: center; }
    .hero-trust-strip  { justify-content: center; }

    .hero-visual-wrapper { max-width: 360px; }

    .hero-float-card.card-top-left    { left: 0; }
    .hero-float-card.card-bottom-right{ right: 0; }
}

@media (max-width: 768px) {
    .inner-hero { min-height: auto; }

    .inner-hero-grid { padding: 120px 0 165px; gap: 30px; }

    .inner-hero-title {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero-visual-wrapper { max-width: 270px; }

    .ring-1 { width: 250px; height: 250px; }
    .ring-2 { width: 330px; height: 330px; }

    .hero-trust-strip { gap: 18px; }
    .trust-stat strong { font-size: 22px; }

    .hero-float-card { min-width: 140px; padding: 11px 14px; }
    .hero-float-card.card-top-left    { left: -5px; }
    .hero-float-card.card-bottom-right{ right: -5px; }
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.gap-50 {
    gap: 50px;
}

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-list li i {
    color: var(--primary-color);
    background: rgba(0, 74, 153, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* Zig Zag Rows */
.zig-zag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zig-zag-row.reverse .row-content {
    order: 2;
}

.zig-zag-row.reverse .row-image {
    order: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 74, 153, 0.2);
}

.row-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.row-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.detail-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}

.vector-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.w-80 {
    width: 80%;
}

.illustration-box {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02);
}

/* Float Animation for Images */
.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-btn i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fafafa;
}

.faq-content p {
    padding: 0 25px 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .grid-2, .zig-zag-row {
        grid-template-columns: 1fr;
    }
    
    .zig-zag-row.reverse .row-content {
        order: 1;
    }
    
    .zig-zag-row.reverse .row-image {
        order: 2;
    }
    
    .inner-hero h1 {
        font-size: 40px;
    }
    
    .row-image {
        margin-top: 30px;
    }
}

/* ============================================================
   HEALTH QUIZ SECTION
   ============================================================ */

.health-quiz-section {
    position: relative;
    z-index: 10;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    padding: 50px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.quiz-btn {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.quiz-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 74, 153, 0.05);
    transform: translateY(-2px);
}

.quiz-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--bg-light);
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.4s ease;
}

/* Circular Chart */
.circular-chart-container {
    width: 150px;
    margin: 0 auto 20px;
}

.circular-chart-svg {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: var(--bg-light);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke: var(--accent-color);
    transition: stroke-dasharray 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.percentage {
    fill: var(--primary-dark);
    font-family: inherit;
    font-weight: 800;
    font-size: 8px;
    text-anchor: middle;
}

.result-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.result-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.result-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 74, 153, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 74, 153, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 74, 153, 0); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .quiz-container {
        padding: 40px 20px;
    }
    .quiz-step h3 {
        font-size: 20px;
    }
}

/* ============================================================
   COVERAGE MAP SECTION (Teminat Keşif Haritası)
   ============================================================ */

.coverage-map-section {
    position: relative;
    z-index: 10;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 74, 153, 0.06);
}

.map-visual-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.human-map-svg {
    max-width: 100%;
    height: auto;
}

/* Hotspots */
.hotspot {
    cursor: pointer;
}

.hotspot:hover .hotspot-core {
    transform: scale(1.5);
}

.hotspot-core {
    fill: var(--primary-color);
    transition: var(--transition);
}

.hotspot-pulse {
    fill: rgba(0, 74, 153, 0.2);
    animation: hotspotPulse 2s infinite;
}

.hotspot.active .hotspot-core {
    fill: var(--accent-color);
}

.hotspot.active .hotspot-pulse {
    fill: rgba(252, 163, 17, 0.3);
    animation: hotspotPulse 1.5s infinite;
}

@keyframes hotspotPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Info Panel */
.map-info-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info-panel {
    position: relative;
    min-height: 250px;
}

.map-info-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
}

.map-info-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-info-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.map-info-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Maps */
@media (max-width: 768px) {
    .map-grid {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }
    
    .map-info-panel {
        min-height: auto;
    }
    
    .map-info-item {
        padding: 20px;
    }
}
