/**
 * Bizimerdemli.com.tr - Premium Akdeniz Temalı Tasarım
 * 🌊 Mediterranean-inspired modern news portal
 */

/* ═══════════════════════════════════════════
   🎨 DESIGN TOKENS - Akdeniz Paleti
   ═══════════════════════════════════════════ */
:root {
    /* Akdeniz Renkleri */
    --akdeniz-deep: #0c4a6e;
    --akdeniz-sea: #0891b2;
    --akdeniz-sky: #22d3ee;
    --akdeniz-light: #ecfeff;
    --akdeniz-sand: #fef3c7;
    --akdeniz-sunset: #f59e0b;
    --akdeniz-coral: #f43f5e;
    --akdeniz-dark: #0f172a;
    --akdeniz-slate: #1e293b;

    /* Gradients */
    --gradient-sea: linear-gradient(135deg, #0c4a6e 0%, #0891b2 50%, #06b6d4 100%);
    --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #f43f5e 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(12, 74, 110, 0.12);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(12, 74, 110, 0.08);
    --shadow-md: 0 4px 16px rgba(12, 74, 110, 0.12);
    --shadow-lg: 0 8px 32px rgba(12, 74, 110, 0.16);
    --shadow-glow: 0 0 20px rgba(8, 145, 178, 0.3);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-gap: 2.5rem;

    /* Legacy compat */
    --primary-color: #0891b2;
    --secondary-color: #64748b;
    --danger-color: #f43f5e;
    --success-color: #10b981;
    --light-color: #f0fdfa;
}

/* ═══════════════════════════════════════════
   🌐 GLOBAL STYLES
   ═══════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: #1e293b;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 30%, #f8fafc 100%);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--akdeniz-dark);
}

a {
    color: var(--akdeniz-sea);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--akdeniz-deep);
}

img {
    max-width: 100%;
}

/* Card images must respect fixed height for object-fit: cover */
.card-img-top {
    width: 100% !important;
    object-fit: cover !important;
}

.headline-news .card-img-top {
    height: 450px;
}

.hover-lift .card-img-top,
.latest-news .card-img-top {
    height: 220px;
    object-position: center top;
}

.category-news .card-img-top,
.category-news .img-fluid {
    object-fit: cover !important;
}

::selection {
    background: var(--akdeniz-sky);
    color: var(--akdeniz-dark);
}

/* ═══════════════════════════════════════════
   🔝 TOP BAR
   ═══════════════════════════════════════════ */
.top-bar {
    background: var(--gradient-sea) !important;
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition);
}

.top-bar a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.top-bar small {
    color: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════
   🏠 HEADER / LOGO AREA
   ═══════════════════════════════════════════ */
.header {
    background: #fff;
    border-bottom: none !important;
    padding: 15px 0;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-sea);
}

.logo {
    max-height: 65px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.ad-space {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%) !important;
}

/* Search Form */
.search-form .form-control {
    border: 2px solid #e2e8f0;
    border-right: none;
    border-radius: 50px 0 0 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: #f8fafc;
}

.search-form .form-control:focus {
    border-color: var(--akdeniz-sea);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
    background: #fff;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 10px 20px;
    background: var(--gradient-sea);
    border: none;
    transition: var(--transition);
}

.search-form .btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ═══════════════════════════════════════════
   🧭 NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
    background: var(--gradient-sea) !important;
    box-shadow: var(--shadow-md);
    padding: 0;
    z-index: 1030;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 14px 10px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--akdeniz-sky);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link:hover::after {
    width: 70%;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
}

