/* ===================================
   DORUK HASTANELERI - MODERN ELEGANT FOOTER
   Inspired by Anadolu Sağlık Merkezi
   =================================== */

/* ===================================
   APP PROMOTION SECTION
   =================================== */

.app-promotion-section {
    background: #F8F9FA;
    padding: 30px 0;
    margin-top: 40px;
}

.app-promo-card {
    background: linear-gradient(135deg, #0B2C54 0%, #1E4D8B 100%);
    border-radius: 50px;
    padding: 30px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 44, 84, 0.2);
}

.app-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.app-promo-content {
    position: relative;
    z-index: 2;
}

.app-promo-label {
    display: inline-block;
    color: #FF6B35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.app-promo-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 20px;
}

.app-promo-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #00D4FF;
    color: #0B2C54;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
}

.btn-discover:hover {
    background: #00BFEA;
    color: #0B2C54;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
}

.btn-discover i {
    font-size: 20px;
}

.app-promo-stores {
    margin-top: 40px;
}

.stores-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 500;
}

.stores-buttons {
    display: flex;
    gap: 12px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.store-button i {
    font-size: 18px;
}

.app-promo-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-large {
    position: relative;
    max-width: 250px;
    margin: 0 auto;
}

.phone-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .app-promo-card {
        padding: 40px 30px;
    }

    .app-promo-title {
        font-size: 28px;
    }

    .app-promo-visual {
        margin-top: 40px;
    }

    .phone-mockup-large {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .app-promotion-section {
        padding: 40px 0;
        margin-top: 60px;
    }

    .app-promo-card {
        padding: 30px 20px;
    }

    .app-promo-title {
        font-size: 24px;
    }

    .stores-buttons {
        flex-direction: column;
    }

    .store-button {
        justify-content: center;
    }
}

/* ===================================
   MAIN FOOTER
   =================================== */
.doruk-footer-modern {
    background: linear-gradient(135deg, #0B2C54 0%, #1E4D8B 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Pattern */
.doruk-footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Content */
.footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Column Titles */
.footer-column-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.3px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

.footer-menu a:hover::before {
    width: 100%;
}

/* App Badges */
.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.app-badge i {
    font-size: 22px;
}

.app-badge div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-badge small {
    font-size: 9px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-badge strong {
    font-size: 13px;
    font-weight: 600;
}

/* Phone Mockup */
.footer-phone-mockup {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.phone-mockup-img {
    width: 100%;
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.phone-mockup-img:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Footer Bottom - Modern Layout */
.footer-bottom-modern {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 5px;
}

.footer-copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Social Media - Modern */
.footer-social-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label-modern {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons-modern {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons-modern a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social-icons-modern a:hover {
    background: #FFFFFF;
    color: #0B2C54;
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* App Buttons Bottom - Horizontal */
.footer-app-bottom {
    display: flex;
    gap: 10px;
    align-items: center;
}

.app-badge-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.app-badge-bottom:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.app-badge-bottom i {
    font-size: 20px;
}

.app-badge-bottom div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-badge-bottom small {
    font-size: 8px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-badge-bottom strong {
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-content {
        padding: 40px 0 30px;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand,
    .footer-social-modern,
    .footer-contact-modern {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .footer-contact-modern {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-content {
        padding: 30px 0 20px;
    }

    .footer-column-title {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-menu li {
        margin-bottom: 8px;
    }

    .footer-menu a {
        font-size: 12px;
    }

    .footer-bottom-modern {
        padding: 20px 0;
    }

    .social-icons-modern a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .footer-content {
        padding: 24px 0 16px;
    }

    .footer-logo {
        height: 32px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .contact-phone {
        font-size: 15px;
        padding: 7px 14px;
    }
}