@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #00A550;
    --red: #E4002B;
    --white: #FFFFFF;
    --lightGray: #F9FAFB;
    --darkGray: #374151;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* İtalya Bayrağı Renkleri: Yeşil, Beyaz, Kırmızı */
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    background: var(--white);
    color: #333;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Announcement Banner */
.announcement-banner {
    position: relative;
    z-index: 100;
    padding: 14px 0;
    background: linear-gradient(135deg, #00A550, #E4002B);
    color: white;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-text {
    font-size: 15px;
    flex: 1;
}

.announcement-button {
    background: white;
    color: #00A550;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    white-space: nowrap;
}

.announcement-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.announcement-close {
    background: none;
    border: none;
    color: currentColor;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.announcement-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .announcement-content {
        font-size: 14px;
    }
    
    .announcement-button {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* Header - Modern Clean Design */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 146, 70, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

/* Scroll'da header efekti */
header.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 146, 70, 0.15);
}

/* Header içeriği için z-index */
header > * {
    position: relative;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    min-height: 80px;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(0, 146, 70, 0.25), 0 4px 8px rgba(206, 43, 55, 0.15);
    background: linear-gradient(135deg, #009246, #ce2b37);
    color: var(--white);
    font-weight: 900;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-box:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 146, 70, 0.35), 0 6px 12px rgba(206, 43, 55, 0.2);
}

.logo-box:hover::before {
    opacity: 1;
}

.logo-text h3 {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.05em;
}

.logo-text p {
    font-size: 12px;
    opacity: 0.75;
}

.nav-links {
    display: none;
    gap: 4px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 16px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 165, 80, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.nav-links a:hover::before {
    width: 300px;
    height: 300px;
}

.nav-links a:hover {
    color: #009246;
    background: rgba(0, 146, 70, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 146, 70, 0.15);
}

.nav-links a > span,
.nav-links a > svg {
    position: relative;
    z-index: 1;
}

/* Dropdown Menü */
.nav-item-wrapper {
    position: relative;
}

.nav-item-wrapper.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item-wrapper > a svg {
    transition: transform 0.3s;
}

.nav-item-wrapper:hover > a svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 146, 70, 0.1);
    border: 1px solid rgba(0, 146, 70, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 8px;
}

.nav-item-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(0, 146, 70, 0.1), rgba(206, 43, 55, 0.08));
    color: #009246;
    opacity: 1;
    transform: translateX(4px);
}

.user-menu .user-name-link {
    background: linear-gradient(135deg, #00A550, #E4002B);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 165, 80, 0.3);
}

.user-menu .user-name-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 165, 80, 0.4);
    background: linear-gradient(135deg, #008F47, #CC0026);
}

.user-menu .dropdown-menu {
    right: 0;
    left: auto;
    transform: translateX(0) translateY(-10px);
}

.user-menu:hover .dropdown-menu {
    transform: translateX(0) translateY(0);
}