.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Son Dakika Ticker */
.urgent-ticker {
    max-width: 300px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgent-ticker .badge {
    background: var(--gradient-sunset) !important;
    font-size: 0.7rem;
    padding: 4px 8px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(244, 63, 94, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(244, 63, 94, 0.6);
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ═══════════════════════════════════════════
   📰 CARDS - Glass Effect
   ═══════════════════════════════════════════ */
.card {
    border: none;
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-img-top {
    border-radius: 16px 16px 0 0;
}

/* ═══════════════════════════════════════════
   ⭐ HEADLINE NEWS
   ═══════════════════════════════════════════ */
.headline-news .card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.headline-news .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(12, 74, 110, 0.2);
}

.headline-news .card-img-top {
    border-radius: 20px 20px 0 0;
    transition: var(--transition-slow);
    object-fit: cover;
}

.headline-news .card:hover .card-img-top {
    transform: scale(1.03);
}

.headline-news .badge {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* ═══════════════════════════════════════════
   📋 NEWS CARDS
   ═══════════════════════════════════════════ */
.hover-lift {
    transition: var(--transition);
    border-radius: 16px;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

.hover-lift:hover .card-img-top {
    transform: scale(1.05);
}

.hover-lift .card-img-top {
    transition: var(--transition-slow);
}

.hover-zoom img {
    transition: var(--transition-slow);
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

.hover-primary:hover {
    color: var(--akdeniz-sea) !important;
}

.hover-link {
    transition: var(--transition);
}

.hover-link:hover {
    padding-left: 8px;
    color: var(--akdeniz-sea) !important;
}

.hover-bg-light:hover {
    background: var(--akdeniz-light) !important;
    border-radius: 8px;
}

.card-title a {
    color: var(--akdeniz-dark);
    transition: var(--transition);
}

.card-title a:hover {
    color: var(--akdeniz-sea);
}

/* ═══════════════════════════════════════════
   📑 SECTION HEADERS
   ═══════════════════════════════════════════ */
.section-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--akdeniz-deep);
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-sea);
    border-radius: 2px;
}

.section-title i {
    color: var(--akdeniz-sea);
}

.sidebar-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--akdeniz-deep);
    padding-bottom: 12px;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-sea);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
   📊 SIDEBAR
   ═══════════════════════════════════════════ */
.most-viewed,
.categories-widget,
.social-buttons-widget,
.columnists-widget,
.yellow-pages-widget {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(8, 145, 178, 0.08);
}

/* ── Social Media Sidebar Buttons ── */
.social-btn {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff !important;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.2px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff !important;
    filter: brightness(1.1);
}

.social-btn-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bc4);
}

.social-btn-twitter {
    background: linear-gradient(135deg, #1d1d1d, #333);
}

.social-btn-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* ── Köşe Yazarları Widget ── */
.columnist-card {
    transition: var(--transition);
    border-radius: 10px !important;
    margin-bottom: 4px;
}

.columnist-card:hover {
    background: var(--akdeniz-light) !important;
    transform: translateX(4px);
}

/* ── Sarı Sayfalar Widget ── */
.yellow-page-card {
    transition: var(--transition);
    border-radius: 10px !important;
    margin-bottom: 4px;
}

.yellow-page-card:hover {
    background: #fffbeb !important;
    transform: translateX(4px);
}

.most-viewed .badge {
    background: var(--gradient-sunset) !important;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.list-group-item {
    border: none !important;
    padding: 10px 12px;
    border-radius: 8px !important;
    margin-bottom: 2px;
    transition: var(--transition);
}

.list-group-item:hover {
    background: var(--akdeniz-light) !important;
    transform: translateX(4px);
}

.categories-widget .badge {
    background: var(--akdeniz-sea) !important;
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 4px 10px;
}

/* ═══════════════════════════════════════════
   🔴 URGENT NEWS
   ═══════════════════════════════════════════ */
.urgent-news-section .alert {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%) !important;
    border-left: 5px solid var(--akdeniz-coral) !important;
    border-radius: 12px;
    padding: 20px;
}

.urgent-news-section .alert-heading {
    color: var(--akdeniz-coral);
    font-family: var(--font-primary);
}

/* ═══════════════════════════════════════════
   📰 NEWS DETAIL
   ═══════════════════════════════════════════ */
.news-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155;
}

.news-content p {
    margin-bottom: 1.5rem;
}

.news-content h2,
.news-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--akdeniz-deep);
}

.news-content a {
    color: var(--akdeniz-sea);
    border-bottom: 1px dashed var(--akdeniz-sea);
}

.news-content a:hover {
    color: var(--akdeniz-deep);
    border-bottom-style: solid;
}

.news-content blockquote {
    border-left: 4px solid var(--akdeniz-sea);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    color: #475569;
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
    border-radius: 0 12px 12px 0;
}

.news-content ul,
.news-content ol {
    margin-left: 30px;
    margin-bottom: 1.5rem;
}

.news-content li {
    margin-bottom: 10px;
}

.news-content .content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
}

.news-content .content-text table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.news-content .content-text table th,
.news-content .content-text table td {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
}

.news-content .content-text table th {
    background: var(--akdeniz-light);
    color: var(--akdeniz-deep);
    font-weight: 600;
}

.news-content .content-text table tr:hover {
    background: #f8fafc;
}

/* Social Share */
.social-share .btn {
    transition: var(--transition);
    border-radius: 10px;
    padding: 8px 16px;
}

.social-share .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════
   🏖️ FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--gradient-dark) !important;
    position: relative;
    overflow: hidden;
    padding-top: 4rem !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sea);
}

.footer::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230f172a' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,35 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

