/* ==================== SHARED STYLES ==================== */
:root {
    --primary: #e63946;
    --primary-dark: #d62839;
    --secondary: #1d3557;
    --accent: #f4a261;
    --dark: #0d1b2a;
    --gray: #6c757d;
    --light: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #e63946 0%, #f4a261 100%);
    --gradient-2: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    --gradient-3: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f2f5;
    color: var(--dark);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* Container */
.container {
    max-width: 1600px !important;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1560px !important;
    }
}

/* ==================== HEADER STYLES ==================== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-date {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-date i {
    color: var(--primary);
}

.header-weather {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
}

.header-weather i {
    color: #f59e0b;
    font-size: 16px;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-link {
    color: var(--gray);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.header-top-link:hover {
    color: var(--primary);
}

.header-top-separator {
    color: #ddd;
    margin: 0 5px;
    font-size: 10px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    padding-left: 15px;
    border-left: 1px solid #e5e7eb;
}

.header-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.2s;
}

.header-social a:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 991px) {
    .header-top {
        display: none;
    }
}

.header-main {
    padding: 20px 0;
}

.logo {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
}

.logo span {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modules Dropdown */
.modules-dropdown {
    position: relative;
}

.modules-btn {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 12px 24px;
    border-radius: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modules-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.modules-btn:hover::before {
    left: 100%;
}

.modules-btn.modules-btn-icon {
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}

.modules-btn.modules-btn-icon svg {
    transition: transform 0.3s ease;
}

.modules-btn.modules-btn-icon:hover svg {
    transform: rotate(90deg);
}

.modules-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 41, 59, 0.4);
    border-color: rgba(255,255,255,0.2);
}

.modules-btn svg {
    flex-shrink: 0;
}

.modules-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    margin-top: 15px;
    overflow: hidden;
    transform: translateY(10px);
}

.modules-dropdown:hover .modules-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
    transform: translateY(0);
}

.modules-menu.modules-menu-grid {
    width: 420px;
}

.modules-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 18px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1e293b;
}

.modules-menu-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 18px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modules-menu-header::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 15px;
}

.modules-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s;
    color: var(--dark);
    text-align: center;
}

.modules-grid a:hover {
    background: var(--light);
    transform: translateY(-3px);
}

.modules-grid a i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    color: #fff;
}

.modules-grid a span {
    font-weight: 500;
    font-size: 12px;
}