.auth-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login-header {
    padding: 10px 24px;
    background: linear-gradient(135deg, #00A550, #008F47);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 165, 80, 0.3);
}

.btn-login-header:hover {
    background: linear-gradient(135deg, #007A3D, #006B35);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 146, 70, 0.35);
}

.btn-register-header {
    padding: 10px 24px;
    background: linear-gradient(135deg, #E4002B, #CC0026);
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(228, 0, 43, 0.3);
}

.btn-register-header:hover {
    background: linear-gradient(135deg, #B30022, #99001D);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(206, 43, 55, 0.35);
}

@media (max-width: 768px) {
    .auth-menu {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .btn-login-header,
    .btn-register-header {
        width: 100%;
        text-align: center;
    }
}

.btn-primary {
    padding: 10px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #E4002B, #CC0026);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(228, 0, 43, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #CC0026, #B30022);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(228, 0, 43, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--darkGray);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.1);
    transform: translateY(-20px);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    padding: 14px 16px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu a:hover {
    background: rgba(0, 146, 70, 0.1);
    color: #009246;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 146, 70, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Hero */
.hero {
    background: #009246;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

/* Hero Abstract Pattern - İtalya Bayrağı Renkleri */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        /* SVG Abstract Pattern - Yeşil */
        url('data:image/svg+xml,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="heroGreen" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="35" fill="%23009246" opacity="0.2"/><circle cx="110" cy="110" r="28" fill="%23009246" opacity="0.15"/><path d="M0 75 Q37 50 75 75 T150 75" stroke="%23009246" stroke-width="4" fill="none" opacity="0.2"/><path d="M75 0 Q100 30 75 60 T75 150" stroke="%23009246" stroke-width="3" fill="none" opacity="0.18"/><polygon points="20,20 60,20 40,60" fill="%23009246" opacity="0.12"/></pattern><pattern id="heroRed" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="75" cy="75" r="40" fill="%23ce2b37" opacity="0.2"/><path d="M0 0 L150 150 M150 0 L0 150" stroke="%23ce2b37" stroke-width="3" opacity="0.18"/><polygon points="30,30 120,30 75,120" fill="%23ce2b37" opacity="0.15"/><ellipse cx="75" cy="75" rx="50" ry="30" fill="%23ce2b37" opacity="0.1"/></pattern><pattern id="heroWhite" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="60" height="60" fill="%23ffffff" opacity="0.1"/><rect x="60" y="60" width="60" height="60" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="90" r="20" fill="%23ffffff" opacity="0.08"/><circle cx="90" cy="30" r="20" fill="%23ffffff" opacity="0.08"/><path d="M0 60 L120 60 M60 0 L60 120" stroke="%23ffffff" stroke-width="2" opacity="0.1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23heroGreen)"/><rect width="100%25" height="100%25" fill="url(%23heroRed)"/><rect width="100%25" height="100%25" fill="url(%23heroWhite)"/></svg>'),
        /* Yeşil dalga efekti */
        radial-gradient(ellipse 1400px 500px at 12% 50%, rgba(0, 146, 70, 0.25) 0%, transparent 65%),
        /* Kırmızı dalga efekti */
        radial-gradient(ellipse 1300px 480px at 88% 50%, rgba(206, 43, 55, 0.25) 0%, transparent 65%),
        /* Beyaz geometrik çizgiler */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.15) 25px,
            rgba(255, 255, 255, 0.15) 50px
        ),
        /* Yeşil yatay dalgalar */
        linear-gradient(90deg, 
            transparent 0%,
            rgba(0, 146, 70, 0.15) 18%,
            transparent 38%,
            rgba(255, 255, 255, 0.12) 50%,
            transparent 62%,
            rgba(0, 146, 70, 0.12) 82%,
            transparent 100%
        ),
        /* Kırmızı dikey dalgalar */
        linear-gradient(180deg,
            transparent 0%,
            rgba(206, 43, 55, 0.15) 22%,
            transparent 48%,
            rgba(0, 146, 70, 0.1) 72%,
            transparent 100%
        );
    background-size: 300px 300px, 100% 100%, 100% 100%, 60px 60px, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    z-index: 0;
    pointer-events: none;
    animation: heroPatternMove 35s ease-in-out infinite;
    opacity: 0.75;
}

@keyframes heroPatternMove {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        opacity: 0.75;
    }
    25% {
        transform: translateX(20px) translateY(-12px) scale(1.03) rotate(1deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-15px) translateY(12px) scale(0.97) rotate(-1deg);
        opacity: 0.85;
    }
    75% {
        transform: translateX(10px) translateY(-8px) scale(1.02) rotate(0.5deg);
        opacity: 0.8;
    }
}

/* Hero overlay - İçeriğin okunabilirliği için */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 146, 70, 0.75) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(206, 43, 55, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Tüm Hero Varyasyonları için Çapraz 3 Renkli İtalya Bayrağı Pattern */
.modern-hero,
.blog-hero,
.life-hero,
.universities-hero,
.city-detail-hero,
.blog-detail-hero,
.page-hero,
.form-hero,
.university-hero-full {
    position: relative;
    overflow: hidden;
}

.modern-hero::before,
.blog-hero::before,
.life-hero::before,
.universities-hero::before,
.city-detail-hero::before,
.blog-detail-hero::before,
.page-hero::before,
.form-hero::before,
.university-hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        /* SVG Abstract Pattern - Yeşil */
        url('data:image/svg+xml,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="heroVarGreen" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="35" fill="%23009246" opacity="0.2"/><circle cx="110" cy="110" r="28" fill="%23009246" opacity="0.15"/><path d="M0 75 Q37 50 75 75 T150 75" stroke="%23009246" stroke-width="4" fill="none" opacity="0.2"/><path d="M75 0 Q100 30 75 60 T75 150" stroke="%23009246" stroke-width="3" fill="none" opacity="0.18"/></pattern><pattern id="heroVarRed" x="0" y="0" width="150" height="150" patternUnits="userSpaceOnUse"><circle cx="75" cy="75" r="40" fill="%23ce2b37" opacity="0.2"/><path d="M0 0 L150 150 M150 0 L0 150" stroke="%23ce2b37" stroke-width="3" opacity="0.18"/><polygon points="30,30 120,30 75,120" fill="%23ce2b37" opacity="0.15"/></pattern><pattern id="heroVarWhite" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="60" height="60" fill="%23ffffff" opacity="0.1"/><rect x="60" y="60" width="60" height="60" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="90" r="20" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23heroVarGreen)"/><rect width="100%25" height="100%25" fill="url(%23heroVarRed)"/><rect width="100%25" height="100%25" fill="url(%23heroVarWhite)"/></svg>'),
        /* Yeşil dalga efekti */
        radial-gradient(ellipse 1400px 500px at 12% 50%, rgba(0, 146, 70, 0.22) 0%, transparent 65%),
        /* Kırmızı dalga efekti */
        radial-gradient(ellipse 1300px 480px at 88% 50%, rgba(206, 43, 55, 0.22) 0%, transparent 65%),
        /* Beyaz geometrik çizgiler */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(255, 255, 255, 0.12) 25px,
            rgba(255, 255, 255, 0.12) 50px
        );
    background-size: 300px 300px, 100% 100%, 100% 100%, 60px 60px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.6;
    z-index: 0;
    animation: heroPatternMove 35s ease-in-out infinite;
}

.modern-hero::after,
.blog-hero::after,
.life-hero::after,
.universities-hero::after,
.city-detail-hero::after,
.blog-detail-hero::after,
.page-hero::after,
.form-hero::after,
.university-hero-full::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 146, 70, 0.65) 0%, 
        rgba(255, 255, 255, 0.35) 50%, 
        rgba(206, 43, 55, 0.65) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.modern-hero > *,
.blog-hero > *,
.life-hero > *,
.universities-hero > *,
.city-detail-hero > *,
.blog-detail-hero > *,
.page-hero > *,
.form-hero > *,
.university-hero-full > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px 112px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }
}

