/**
 * Miltemizlik - Premium Inner Page Styles
 * Consistent design language across all pages
 */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    background: #0a0e1a;
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .page-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #67e8f9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-hero .page-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border-radius: 2px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 600px;
}

/* Breadcrumb in page hero */
.page-hero .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.page-hero .breadcrumb-item a:hover {
    color: #67e8f9;
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== PREMIUM CARDS ===== */
.card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.card-premium .card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-premium .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-premium:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-premium .card-img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 26, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-premium:hover .card-img-overlay-gradient {
    opacity: 1;
}

.card-premium .card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-premium .card-body .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-premium .card-body .card-text {
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Premium link */
.link-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.link-premium:hover {
    color: #8b5cf6;
    gap: 0.75rem;
}

/* ===== ICON CARD ===== */
.icon-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    height: 100%;
}

.icon-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.08);
}

.icon-card .icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.icon-card:hover .icon-box {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
}

/* ===== PREMIUM FORM ===== */
.form-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-premium .form-control,
.form-premium .form-select {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: var(--bg-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-premium .form-control:focus,
.form-premium .form-select:focus {
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-premium .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.btn-submit-premium {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    border: none;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.2);
}

.btn-submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.35);
    color: white;
}

/* ===== GALLERY PREMIUM ===== */
.gallery-item-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 280px;
}

.gallery-item-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-premium:hover img {
    transform: scale(1.1);
}

.gallery-item-premium .gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-premium:hover .gallery-hover {
    opacity: 1;
}

.gallery-item-premium .gallery-hover i {
    font-size: 2rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item-premium:hover .gallery-hover i {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item-premium .gallery-hover span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== FILTER BUTTONS ===== */
.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.2);
}

/* ===== SIDEBAR CARD ===== */
.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-card .sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-3px);
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #06b6d4;
}

.contact-info-card .info-content h6 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-info-card .info-content p,
.contact-info-card .info-content a {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    text-decoration: none;
}

.contact-info-card .info-content a:hover {
    color: #06b6d4;
}

/* ===== BLOG CARD PREMIUM ===== */
.blog-card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
}

.blog-card-premium .blog-img {
    height: 220px;
    overflow: hidden;
}

.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.75rem;
}

.blog-card-premium .blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-card-premium .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-card-premium .blog-meta i {
    color: #06b6d4;
}

.blog-card-premium .blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-premium .blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== APPOINTMENT STEPS ===== */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.step-indicator .step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-indicator .step-text {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ===== SHARE BUTTONS ===== */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    background: var(--card-bg);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

/* ===== PREMIUM PAGINATION ===== */
.pagination-premium .page-link {
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    padding: 0.6rem 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 3px;
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.pagination-premium .page-link:hover,
.pagination-premium .page-item.active .page-link {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-hero {
        padding: 5rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .form-premium {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .gallery-item-premium {
        height: 220px;
    }

    .contact-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}