/* Module Icon Colors - using higher specificity to override fallback */
.modules-grid a i.mod-icon-doviz { background: linear-gradient(135deg, #11998e, #38ef7d); }
.modules-grid a i.mod-icon-kripto { background: linear-gradient(135deg, #f7931a, #ffab00); }
.modules-grid a i.mod-icon-emtia { background: linear-gradient(135deg, #4b6cb7, #182848); }
.modules-grid a i.mod-icon-deprem { background: linear-gradient(135deg, #eb3349, #f45c43); }
.modules-grid a i.mod-icon-hava { background: linear-gradient(135deg, #2193b0, #6dd5ed); }
.modules-grid a i.mod-icon-namaz { background: linear-gradient(135deg, #614385, #516395); }
.modules-grid a i.mod-icon-mac { background: linear-gradient(135deg, #56ab2f, #a8e063); }
.modules-grid a i.mod-icon-maclar { background: linear-gradient(135deg, #56ab2f, #a8e063); }
.modules-grid a i.mod-icon-puan { background: linear-gradient(135deg, #f2994a, #f2c94c); }
.modules-grid a i.mod-icon-puan-durumu { background: linear-gradient(135deg, #f2994a, #f2c94c); }
.modules-grid a i.mod-icon-tv { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.modules-grid a i.mod-icon-canli-tv { background: linear-gradient(135deg, #e63946, #dc2626); }
.modules-grid a i.mod-icon-gazete { background: linear-gradient(135deg, #373b44, #4286f4); }
.modules-grid a i.mod-icon-eczane { background: linear-gradient(135deg, #00b09b, #96c93d); }
.modules-grid a i.mod-icon-yol { background: linear-gradient(135deg, #636363, #a2ab58); }
.modules-grid a i.mod-icon-burc { background: linear-gradient(135deg, #c33764, #1d2671); }
.modules-grid a i.mod-icon-video { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
.modules-grid a i.mod-icon-foto { background: linear-gradient(135deg, #11998e, #38ef7d); }
.modules-grid a i.mod-icon-yazar { background: linear-gradient(135deg, #834d9b, #d04ed6); }
.modules-grid a i.mod-icon-yazarlar { background: linear-gradient(135deg, #667eea, #764ba2); }
.modules-grid a i.mod-icon-biyo { background: linear-gradient(135deg, #525252, #3d72b4); }
.modules-grid a i.mod-icon-biyografi { background: linear-gradient(135deg, #764ba2, #667eea); }
.modules-grid a i.mod-icon-biyografiler { background: linear-gradient(135deg, #764ba2, #667eea); }
.modules-grid a i.mod-icon-firma { background: linear-gradient(135deg, #403a3e, #be5869); }
.modules-grid a i.mod-icon-haber { background: linear-gradient(135deg, #e63946, #f4a261); }
.modules-grid a i.mod-icon-galeri { background: linear-gradient(135deg, #11998e, #38ef7d); }

/* Fallback for icons without specific background */
.modules-grid a i {
    background: linear-gradient(135deg, #667eea, #764ba2); /* Default fallback */
}

/* Search */
.search-wrapper {
    position: relative;
}

.search-wrapper input {
    width: 250px;
    padding: 12px 50px 12px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    width: 300px;
}

.search-wrapper button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-1);
    border: none;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.search-wrapper button:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ==================== MEGA MENU ==================== */
.mega-nav {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mega-nav .container {
    position: relative;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 15px 0;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.nav-list > li > a i {
    font-size: 12px;
    opacity: 0.7;
}

.nav-list > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
    border-radius: 3px 3px 0 0;
}

.nav-list > li:hover > a {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-list > li:hover > a::before {
    width: 100%;
}

.nav-list > li.active > a::before {
    width: 100%;
}

.nav-list > li.active > a {
    color: #fff;
}

.nav-list > li.highlight > a {
    background: linear-gradient(135deg, var(--primary), #dc2626);
    color: #fff;
    border-radius: 8px;
    margin: 5px 0;
    padding: 12px 20px;
}

.nav-list > li.highlight > a::before {
    display: none;
}

.nav-list > li.highlight > a i {
    animation: pulse 1.5s infinite;
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
}

.nav-service-btn:hover, .nav-service-btn.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.nav-service-btn.live {
    background: var(--primary);
    color: #fff;
}

.nav-service-btn.live i {
    animation: blink 1s infinite;
}

/* Canlı TV Butonu */
.nav-live-btn {
    background: linear-gradient(135deg, #e63946 0%, #dc2626 100%);
    color: #fff !important;
    position: relative;
    padding-left: 24px !important;
}

.nav-live-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.nav-live-btn .live-dot {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@media (max-width: 1200px) {
    .nav-list > li > a {
        padding: 16px 12px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        flex-direction: column;
        padding: 15px;
        gap: 0;
        display: none;
        z-index: 1000;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list > li > a {
        padding: 12px 15px;
        border-radius: 8px;
    }

    .nav-list > li.highlight {
        order: -1;
        margin-bottom: 10px;
    }

    .nav-right {
        display: none;
    }
}

/* ==================== FOOTER STYLES ==================== */
.main-footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #fff;
    margin-top: 0;
}

/* Footer Top - App Download */
.footer-top {
    background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.footer-app-content {
    position: relative;
    z-index: 1;
}

.footer-app-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-app-desc {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s;
}

.app-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #fff;
}

.app-btn i {
    font-size: 28px;
}

.app-btn-text {
    text-align: left;
}

.app-btn-small {
    font-size: 10px;
    opacity: 0.8;
    display: block;
    line-height: 1;
}

.app-btn-large {
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

.footer-app-image {
    position: relative;
    z-index: 1;
    text-align: right;
}

.footer-app-image img {
    max-height: 200px;
}

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--primary);
    width: 18px;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
}

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

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

.footer-copyright a {
    color: var(--primary);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main .row > div {
        margin-bottom: 30px;
    }

    .footer-top { padding: 25px 0; }
    .footer-app-title { font-size: 22px; }
    .footer-main { padding: 30px 0; }
}

@media (max-width: 767px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .footer-top { padding: 20px 0; }
    .footer-app-title { font-size: 20px; }
    .app-btn { padding: 10px 16px; }
    .app-btn i { font-size: 22px; }
    .footer-main { padding: 25px 0; }
}

/* ==================== KEŞFET MEGA MENÜ ==================== */
.explore-dropdown {
    position: relative;
}

.explore-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.explore-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.explore-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.explore-dropdown:hover .explore-arrow {
    transform: rotate(180deg);
}

.explore-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 750px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
    overflow: hidden;
}

.explore-dropdown:hover .explore-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.explore-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.explore-section {
    padding: 24px;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.explore-section:nth-child(3n) {
    border-right: none;
}

.explore-section:nth-last-child(-n+2) {
    border-bottom: none;
}

.explore-section-services {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.explore-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-section-title i {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.explore-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.explore-link:hover {
    background: #f8fafc;
    color: var(--primary);
    transform: translateX(5px);
}

.explore-link-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.explore-link-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    transition: all 0.2s ease;
}

.explore-link:hover .explore-link-icon {
    background: var(--primary);
    color: #fff;
}

.explore-link-live {
    position: relative;
}

.live-badge {
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.explore-link-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
}

.explore-link-highlight:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
}

.explore-link-highlight .explore-link-icon {
    background: #f59e0b;
    color: #fff;
}

.explore-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.explore-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: #fff;
    border-radius: 12px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.explore-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--primary);
}

.explore-service-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.explore-service-item:hover i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: scale(1.1);
}

/* Keşfet Mobil Responsive */
@media (max-width: 991px) {
    .explore-mega-menu {
        position: fixed;
        top: 60px;
        left: 10px;
        right: 10px;
        width: auto;
        transform: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .explore-dropdown:hover .explore-mega-menu {
        transform: none;
    }

    .explore-container {
        grid-template-columns: 1fr;
    }

    .explore-section {
        border-right: none;
    }

    .explore-section-services {
        grid-column: span 1;
    }

    .explore-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .explore-trigger {
        padding: 8px 12px;
        font-size: 13px;
    }

    .explore-trigger span {
        display: none;
    }

    .explore-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-section {
        padding: 16px;
    }
}

/* ==================== HERO SLIDER ==================== */
.hero-section {
    padding: 30px 0;
}

.hero-row {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.hero-col-left {
    flex: 2.5;
    min-width: 0;
}

.hero-col-right {
    flex: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .hero-col-left {
        flex: 1;
    }
}

.hero-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px;
    color: #fff;
}

.hero-category {
    display: inline-block;
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-slider .swiper-pagination {
    display: none !important;
}

.slider-numbers-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.slider-numbers-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-number-item {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-number-item:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

.slider-number-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.5);
}

.slider-number-item.passed {
    background: rgba(230, 57, 70, 0.3);
    border-color: var(--primary);
    color: #fff;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 600;
}

/* Side News */
.side-news {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.side-news-item {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    min-height: 0;
}

.side-news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.side-news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.side-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.side-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
}

.side-news-category {
    display: inline-block;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.side-news-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