.hero h1 span {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(228, 0, 43, 0.3);
}

.hero p {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 560px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 18px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-hero {
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 500;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--red);
    color: var(--white);
}

.btn-hero-primary:hover {
    background: #CC0026;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(228, 0, 43, 0.4);
}

.btn-hero-secondary {
    opacity: 0.9;
    color: inherit;
}

.btn-hero-secondary:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.hero-image-overlay h3 {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    color: var(--white);
    margin-bottom: 8px;
}

.hero-image-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 24px 0;
}

@media (min-width: 768px) {
    section {
        padding: 32px 0;
    }
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

.grid {
    display: grid;
    gap: 16px;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Grid 5 columns */
.grid-5 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1600px) {
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* View All Link - Horizontal Button Style */
.view-all-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--darkGray);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid #e5e7eb;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.view-all-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green), var(--red));
    opacity: 0;
    transition: var(--transition);
}

.view-all-link:hover::before {
    opacity: 1;
}

.view-all-link:hover {
    border-color: transparent;
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: white;
}

.view-all-link > div {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 16px;
}

.view-all-link .icon {
    font-size: 36px;
    display: inline-block;
    transition: var(--transition);
    flex-shrink: 0;
}

.view-all-link:hover .icon {
    transform: scale(1.1) translateX(4px);
}

