/* Hitit İşitme Cihazları - Modern Navbar Tasarımı */
/* Logo renk paletine uygun: Yeşil (#4CAF50), Mor (#7B1FA2) */

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

/* Classy gradient section and glass cards (Why Choose Us) */
.why-section {
    background: linear-gradient(120deg, #7B1FA2 0%, #1E88E5 22%, #0EA5E9 36%, #4CAF50 58%, #3E8E41 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140% 90% at 50% -20%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 25%, rgba(255,255,255,0) 55%);
    pointer-events: none;
}

.why-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 16px;
    padding: 24px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.28);
}

.why-card i {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
}

.why-card h3 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.why-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* Media (Videos) */
.media-section {
    margin-bottom: 80px;
}

.media-heading {
    text-align: center;
    margin-bottom: 50px;
}

.media-heading h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.media-heading .underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7B1FA2, #1E88E5, #4CAF50);
    margin: 0 auto;
    border-radius: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-grid.video-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-thumb .thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.play-btn i {
    color: #fff;
    font-size: 1.4rem;
    margin-left: 3px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(255, 0, 0, 1);
}

.play-btn.play-lg {
    width: 84px;
    height: 84px;
}

.badge {
    position: absolute;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
}

.badge.featured {
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: #fff;
}

.badge.duration {
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    border-radius: 6px;
}

.video-info {
    padding: 22px;
}

.video-info h3 {
    color: #333;
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 600;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    font-size: 13px;
    color: #999;
}

.btn-youtube {
    background: #FF0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* Blog */
.blog-hero {
    text-align: center;
    margin-bottom: 60px;
}

.blog-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 14px;
}

