/* ============================================
   ZUNAPRO COUNTRY PAGES STYLESHEET
   ============================================ */

.min-vh-60 { min-height: 60vh; }

/* Hero Section */
.country-hero {
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.country-hero-small {
    padding: 100px 0 30px;
}
.country-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 8px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(5px);
}
.flag-large {
    font-size: 22px;
}
.country-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.2;
    margin-bottom: 15px;
}
.country-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95) !important;
    font-weight: 500;
    margin-bottom: 10px;
}
.country-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.7;
    max-width: 600px;
}
.hero-buttons .btn {
    border-radius: 30px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
}
.hero-buttons .btn-light {
    background: #fff;
    color: #7b2fbe;
    border: none;
}
.hero-buttons .btn-light:hover {
    background: #f0e6ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 350px;
}
.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
}
.floating-card .card-icon {
    font-size: 24px;
}
.card-1 { top: 10%; left: 5%; animation-delay: 0s; }
.card-2 { top: 30%; right: 5%; animation-delay: 1s; }
.card-3 { top: 55%; left: 10%; animation-delay: 2s; }
.card-4 { top: 75%; right: 10%; animation-delay: 0.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Language Pills */
.country-lang-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.2s ease;
}
.lang-pill:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
}
.lang-pill.active {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* Sections */
.country-section {
    padding: 60px 0;
}
.country-section.bg-light {
    background-color: #f8f5fc !important;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
    padding-left: 50px;
}
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 25px;
    bottom: 25px;
    width: 2px;
    background: linear-gradient(to bottom, #923ebe, #cb33bd);
}
.step-item {
    position: relative;
    margin-bottom: 35px;
    padding-left: 30px;
}
.step-number {
    position: absolute;
    left: -50px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(146, 62, 190, 0.3);
}
.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}
.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #923ebe, #cb33bd);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}
.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}
.service-features {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}
.service-features li {
    padding: 4px 0;
    color: #555;
    font-size: 0.85rem;
}
.service-features li::before {
    content: '✓ ';
    color: #923ebe;
    font-weight: 700;
}

/* Info Cards */
.info-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.info-card-header {
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.info-icon {
    font-size: 28px;
}
.info-card-header h3 {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.info-card-body {
    padding: 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}
.info-card-body ul {
    padding-left: 18px;
    margin: 0;
}
.info-card-body li {
    margin-bottom: 6px;
}
.info-card-body strong {
    color: #333;
}

/* Marketplace Badges */
.marketplace-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin: 4px;
}

/* Why Zunapro */
.reason-card {
    padding: 25px 15px;
}
.reason-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.reason-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}
.reason-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.blog-card-body {
    padding: 20px;
    flex: 1;
}
.blog-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card h3, .blog-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 8px 0;
    line-height: 1.4;
}
.blog-card h3 a, .blog-card h4 a {
    color: #2c3e50;
    text-decoration: none;
}
.blog-card h3 a:hover, .blog-card h4 a:hover {
    color: #923ebe;
}
.blog-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}
.blog-card-footer {
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
}
.read-more-link {
    color: #923ebe;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}
.read-more-link:hover {
    color: #7b2fbe;
    text-decoration: none;
}

/* Blog Article */
.blog-article {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}
.blog-article h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 30px 0 15px;
}
.blog-article h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 25px 0 12px;
}
.blog-article p {
    margin-bottom: 16px;
}
.blog-article ul, .blog-article ol {
    margin-bottom: 16px;
    padding-left: 25px;
}
.blog-article li {
    margin-bottom: 6px;
}
.blog-article blockquote {
    border-left: 4px solid #923ebe;
    padding: 15px 20px;
    background: #f8f5fc;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Blog Sidebar */
.blog-sidebar {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}
.blog-sidebar h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #923ebe;
}
.related-blog-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.related-blog-item:last-child {
    border-bottom: none;
}
.related-blog-item a {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.related-blog-item a:hover {
    color: #923ebe;
}
.sidebar-cta {
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
}
.sidebar-cta h5 {
    color: #fff;
    font-weight: 700;
}
.sidebar-cta p {
    color: rgba(255,255,255,0.85);
}
.sidebar-cta .btn-primary {
    background: #fff;
    color: #923ebe;
    border: none;
    font-weight: 600;
}
.sidebar-cta .btn-primary:hover {
    background: #f0e6ff;
}

/* Contact Form */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.contact-form-card label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.contact-form-card .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.contact-form-card .form-control:focus {
    border-color: #923ebe;
    box-shadow: 0 0 0 3px rgba(146, 62, 190, 0.15);
}
.contact-form-card .btn-primary {
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    padding: 14px 40px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.contact-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(146, 62, 190, 0.3);
}

/* Country Links (kept for backward compatibility) */
.country-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 4px;
}
.country-card-link:hover {
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    color: #fff;
    border-color: transparent;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(146, 62, 190, 0.3);
}
.country-flag {
    font-size: 20px;
}