.view-all-link .text {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 2px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.view-all-link:hover .text {
    color: white;
}

.view-all-link .subtext {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 400;
    transition: var(--transition);
    white-space: nowrap;
}

.view-all-link:hover .subtext {
    opacity: 0.95;
    color: white;
}

@media (max-width: 640px) {
    .view-all-link {
        max-width: 100%;
        padding: 20px 24px;
    }
    
    .view-all-link .text {
        font-size: 16px;
    }
    
    .view-all-link .icon {
        font-size: 32px;
    }
}

/* Card */
.card {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--green);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.card-image-link:hover img {
    transform: scale(1.05);
}

.card-title-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.card-title-link:hover {
    color: var(--green);
}

.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.card-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 9999px;
    background: rgba(0, 165, 80, 0.1);
    color: var(--green);
}

.card-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
}

.card-link {
    display: inline-block;
    padding: 10px 18px;
    background: white;
    color: var(--darkGray);
    text-decoration: none;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
    flex: 1;
}

.card-link:hover {
    background: var(--lightGray);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 165, 80, 0.15);
}

.card-btn-apply {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--green), var(--red));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
    flex: 1;
    border: 2px solid transparent;
}

.card-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 165, 80, 0.4);
    filter: brightness(1.05);
}

/* Blog Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.blog-image-link img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-image-link:hover img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--green), var(--red));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: var(--darkGray);
    opacity: 0.7;
    margin-bottom: 12px;
}

.blog-title-link {
    text-decoration: none;
    color: inherit;
}

.blog-title-link h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.blog-title-link:hover h3 {
    color: var(--green);
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--darkGray);
    opacity: 0.8;
    margin-bottom: 16px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.blog-author {
    font-size: 13px;
    color: var(--darkGray);
    opacity: 0.8;
}

.blog-read-more {
    font-size: 14px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--red);
}

/* Blog Detail */
.blog-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--darkGray);
}

.blog-detail-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--darkGray);
}

.blog-detail-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--darkGray);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.blog-detail-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-detail-content strong {
    color: var(--darkGray);
    font-weight: 600;
}

.blog-nav-btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: var(--darkGray);
    text-decoration: none;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.blog-nav-btn:hover {
    background: var(--lightGray);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 48px;
    background: linear-gradient(135deg, var(--green), var(--red));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 165, 80, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 165, 80, 0.4);
}

.btn-view-all:active {
    transform: translateY(-2px) scale(1.01);
}

/* Cities */
.city-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.5s;
}

.city-card:hover {
    transform: translateX(-8px) translateY(-4px);
    box-shadow: -8px 10px 25px rgba(0,0,0,0.15);
}

.city-card-image {
    position: relative;
}

.city-card-image img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.city-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 9999px;
    background: var(--green);
    color: var(--white);
}

.city-card-content {
    padding: 16px;
}