.footer h5 {
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px !important;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--akdeniz-sea);
    border-radius: 2px;
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--akdeniz-sky);
    padding-left: 5px;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition);
    font-size: 1rem;
}

.footer .social-links a:hover {
    background: var(--akdeniz-sea);
    border-color: var(--akdeniz-sea) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
    padding-left: 0;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px 0 0 8px;
    padding: 10px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--akdeniz-sea);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
    color: #fff;
}

.newsletter-form .btn {
    background: var(--akdeniz-sea);
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 10px 18px;
    transition: var(--transition);
}

.newsletter-form .btn:hover {
    background: var(--akdeniz-sky);
    box-shadow: var(--shadow-glow);
}

/* Footer Copyright */
.footer hr {
    border-color: rgba(255, 255, 255, 0.08) !important;
    margin: 30px 0 !important;
}

/* ═══════════════════════════════════════════
   ⬆️ SCROLL TO TOP
   ═══════════════════════════════════════════ */
#scrollToTop {
    background: var(--gradient-sea) !important;
    border: none !important;
    width: 50px;
    height: 50px;
    border-radius: 14px !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 1050;
}

#scrollToTop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ═══════════════════════════════════════════
   📄 PAGINATION
   ═══════════════════════════════════════════ */
.pagination {
    margin-top: 30px;
}

.pagination .page-link {
    color: var(--akdeniz-sea);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin: 0 3px;
    padding: 8px 14px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--akdeniz-sea);
    border-color: var(--akdeniz-sea);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pagination .active .page-link {
    background: var(--gradient-sea);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

/* ═══════════════════════════════════════════
   🔘 BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
    background: var(--gradient-sea) !important;
    border: none !important;
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 24px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow) !important;
    background: var(--gradient-sea) !important;
}

.btn-outline-primary {
    color: var(--akdeniz-sea);
    border-color: var(--akdeniz-sea);
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--akdeniz-sea);
    border-color: var(--akdeniz-sea);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.badge.bg-primary {
    background: var(--akdeniz-sea) !important;
}

.badge.bg-danger {
    background: var(--akdeniz-coral) !important;
}

/* ═══════════════════════════════════════════
   🎭 BADGES - Premium
   ═══════════════════════════════════════════ */
.badge {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 8px;
}

.badge.rounded-circle {
    font-size: 14px;
    font-weight: 700;
}

.badge.rounded-pill {
    border-radius: 20px;
}

/* ═══════════════════════════════════════════
   🌊 WAVE DIVIDER
   ═══════════════════════════════════════════ */
.wave-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.wave-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23f0fdfa' fill-opacity='0.6' d='M0,30 C240,50 480,10 720,30 C960,50 1200,10 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: cover;
}

/* ═══════════════════════════════════════════
   🎬 ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Category card gradient border */
.category-news .card {
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.category-news .card:hover {
    border-color: rgba(8, 145, 178, 0.3);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-sea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════
   📱 RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 992px) {
    .navbar .nav-link {
        padding: 10px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar .nav-link::after {
        display: none;
    }

    .top-bar .col-md-6:last-child {
        display: none;
    }

    .header .ad-space {
        display: none;
    }

    .urgent-ticker {
        display: none !important;
    }

    .headline-news img {
        height: 280px !important;
    }
}

@media (max-width: 576px) {
    .headline-news img {
        height: 200px !important;
    }

    .headline-news h2 {
        font-size: 1.2rem !important;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .card {
        border-radius: 12px;
    }

    .footer {
        text-align: center;
    }

    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .ad-space {
        min-height: 100px;
    }
}

/* ═══════════════════════════════════════════
   🖨️ PRINT STYLES
   ═══════════════════════════════════════════ */
@media print {

    .top-bar,
    .header,
    .navbar,
    .social-share,
    .comment-form,
    .sidebar,
    .footer,
    #scrollToTop,
    .ad-space,
    .urgent-ticker,
    .urgent-news-section {
        display: none !important;
    }

    .news-content {
        font-size: 14px;
    }

    body {
        background: #fff;
    }
}

/* ═══════════════════════════════════════════
   ✨ ALERT STYLES
   ═══════════════════════════════════════════ */
.alert {
    border-radius: 12px;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    color: #9f1239;
}

.alert-info {
    background: linear-gradient(135deg, #ecfeff, #cffafe);
    color: var(--akdeniz-deep);
}

/* ═══════════════════════════════════════════
   📝 FORMS
   ═══════════════════════════════════════════ */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 10px 16px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--akdeniz-sea);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15);
}

/* Mobil Navbar */
@media (max-width: 992px) {
    .navbar .nav-link {
        padding: 8px 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}