.blog-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.blog-featured .media-heading .underline {
    background: linear-gradient(135deg, #7B1FA2, #1E88E5, #4CAF50);
}

.blog-filters {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.chip {
    padding: 8px 14px;
    border-radius: 18px;
    font-size: 13px;
    text-decoration: none;
    background: #f4f6f8;
    color: #556;
    transition: all 0.2s ease;
}

.chip:hover {
    transform: translateY(-1px);
}

.chip.active {
    background: linear-gradient(100deg, #7B1FA2, #1E88E5, #4CAF50);
    color: #fff;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}

.post-thumb {
    height: 180px;
    background: linear-gradient(120deg, #7B1FA2, #1E88E5, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.post-body {
    padding: 20px;
}

.badge-cat {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
}

.post-title {
    margin: 12px 0;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
}

.post-excerpt {
    color: #666;
    line-height: 1.55;
    font-size: 14px;
    margin-bottom: 14px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.page-link {
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    background: #f4f6f8;
    color: #556;
}

.page-link.active,
.page-link.primary {
    background: linear-gradient(100deg, #7B1FA2, #4CAF50);
    color: #fff;
}

@media (max-width: 768px) {
    .why-section {
        padding: 40px 20px;
    }
    .why-title {
        font-size: 2rem;
    }
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

/* Top Header Bar */
.header-top {
    background: linear-gradient(100deg, #7B1FA2 0%, #1E88E5 18%, #0EA5E9 28%, #4CAF50 60%, #3E8E41 95%);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    overflow: hidden;
}

/* Subtle white sheen for a premium feel */
.header-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 70% at 50% -30%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.10) 30%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-item i {
    font-size: 14px;
}

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

.social-links a {
    color: white;
    font-size: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Main Navbar */
.navbar {
    padding: 15px 0;
    background: white;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-link.active {
    color: #4CAF50;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    min-width: 250px;
    max-width: 90vw;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    border: 1px solid rgba(76, 175, 80, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50 0%, #1E88E5 50%, #7B1FA2 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Dropdown positioning for wide dropdowns */
.dropdown-wide {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 600px;
    max-width: 95vw;
}

.nav-item:hover .dropdown-wide {
    transform: translateX(-50%) translateY(0);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu {
    list-style: none;
    padding: 20px 0;
    position: relative;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.3) 50%, transparent 100%);
}

.dropdown-item {
    padding: 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-link i {
    color: #7B1FA2;
    font-size: 14px;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.1) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.dropdown-link:hover::before {
    left: 100%;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(123, 31, 162, 0.05) 100%);
    color: #4CAF50;
    border-left-color: #4CAF50;
    transform: translateX(5px);
    box-shadow: inset 0 0 0 1px rgba(76, 175, 80, 0.1);
}

.dropdown-link:hover i {
    color: #4CAF50;
    transform: scale(1.1) rotate(5deg);
}

/* Wide Dropdown Styles */
.dropdown-wide {
    min-width: 600px;
    max-width: 90vw;
}

.dropdown-grid-container {
    padding: 20px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
}

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

.dropdown-column {
    min-width: 0;
}

.dropdown-column-empty {
    display: none;
}

.dropdown-header {
    font-weight: 700;
    color: #333;
    padding: 0 0 12px 0;
    margin-bottom: 15px;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, #4CAF50 0%, #1E88E5 50%, #7B1FA2 100%) bottom/100% 2px no-repeat;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-header i {
    color: #4CAF50;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50 0%, #1E88E5 50%, #7B1FA2 100%);
    border-radius: 1px;
    animation: headerGlow 2s ease-in-out infinite alternate;
}

@keyframes headerGlow {
    0% { box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); }
    100% { box-shadow: 0 0 15px rgba(123, 31, 162, 0.5); }
}

.dropdown-grid .dropdown-link {
    padding: 10px 0;
    border-left: none;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 6px;
    margin: 2px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-grid .dropdown-link i {
    color: #7B1FA2;
    font-size: 14px;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-grid .dropdown-link:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(123, 31, 162, 0.05) 100%);
    transform: translateX(8px);
    padding-left: 12px;
}

.dropdown-grid .dropdown-link:hover i {
    color: #4CAF50;
    transform: scale(1.1);
}

/* Action Buttons */
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1E88E5 0%, #4CAF50 70%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-outline {
    background: transparent;
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.btn-outline:hover {
    background: #4CAF50;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Contact Info in Header */
.header-contact {
    display: flex;
    gap: 25px;
    font-size: 13px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
}

.header-contact-item i {
    font-size: 12px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #0EA5E9 0%, #0B5ED7 100%);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 10px rgba(255,255,255,0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 6px 0;
        font-size: 10px;
    }
    
    .header-top .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .contact-item span {
        display: none;
    }
    
    .contact-item {
        font-size: 0;
    }
    
    .contact-item i {
        font-size: 12px;
    }
    
    .top-left {
        flex: 1;
        min-width: 0;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .top-left .contact-item span {
        display: none;
    }
    
    .top-right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    
    .header-contact {
        display: flex;
        gap: 15px;
    }
    
    .header-contact-item span {
        display: none;
    }
    
    .header-contact-item {
        font-size: 0;
    }
    
    .header-contact-item i {
        font-size: 12px;
    }
    
    .contact-item {
        font-size: 9px;
    }
    
    .social-links a {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .navbar {
        padding: 8px 0;
        position: relative;
    }
    
    .navbar .container {
        align-items: center;
        justify-content: space-between;
    }
    
    .logo img {
        height: 45px;
        max-width: 140px;
        object-fit: contain;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-radius: 0 0 15px 15px;
        gap: 0;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 12px 20px;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 500;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        border-radius: 0;
        margin: 0;
        display: none;
    }
    
    .dropdown.active {
        display: block;
    }
    
    .dropdown-menu {
        padding: 0;
    }
    
    .dropdown-link {
        padding: 8px 20px;
        font-size: 12px;
        border-left: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Mobile Dropdown Grid */
    .dropdown-wide {
        min-width: auto;
        max-width: 100%;
        left: 0;
        right: 0;
        transform: translateY(-10px);
        width: calc(100vw - 30px);
        margin: 0 15px;
    }
    
    .nav-item:hover .dropdown-wide {
        transform: translateY(0);
    }
    
    .dropdown-grid-container {
        padding: 10px;
    }
    
    .dropdown-grid,
    .dropdown-grid-4 {
        display: block;
        gap: 0;
    }
    
    .dropdown-column {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    
    .dropdown-column:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .dropdown-header {
        font-size: 13px;
        padding: 8px 20px;
        margin: 0 -20px 10px -20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .dropdown-header i {
        color: #4CAF50;
        font-size: 14px;
        width: 16px;
    }
    
    .dropdown-grid .dropdown-link {
        padding: 8px 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .dropdown-grid .dropdown-link i {
        color: #7B1FA2;
        font-size: 12px;
        width: 16px;
        flex-shrink: 0;
    }
    
    .dropdown-grid .dropdown-link:hover i {
        color: #4CAF50;
        transform: scale(1.05);
    }
    
    .nav-actions {
        margin: 15px 20px;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    
    .btn {
        flex: 1;
        justify-content: center;
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 12px;
        font-weight: 600;
        min-height: 32px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 3px;
        cursor: pointer;
        padding: 5px;
    }
    
    .mobile-toggle span {
        width: 20px;
        height: 2px;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 4px 0;
        font-size: 9px;
    }
    
    .header-top .container {
        padding: 0 10px;
    }
    
    .top-left .contact-item span {
        display: none;
    }
    
    .header-contact-item span {
        display: none;
    }
    
    .top-left .contact-item {
        font-size: 8px;
    }
    
    .social-links a {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    .navbar {
        padding: 6px 0;
    }
    
    .navbar .container {
        padding: 0 10px;
    }
    
    .logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .dropdown-header {
        font-size: 12px;
        padding: 6px 15px;
        margin: 0 -15px 8px -15px;
    }
    
    .dropdown-grid .dropdown-link {
        padding: 6px 15px;
        font-size: 11px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .dropdown-grid .dropdown-link i {
        color: #7B1FA2;
        font-size: 11px;
        width: 14px;
        flex-shrink: 0;
    }
    
    .nav-actions {
        margin: 10px 15px;
        gap: 5px;
    }
    
    .btn {
        padding: 4px 8px;
        font-size: 9px;
        min-height: 26px;
        gap: 2px;
    }
    
    .mobile-toggle {
        padding: 2px;
    }
    
    .mobile-toggle span {
        width: 16px;
        height: 2px;
    }
    
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }
}

/* Blog Page Responsive */
@media (max-width: 768px) {
    /* Blog grid layout - make single column */
    main div[style*="display: grid; grid-template-columns: 1fr 300px"] {
        display: block !important;
    }
    
    /* Blog sidebar */
    main aside {
        margin-top: 40px;
    }
    
    /* Blog post grid */
    .post-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    footer {
        padding: 40px 0 20px !important;
        margin-top: 60px !important;
    }
    
    footer .container > div:last-child {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    footer .container > div:last-child > div {
        justify-content: center !important;
    }
}

/* Ana Sayfa İçerik Responsive */
@media (max-width: 768px) {
    /* Grid sistemleri tek sütun yap */
    main .container section div[style*="grid-template-columns: 1fr 1fr"] {
        display: block !important;
    }
    
    main .container section div[style*="grid-template-columns: 1fr 1fr"] > div {
        margin-bottom: 40px;
    }
    
    /* Görsel alanları küçült */
    main .container section div[style*="width: 400px"] {
        width: 100% !important;
        max-width: 350px !important;
        height: 250px !important;
    }
    
    /* Başlıkları küçült */
    main h2 {
        font-size: 2rem !important;
    }
    
    /* Buton gruplarını dikey yap */
    main div[style*="display: flex; gap: 20px"] {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Özellik kartlarını tek sütun yap */
    main div[style*="grid-template-columns: 1fr 1fr; gap: 20px"] {
        display: block !important;
    }
    
    main div[style*="grid-template-columns: 1fr 1fr; gap: 20px"] > div {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için ek ayarlar */
    main h2 {
        font-size: 1.8rem !important;
    }
    
    main p {
        font-size: 1rem !important;
    }
    
    main .container section {
        margin-bottom: 60px !important;
    }
    
    main div[style*="padding: 60px 40px"] {
        padding: 40px 20px !important;
    }
}

/* AI Section Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}
