/**
 * Miltemizlik - Premium Homepage Styles
 * Unique, modern design that stands out
 */

/* ===== HERO REIMAGINED ===== */
.hero-section-modern {
    background: #0a0e1a !important;
}

.hero-section-modern .hero-overlay {
    background: linear-gradient(135deg,
            rgba(10, 14, 26, 0.55) 0%,
            rgba(15, 23, 42, 0.65) 40%,
            rgba(6, 182, 212, 0.25) 100%) !important;
}

.hero-content-modern .container {
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    color: #67e8f9;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-tag .pulse-dot {
    width: 8px;
    height: 8px;
    background: #06b6d4;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    letter-spacing: -2px !important;
    margin-bottom: 1.5rem !important;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #06b6d4, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.8 !important;
    max-width: 560px !important;
}

.hero-buttons {
    gap: 1rem !important;
}

.btn-hero-glow {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white !important;
    font-weight: 700;
    padding: 1rem 2.25rem;
    border-radius: 14px;
    font-size: 1.05rem;
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3), 0 0 60px rgba(139, 92, 246, 0.15);
}

.btn-hero-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.5), 0 0 80px rgba(139, 92, 246, 0.25);
    color: white !important;
}

.btn-hero-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
    font-weight: 600;
    padding: 1rem 2.25rem;
    border-radius: 14px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white !important;
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-number span {
    background: linear-gradient(135deg, #06b6d4, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Hero floating badge */
.hero-floating-badge {
    position: absolute;
    right: 0;
    bottom: 15%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    color: white;
    animation: floatBadge 6s ease-in-out infinite;
    z-index: 5;
    display: none;
}

@media (min-width: 1200px) {
    .hero-floating-badge {
        display: block;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-floating-badge .badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.hero-floating-badge .badge-text {
    font-weight: 700;
    font-size: 1rem;
}

.hero-floating-badge .badge-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== TRUST BANNER ===== */
.trust-banner {
    background: var(--card-bg);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

[data-theme="dark"] .trust-banner {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.05);
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.5rem;
    color: #06b6d4;
}

/* ===== SERVICES REIMAGINED ===== */
.services-premium {
    background: var(--bg-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header-v2 {
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border-radius: 2px;
}

.section-title-v2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-desc-v2 {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

/* Service Card V2 */
.service-card-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card-v2:hover {
    transform: translateY(-10px);
}

.service-card-v2 .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.service-card-v2:hover .card-bg {
    transform: scale(1.08);
}

.service-card-v2 .card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 20%,
            rgba(10, 14, 26, 0.4) 50%,
            rgba(10, 14, 26, 0.92) 100%);
    transition: all 0.4s ease;
}

.service-card-v2:hover .card-gradient {
    background: linear-gradient(180deg,
            transparent 10%,
            rgba(10, 14, 26, 0.3) 40%,
            rgba(10, 14, 26, 0.95) 100%);
}

.service-card-v2 .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.service-card-v2 .card-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    z-index: 3;
}

.service-card-v2 .card-title-v2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-card-v2 .card-desc-v2 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-v2 .card-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #67e8f9;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card-v2:hover .card-link-v2 {
    opacity: 1;
    transform: translateY(0);
}

.service-card-v2 .card-link-v2:hover {
    color: white;
}

/* Service card with icon (no image) */
.service-card-v2.no-image {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.service-card-v2.no-image .card-gradient {
    display: none;
}

.service-card-v2.no-image .card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--text-color);
}

.service-card-v2.no-image .card-icon-v2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-v2.no-image .card-title-v2 {
    color: var(--text-color);
}

.service-card-v2.no-image .card-desc-v2 {
    color: var(--text-muted);
}

.service-card-v2.no-image .card-link-v2 {
    color: #06b6d4;
}

.service-card-v2.no-image:hover {
    border-color: #06b6d4;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.1);
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 6rem 0;
    background: #0a0e1a;
    position: relative;
    overflow: hidden;
    color: white;
}

[data-theme="dark"] .why-us-section {
    background: #070a12;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
}

.why-us-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.why-us-card:last-child {
    border-right: none;
}

.why-us-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us-card:hover::before {
    opacity: 1;
}

.why-us-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #67e8f9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.why-us-card:hover .card-icon {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.why-us-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.why-us-card .card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* ===== STATS COUNTER ===== */
.stats-section {
    padding: 5rem 0;
    background: var(--bg-color);
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #06b6d4;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== CTA REIMAGINED ===== */
.cta-premium {
    padding: 6rem 0;
    background: var(--bg-color);
    position: relative;
}

.cta-premium-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    border-radius: 28px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.cta-premium-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-premium-box .cta-content {
    position: relative;
    z-index: 2;
}

.cta-premium-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-premium-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-premium-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-glow {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1.05rem;
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.25);
}

.btn-cta-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.4);
    color: white;
}

.btn-cta-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateY(-2px);
}

/* ===== REGIONS V2 ===== */
.regions-premium {
    padding: 6rem 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.region-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.region-chip:hover {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.region-chip i {
    font-size: 1rem;
    color: #06b6d4;
    transition: color 0.3s;
}

.region-chip:hover i {
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-card:nth-child(2) {
        border-right: none;
    }

    .why-us-card:nth-child(1),
    .why-us-card:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .hero-stats {
        gap: 2rem;
    }

    .cta-premium-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-stat-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .trust-items {
        gap: 1.5rem;
    }

    .service-card-v2 {
        height: 320px;
    }

    .cta-premium-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .why-us-card:last-child {
        border-bottom: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch !important;
    }

    .btn-hero-glow,
    .btn-hero-glass {
        justify-content: center;
    }
}

/* ===== BLOG CARDS PREMIUM ===== */
.blog-card-premium {
    background: var(--card-bg, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.blog-card-premium .blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-premium .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-premium:hover .blog-img img {
    transform: scale(1.08);
}

.blog-card-premium .blog-body {
    padding: 1.5rem;
}

.blog-card-premium .blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
}

.blog-card-premium .blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-premium .blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color, #fff);
    margin-bottom: 0.75rem;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-title {
    color: #06b6d4;
}

.blog-card-premium .blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted, #94a3b8);
    line-clamp: 3;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-card-premium .link-premium {
    font-size: 0.88rem;
    font-weight: 600;
    color: #06b6d4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-premium .link-premium i {
    transition: transform 0.3s ease;
}

.blog-card-premium:hover .link-premium i {
    transform: translateX(5px);
}

/* Step indicators for appointment page */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--card-bg, rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
}

.step-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.step-text {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-color, #fff);
}