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

:root {
    --orange: #F97316;
    --orange-light: #FB923C;
    --orange-dark: #EA580C;
    --orange-pale: #FFF7ED;
    --orange-muted: #FED7AA;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 8px 30px rgba(249, 115, 22, 0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    padding: 0 24px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--gray-900);
    transition: var(--transition);
}

.logo:hover {
    color: var(--orange);
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo-text strong {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--orange-pale);
    color: var(--orange);
}

.hero {
    background: linear-gradient(135deg, var(--orange-pale) 0%, #FFF 60%);
    padding: 80px 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    min-height: 480px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--orange-muted);
    color: var(--orange-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 20px;
    animation: fadeInUp 0.7s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.9s ease;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
}

.stat span {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coffee-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--orange-muted);
    animation: pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 220px;
    height: 220px;
    animation-delay: 0s;
    opacity: 0.8;
}

.ring-2 {
    width: 270px;
    height: 270px;
    animation-delay: 0.5s;
    opacity: 0.5;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
    opacity: 0.3;
}

.hero-cup {
    width: 96px;
    height: 96px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(249, 115, 22, 0.3));
}

.filter-section {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 24px;
}

.search-bar {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}

.search-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.search-btn {
    padding: 12px 24px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.sort-dropdown {
    flex-shrink: 0;
}

.sort-form {
    flex-shrink: 0;
}

.sort-select {
    padding: 8px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.sort-select:hover {
    border-color: var(--orange);
}

.sort-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.tag {
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.tag-active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.kahve-grid-section {
    padding: 60px 0;
}

.kahve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.kahve-kart {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.kahve-kart:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-muted);
}

.kart-image-wrap {
    position: relative;
}

.kart-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kart-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.coffee-gradient-1 {
    background: linear-gradient(135deg, #FFF7ED, #FED7AA);
}

.coffee-gradient-2 {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.coffee-gradient-3 {
    background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
}

.coffee-gradient-4 {
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
}

.coffee-gradient-5 {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
}

.coffee-gradient-6 {
    background: linear-gradient(135deg, #F3E8FF, #E9D5FF);
}

.kart-emoji {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.kahve-kart:hover .kart-emoji {
    transform: scale(1.1) rotate(-5deg);
}

.kart-etiket {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--orange-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.kart-body {
    padding: 20px 24px 24px;
}

.kart-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.kart-mensei,
.kart-kavrum {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.kart-baslik {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.kart-aciklama {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.yildiz-group {
    display: flex;
    align-items: center;
    gap: 2px;
}

.yildiz {
    width: 16px;
    height: 16px;
}

.yildiz-dolu {
    fill: #F59E0B;
}

.yildiz-bos {
    fill: var(--gray-200);
}

.yildiz-puan {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-left: 6px;
}

.yorum-sayisi {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-left: 4px;
}

.btn-detay {
    padding: 8px 18px;
    background: var(--orange-pale);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-detay:hover {
    background: var(--orange);
    color: var(--white);
}

.bos-sonuc {
    text-align: center;
    padding: 80px 24px;
}

.bos-ikon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
}

.bos-sonuc h3 {
    font-size: 1.5rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.bos-sonuc p {
    color: var(--gray-400);
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.hakkinda {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1F2937 100%);
    padding: 80px 24px;
    color: var(--white);
}

.hakkinda-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    color: var(--orange-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hakkinda-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hakkinda-text p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 12px;
}

.hakkinda-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.85rem;
    color: #9CA3AF;
}

.site-main {
    flex: 1;
}

.site-footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 40px 24px;
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand .logo-icon {
    width: 24px;
    height: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-nav-link {
    color: #9CA3AF;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: var(--orange);
}

.footer-newsletter {
    margin-bottom: 20px;
}

.newsletter-text {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: #9CA3AF;
}

.newsletter-input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 10px 20px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.footer-text {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-copy {
    color: #6B7280;
    font-size: 0.8rem;
}

.detay-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.breadcrumb a {
    color: var(--orange);
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.detay-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

.detay-sol {
    position: sticky;
    top: 90px;
}

.detay-image {
    border-radius: var(--radius-lg);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.detay-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detay-emoji {
    width: 96px;
    height: 96px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.detay-info-kart {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
}

.detay-info-kart h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.profil-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.profil-item:last-child {
    border-bottom: none;
}

.profil-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.profil-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
}

.detay-etiket {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange-dark);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.detay-baslik {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.1;
}

.detay-yildiz {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.detay-yildiz .yildiz {
    font-size: 1.3rem;
}

.detay-puan {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-left: 8px;
}

.detay-aciklama {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 36px;
}

.yorumlar-bolum {
    border-top: 1px solid var(--gray-100);
    padding-top: 36px;
}

.bolum-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.yorum-badge {
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.yorum-listesi {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.yorum-kart {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.yorum-kart:hover {
    border-color: var(--orange-muted);
    box-shadow: var(--shadow-sm);
}

.yorum-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.yorum-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.yorum-meta {
    flex: 1;
}

.yorum-kullanici {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    display: block;
}

.yorum-tarih {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.yorum-yildiz {
    display: flex;
    gap: 2px;
}

.yildiz-sm {
    width: 14px;
    height: 14px;
}

.yorum-metin {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.bos-yorum {
    text-align: center;
    padding: 40px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    margin-bottom: 36px;
}

.yorum-form-bolum {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.yorum-form-bolum h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.yorum-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-400);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-900);
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.star-picker {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.star-pick {
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--gray-200);
    transition: var(--transition);
}

.star-pick.secili,
.star-pick:hover {
    fill: #F59E0B;
    transform: scale(1.15);
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    opacity: 0.95;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 24px 40px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        width: 200px;
        height: 200px;
    }

    .ring-1 {
        width: 160px;
        height: 160px;
    }

    .ring-2 {
        width: 185px;
        height: 185px;
    }

    .ring-3 {
        width: 200px;
        height: 200px;
    }

    .hero-cup {
        font-size: 4rem;
    }

    .hakkinda-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detay-grid {
        grid-template-columns: 1fr;
    }

    .detay-sol {
        position: static;
    }
}

@media (max-width: 600px) {
    .kahve-grid {
        grid-template-columns: 1fr;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .detay-baslik {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }
}

.about-hero {
    background: linear-gradient(135deg, var(--orange-pale) 0%, #FFF 60%);
    padding: 80px 24px 60px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-badge {
    display: inline-block;
    background: var(--orange-muted);
    color: var(--orange-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.about-cards-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1F2937 100%);
    padding: 80px 24px;
}

.about-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: var(--transition);
}

.about-card:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.about-card-text {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.about-mission {
    background: var(--white);
    padding: 80px 24px;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.mission-stat {
    text-align: center;
}

.mission-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.mission-stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .mission-stats {
        gap: 32px;
    }

    .mission-stat-number {
        font-size: 2rem;
    }
}

.contact-hero {
    background: linear-gradient(135deg, var(--orange-pale) 0%, #FFF 60%);
    padding: 80px 24px 60px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-block;
    background: var(--orange-muted);
    color: var(--orange-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-section {
    background: var(--white);
    padding: 60px 24px 80px;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-pale);
    color: var(--orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}