/* Location Product Cards (Lokasyonlarımız - premium design) */
#other-countries {
    background: linear-gradient(180deg, #f8f6fb 0%, #fdfcff 100%);
    padding: 60px 0 70px;
}
#other-countries .section-title {
    color: #7b2fbe;
    background: linear-gradient(135deg, #6b2d8a, #923ebe, #cb33bd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.location-cards-row {
    row-gap: 1.5rem;
}
.location-product-card {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.location-card-inner {
    background: linear-gradient(145deg, #ffffff 0%, #faf9fc 100%);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    min-height: 180px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(146, 62, 190, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(146, 62, 190, 0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.location-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #923ebe, #cb33bd, #e056fd);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.location-product-card:hover .location-card-inner {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(146, 62, 190, 0.15), 0 12px 24px rgba(0,0,0,0.08);
    border-color: rgba(146, 62, 190, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #fff9fe 100%);
}
.location-product-card:hover .location-card-inner::before {
    transform: scaleX(1);
}
.location-product-card:hover .location-card-flag {
    transform: scale(1.15);
}
.location-product-card:hover .location-card-title {
    color: #7b2fbe;
}
.location-product-card:hover .location-card-cta {
    color: #923ebe;
    letter-spacing: 0.02em;
}
.location-card-flag {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(146, 62, 190, 0.06), rgba(203, 51, 189, 0.04));
    border-radius: 18px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.location-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}
.location-card-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

/* Geolocation Modal */
.geo-modal-content {
    border-radius: 20px;
    overflow: hidden;
}
.geo-modal-title {
    font-weight: 700;
    color: #2c3e50;
}
.geo-modal-flag {
    font-size: 48px;
}
.geo-modal-text {
    font-size: 1rem;
    color: #555;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 0;
    padding: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .country-hero {
        padding: 100px 0 40px;
    }
    .country-hero-title {
        font-size: 1.8rem;
    }
    .country-hero-subtitle {
        font-size: 1.05rem;
    }
    .country-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .contact-form-card {
        padding: 25px 20px;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    .steps-timeline {
        padding-left: 40px;
    }
    .steps-timeline::before {
        left: 17px;
    }
    .step-number {
        left: -40px;
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    .min-vh-60 {
        min-height: auto !important;
    }
    .location-card-inner {
        padding: 24px 20px;
        min-height: 150px;
    }
    .location-card-flag {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

/* Gap utility for older Bootstrap */
.gap-2 { gap: 8px; }
.gap-3 { gap: 16px; }

/* ============================================
   PREMIUM ENHANCEMENTS v2.0
   ============================================ */

/* Enhanced Blog Cards with gradient accent */
.blog-card {
    position: relative;
    overflow: hidden;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #923ebe, #cb33bd, #e056fd);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.blog-card:hover::before {
    transform: scaleX(1);
}

/* Blog card category tag */
.blog-card-tag {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(146,62,190,0.1), rgba(203,51,189,0.1));
    color: #923ebe;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Enhanced Article Typography */
.blog-article {
    max-width: 720px;
}
.blog-article h2:first-child {
    margin-top: 0;
}
.blog-article h2 {
    position: relative;
    padding-bottom: 12px;
}
.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #923ebe, #cb33bd);
    border-radius: 3px;
}
.blog-article strong {
    color: #2c3e50;
}
.blog-article ul li,
.blog-article ol li {
    line-height: 1.8;
}
.blog-article a {
    color: #923ebe;
    text-decoration: underline;
    text-decoration-color: rgba(146,62,190,0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.blog-article a:hover {
    text-decoration-color: #923ebe;
}

/* Premium Info Cards Enhancement */
.info-card {
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Service Card Enhancement */
.service-card {
    background: linear-gradient(180deg, #fff 0%, #fdfcff 100%);
}

/* Premium Contact Form */
.contact-form-card {
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #923ebe, #cb33bd, #e056fd);
}

/* Hero Enhancement - subtle pattern */
.country-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05));
    pointer-events: none;
}

/* Reason cards hover effect */
.reason-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.reason-card:hover {
    background: #fff;
    border-color: #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

/* Blog section title decoration */
#blog .section-title::after,
#services .section-title::after,
#why-zunapro .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #923ebe, #cb33bd);
    margin: 12px auto 0;
    border-radius: 3px;
}

/* Share buttons premium style */
.blog-share .btn-outline-primary {
    border-radius: 20px;
    font-size: 13px;
    padding: 6px 16px;
    border-color: #ddd;
    color: #666;
    transition: all 0.3s ease;
}
.blog-share .btn-outline-primary:hover {
    background: linear-gradient(135deg, #923ebe, #cb33bd);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146,62,190,0.25);
}

/* Animated counter badges for marketplace */
.marketplace-badges h4 {
    font-weight: 700;
    color: #2c3e50;
}
.marketplace-badge {
    transition: all 0.3s ease;
}
.marketplace-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(146,62,190,0.25);
}

/* Premium scrollbar for sidebar */
.blog-sidebar::-webkit-scrollbar {
    width: 4px;
}
.blog-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.blog-sidebar::-webkit-scrollbar-thumb {
    background: #923ebe;
    border-radius: 2px;
}

/* Print styles for blog articles */
@media print {
    .country-hero, .blog-sidebar, .blog-share,
    #other-countries, .sidebar-cta, nav { display: none !important; }
    .blog-article { max-width: 100%; font-size: 12pt; }
    .col-lg-8 { flex: 0 0 100%; max-width: 100%; }
}

/* Smooth scroll for anchor links */
html { scroll-behavior: smooth; }

/* Focus styles for accessibility */
.blog-card a:focus,
.service-card:focus-within,
.location-product-card:focus {
    outline: 2px solid #923ebe;
    outline-offset: 2px;
    border-radius: 8px;
}

/* Selection color */
::selection {
    background: rgba(146,62,190,0.15);
    color: #2c3e50;
}