.city-description {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.city-link {
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.city-link:hover {
    text-decoration: underline;
}

.section-light {
    background: var(--lightGray);
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-overlay > div {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .banner-overlay > div h2 {
        font-size: 48px;
    }
}

/* Modern Footer - Clean Design */
.modern-footer {
    background: linear-gradient(135deg, #CE2B37 0%, #B91C1C 50%, #991B1B 100%); /* İtalya bayrağı kırmızısı gradient */
    color: #FFFFFF;
    padding: 32px 0 20px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.modern-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer içeriği için z-index */
.modern-footer > * {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 28px;
    }
}

/* Footer About Section */
.footer-about {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    margin: -8px;
    border-radius: 12px;
}

.footer-logo:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.footer-logo-image {
    /* Boyutlar admin panelden yönetiliyor - inline style ile ayarlanıyor */
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 420px;
    color: #F3F4F6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.social-icon:hover svg {
    transform: scale(1.15);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-color: #833ab4;
}

.social-icon.twitter:hover {
    background: #000000;
    border-color: #000000;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Footer Links */
.footer-links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.footer-links li {
    position: relative;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
    color: #F3F4F6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 12px;
    border-radius: 8px;
    margin-left: -12px;
    position: relative;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s;
}

.footer-links li a svg {
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-links li a:hover {
    opacity: 1;
    transform: translateX(8px);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.footer-links li a:hover::before {
    height: 60%;
}

.footer-links li a:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0.95;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    color: #F3F4F6;
    padding: 12px;
    border-radius: 10px;
    margin-left: -12px;
    background: rgba(255, 255, 255, 0);
}

.contact-item:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.3s;
}

.contact-item:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.contact-item a {
    color: #F3F4F6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    opacity: 1;
    color: #FFFFFF;
    text-decoration: none;
}

.contact-item span {
    line-height: 1.7;
    font-weight: 400;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.95;
    flex-wrap: wrap;
    gap: 12px;
    color: #E5E7EB;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.copyright {
    font-weight: 500;
    color: #E5E7EB;
    letter-spacing: 0.01em;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #E5E7EB;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links a:hover::after {
    width: 80%;
}

.footer-bottom-links span {
    opacity: 0.4;
    font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 1023px) {
    .footer-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 24px 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        gap: 10px;
        text-align: center;
    }
    
    .footer-logo-image {
        /* Boyutlar admin panelden yönetiliyor - inline style ile ayarlanıyor */
    }
    
    .footer-description {
        font-size: 13px;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-links-section {
        gap: 10px;
    }
    
    .footer-contact {
        gap: 10px;
    }
    
    .contact-info {
        gap: 8px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 16px;
        padding-top: 16px;
        gap: 8px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 20px 0 12px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
    
    .footer-description {
        font-size: 12px;
    }
    
    .footer-links li a {
        font-size: 13px;
        padding: 4px 0;
    }
    
    .contact-item {
        font-size: 13px;
        gap: 8px;
    }
    
    .footer-bottom {
        font-size: 12px;
        margin-top: 12px;
        padding-top: 12px;
    }
}

/* Legacy Footer Support */
footer:not(.modern-footer) {
    background: #CE2B37; /* İtalya bayrağı kırmızısı */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* ============================================
   RESPONSIVE İYİLEŞTİRMELER
   ============================================ */

/* Tablet ve küçük ekranlar için iyileştirmeler */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    nav {
        padding: 16px 20px;
        min-height: 70px;
    }
    
    .logo-box {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .nav-links a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn-login-header,
    .btn-register-header {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* Mobil cihazlar için iyileştirmeler */
@media (max-width: 768px) {
    /* Header mobil iyileştirmeleri */
    header {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    nav {
        padding: 12px 16px;
        min-height: 64px;
    }
    
    .logo-box {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .logo-text h3 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    /* Hero bölümleri mobil */
    .hero,
    .modern-hero,
    .blog-hero,
    .life-hero,
    .universities-hero {
        min-height: 50vh;
        padding: 40px 0;
    }
    
    /* Footer mobil iyileştirmeleri */
    .modern-footer {
        padding: 24px 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-links-section,
    .footer-contact {
        text-align: left;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Container mobil */
    .container {
        padding: 0 16px;
    }
    
    /* Kartlar mobil */
    .card {
        margin-bottom: 20px;
    }
    
    /* Butonlar mobil */
    .btn-primary,
    .btn-hero-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Çok küçük ekranlar (320px - 480px) */
@media (max-width: 480px) {
    nav {
        padding: 10px 12px;
        min-height: 60px;
    }
    
    .logo-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .logo-text h3 {
        font-size: 16px;
    }
    
    .hero,
    .modern-hero,
    .blog-hero,
    .life-hero,
    .universities-hero {
        min-height: 40vh;
        padding: 30px 0;
    }
    
    .modern-footer {
        padding: 24px 0 16px;
    }
    
    .footer-grid {
        gap: 20px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Touch device iyileştirmeleri */
@media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .btn-primary,
    .btn-hero-primary,
    .social-icon {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-menu a {
        min-height: 48px;
    }
}

/* Landscape orientation iyileştirmeleri */
@media (max-width: 768px) and (orientation: landscape) {
    .hero,
    .modern-hero,
    .blog-hero,
    .life-hero,
    .universities-hero {
        min-height: 60vh;
    }
    
    nav {
        min-height: 56px;
        padding: 10px 16px;
    }
}

/* Yüksek çözünürlük ekranlar için iyileştirmeler */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
}

/* Print stilleri */
@media print {
    header,
    footer,
    .quick-contact-buttons-desktop,
    .quick-contact-bar-mobile,
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
