/**
 * Han Medya Dijital - Ana Stil DosyasÄ±
 * Premium Dark Theme Design
 */

/* ===== GENEL RESETLER VE TANIMLAMALAR ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renkler */
    --koyu-zemin: #050810;
    --koyu-zemin-2: #090b15;
    --koyu-kart: #0f1119;
    --turuncu-1: #ff6a3d;
    --turuncu-2: #ff2d6b;
    --mor-1: #8b5cf6;
    --mor-2: #6366f1;
    --beyaz: #ffffff;
    --gri-acik: #e5e7eb;
    --gri-orta: #9ca3af;
    --gri-koyu: #4b5563;

    /* Tipografi */
    --font-ana: 'Poppins', sans-serif;

    /* DiÄŸer */
    --radius: 12px;
    --radius-buyuk: 20px;
    --gecis: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ana);
    background: var(--koyu-zemin);
    color: var(--gri-acik);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--gecis);
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 106, 61, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 61, 0.5), transparent);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beyaz);
}

.logo-text {
    color: var(--beyaz);
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.logo-text .vurgu {
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.logo img {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 106, 61, 0.3));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 6px 20px rgba(255, 106, 61, 0.5));
}

.menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu-link {
    color: var(--gri-acik);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    filter: blur(4px);
    opacity: 0;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: var(--beyaz);
    transform: translateY(-2px);
}

.menu-link:hover::before {
    width: 100%;
}

.menu-link:hover::after {
    width: 100%;
    opacity: 0.6;
}

/* Butonlar */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    color: var(--beyaz);
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--gecis);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 106, 61, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--beyaz);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--gecis);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-buyuk {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hamburger MenÃ¼ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--beyaz);
    border-radius: 3px;
    transition: var(--gecis);
}

/* Mobil MenÃ¼ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 16, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.aktif {
    display: flex;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--beyaz);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mobile-menu a {
    color: var(--beyaz);
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===== HERO BÃ–LÃœMÃœ ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-arka-plan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 106, 61, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 45, 107, 0.15) 0%, transparent 60%);
    z-index: -1;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 0.8;
    }
}

.hero-icerik {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 5rem;
    align-items: center;
}

.hero-sol {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-baslik {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--beyaz);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-baslik .vurgu {
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-alt-baslik {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--gri-acik);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-aciklama {
    font-size: 1.15rem;
    color: var(--gri-orta);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-butonlar {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Stats Card */
.hero-sag {
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 106, 61, 0.2);
    border-radius: var(--radius-buyuk);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 106, 61, 0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-stats-card h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--beyaz);
    font-weight: 700;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--beyaz), var(--gri-acik));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 106, 61, 0.1);
    transform: translateX(5px);
}

.stat-item i {
    font-size: 2.2rem;
    color: var(--turuncu-1);
    filter: drop-shadow(0 0 8px rgba(255, 106, 61, 0.5));
}

.stat-veri strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--beyaz);
    background: linear-gradient(135deg, var(--beyaz), var(--gri-acik));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-veri span {
    font-size: 0.88rem;
    color: var(--gri-orta);
    letter-spacing: 0.3px;
}

/* ===== BÃ–LÃœM BAÅžLIKLARI ===== */
.bolum-baslik {
    margin-bottom: 3rem;
}

.bolum-baslik.merkez {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ust-baslik {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 106, 61, 0.1);
    color: var(--turuncu-1);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bolum-baslik h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beyaz);
    margin-bottom: 1rem;
}

.bolum-baslik p {
    font-size: 1.1rem;
    color: var(--gri-orta);
}

/* ===== KARTLAR ===== */
.yorum-kart,
.hizmet-kart,
.referans-kart,
.neden-kart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-buyuk);
    padding: 2rem;
    transition: var(--gecis);
}

.yorum-kart:hover,
.hizmet-kart:hover,
.referans-kart:hover,
.neden-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== YORUM KARTLARI ===== */
.yorumlar-kisa,
.musteri-deneyimleri {
    padding: 5rem 0;
}

.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.yorum-ust {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.musteri-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.musteri-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.musteri-foto i {
    font-size: 1.5rem;
    color: var(--beyaz);
}

.musteri-bilgi h4 {
    color: var(--beyaz);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.musteri-bilgi p {
    font-size: 0.85rem;
    color: var(--gri-orta);
}

.yildizlar {
    display: flex;
    gap: 0.25rem;
}

.yildizlar .dolu {
    color: #fbbf24;
}

.yildizlar .bos {
    color: var(--gri-koyu);
}

.yorum-icerik {
    position: relative;
}

.yorum-ikon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2rem;
    color: var(--turuncu-1);
    opacity: 0.3;
}

.yorum-icerik p {
    padding-left: 2.5rem;
    color: var(--gri-acik);
    font-style: italic;
}

/* ===== NEDEN BÄ°Z? ===== */
.neden-biz {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 106, 61, 0.1));
}

.neden-biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.neden-ikon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.neden-ikon i {
    font-size: 2rem;
    color: var(--beyaz);
}

.neden-kart h3 {
    font-size: 1.3rem;
    color: var(--beyaz);
    margin-bottom: 0.75rem;
}

.neden-kart p {
    color: var(--gri-orta);
}

/* ===== HÄ°ZMETLER ===== */
.hizmetler-anasayfa,
.hizmetler-sayfa {
    padding: 5rem 0;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hizmet-ikon {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 61, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hizmet-ikon i {
    font-size: 2rem;
    color: var(--turuncu-1);
}

.hizmet-kart h3 {
    font-size: 1.4rem;
    color: var(--beyaz);
    margin-bottom: 1rem;
}

.hizmet-kart p {
    color: var(--gri-orta);
    margin-bottom: 1.5rem;
}

.hizmet-detay-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--turuncu-1);
    font-weight: 600;
}

.hizmet-detay-link:hover {
    gap: 0.75rem;
}

/* ===== Ã–ZEL CTA ===== */
.ozel-cta {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(255, 106, 61, 0.2));
    z-index: -1;
}

.cta-icerik h2 {
    font-size: 2.5rem;
    color: var(--beyaz);
    margin-bottom: 1rem;
}

.cta-icerik p {
    font-size: 1.2rem;
    color: var(--gri-orta);
    margin-bottom: 2rem;
}

/* ===== REFERANSLAR ===== */
.referanslar-anasayfa,
.referanslar-sayfa {
    padding: 5rem 0;
}

.referanslar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.referans-kart {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.referans-logo {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referans-logo img {
    max-width: 100%;
    max-height: 100px;
    filter: grayscale(100%);
    transition: var(--gecis);
}

.referans-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(255, 106, 61, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--gecis);
    padding: 2rem;
    text-align: center;
}

.referans-kart:hover .referans-overlay {
    opacity: 1;
}

.referans-kart:hover .referans-logo img {
    filter: grayscale(0%);
}

.referans-overlay h4 {
    color: var(--beyaz);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.referans-overlay p {
    color: var(--beyaz);
    margin-bottom: 1rem;
}

.referans-link {
    color: var(--beyaz);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: var(--koyu-zemin-2);
    padding: 5rem 0 2rem;
    margin-top: 5rem;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--mor-1), var(--turuncu-1), var(--turuncu-2), var(--mor-2));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-height: 40px;
}

.footer-aciklama {
    color: var(--gri-orta);
    margin-bottom: 2rem;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-mini {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-mini i {
    font-size: 1.5rem;
    color: var(--turuncu-1);
}

.stat-mini strong {
    display: block;
    color: var(--beyaz);
    font-size: 1.2rem;
}

.stat-mini span {
    font-size: 0.85rem;
    color: var(--gri-orta);
}

.footer-baslik {
    color: var(--beyaz);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-linkler {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-linkler a {
    color: var(--gri-orta);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-linkler a:hover {
    color: var(--turuncu-1);
    padding-left: 0.5rem;
}

.footer-iletisim {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.iletisim-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.iletisim-item i {
    font-size: 1.2rem;
    color: var(--turuncu-1);
    margin-top: 0.25rem;
}

.iletisim-item p,
.iletisim-item a {
    color: var(--gri-orta);
}

.iletisim-item a:hover {
    color: var(--turuncu-1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.newsletter {
    text-align: center;
    margin-bottom: 2rem;
}

.newsletter h4 {
    color: var(--beyaz);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--beyaz);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--gri-orta);
}

.sosyal-medya {
    display: flex;
    gap: 1rem;
}

.sosyal-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beyaz);
    transition: var(--gecis);
}

.sosyal-link:hover {
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    transform: translateY(-3px);
}

/* ===== BÄ°LDÄ°RÄ°M ===== */
.bildirim {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    transition: var(--gecis);
}

.bildirim-basarili {
    border-left: 4px solid #10b981;
}

.bildirim-hata {
    border-left: 4px solid #ef4444;
}

.bildirim-kapat {
    background: none;
    border: none;
}

.merkez-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* BoÅŸ durum */
.bos-durum {
    text-align: center;
    padding: 4rem 2rem;
}

.bos-durum i {
    font-size: 4rem;
    color: var(--gri-koyu);
    margin-bottom: 1rem;
}

.bos-durum p {
    color: var(--gri-orta);
    font-size: 1.1rem;
}

/* Ana iÃ§erik padding */
.main-content {
    padding-top: 80px;
}

/* Sayfa hero (diÄŸer sayfalar iÃ§in) */
.sayfa-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(255, 106, 61, 0.1));
}

.sayfa-hero-icerik {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sayfa-hero h1 { font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 2rem; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); letter-spacing: -2px; }

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--turuncu-1), var(--turuncu-2));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-icerik {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-buyuk);
    padding: 2rem;
    max-width: 45%;
}

.timeline-item.sol .timeline-icerik {
    margin-right: auto;
}

.timeline-item.sag .timeline-icerik {
    margin-left: auto;
}

.timeline-yil {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    color: var(--beyaz);
    border-radius: var(--radius);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-nokta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--turuncu-1);
    border-radius: 50%;
    border: 4px solid var(--koyu-zemin);
}

/* Vizyon & Misyon */
.vizyon-misyon {
    padding: 5rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.vm-kart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-buyuk);
    padding: 3rem;
    text-align: center;
}

.vm-ikon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turuncu-1), var(--turuncu-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.vm-ikon i {
    font-size: 2.5rem;
    color: var(--beyaz);
}

.vm-kart h3 {
    font-size: 1.8rem;
    color: var(--beyaz);
    margin-bottom: 1rem;
}

.vm-kart p {
    color: var(--gri-orta);
    font-size: 1.1rem;
}

/* DeÄŸerler */
.degerler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.deger-kart {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-buyuk);
    padding: 2rem;
    text-align: center;
    transition: var(--gecis);
}

.deger-kart:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.deger-ikon {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 61, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.deger-ikon i {
    font-size: 2rem;
    color: var(--turuncu-1);
}

.deger-kart h3 {
    color: var(--beyaz);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.deger-kart p {
    color: var(--gri-orta);
}

/* Ä°letiÅŸim formu */
.iletisim-formu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grup {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-grup label {
    color: var(--beyaz);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-grup input,
.form-grup textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--beyaz);
    font-family: inherit;
    transition: var(--gecis);
}

.form-grup input:focus,
.form-grup textarea:focus {
    outline: none;
    border-color: var(--turuncu-1);
    background: rgba(255, 255, 255, 0.08);
}

.form-satir {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-satir {
        grid-template-columns: 1fr;
    }

    .sayfa-hero-icerik {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-icerik {
        max-width: 100%;
        margin-left: 50px !important;
    }

    .timeline-nokta {
        left: 20px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {

    .menu,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-icerik {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-baslik {
        font-size: 3rem;
        letter-spacing: -0.5px;
    }

    .hero-alt-baslik {
        font-size: 1.3rem;
    }

    .hero-aciklama {
        font-size: 1rem;
    }

    .bolum-baslik h2 {
        font-size: 2rem;
    }

    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4.5rem 0 2rem;
    }

    .hero-baslik {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-alt-baslik {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-aciklama {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-butonlar {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-buyuk {
        width: 100%;
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        max-height: 40px;
    }

    .hero-stats-card {
        padding: 1.5rem;
    }

    .stat-item {
        padding: 0.75rem;
    }
}

/* Merkez hizalama yardýmcýsý */
.merkez {
    text-align: center;
}


    
    .hizmetler-grid-buyuk {
        grid-template-columns: 1fr;
    }
}

/* ===== HÄ°ZMETLER SAYFASI - MODERN KART TASARIMI ===== */
.hizmetler-sayfa {
    padding: 5rem 0;
    background: var(--koyu-zemin);
}

.hizmetler-grid-buyuk {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.hizmet-kart-detayli {
    background: linear-gradient(145deg, #1a1d2e 0%, #16192b 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hizmet-kart-detayli:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 106, 61, 0.15);
    border-color: rgba(255, 106, 61, 0.2);
}

.hizmet-kart-ust {
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.05) 0%, transparent 100%);
}

.hizmet-ikon-buyuk {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(255, 106, 61, 0.25);
}

.hizmet-ikon-buyuk i {
    font-size: 2rem;
    color: var(--beyaz);
}

.hizmet-kart-detayli h3 {
    font-size: 1.5rem;
    color: var(--beyaz);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.hizmet-ozet {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.hizmet-kart-alt {
    padding: 0 2rem 2.5rem;
}

.hizmet-aciklama {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hizmet-iletisim-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    color: var(--beyaz);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 106, 61, 0.2);
}

.hizmet-iletisim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 106, 61, 0.35);
}

/* Ã‡ALIÅžMA SÃœRECÄ° - KART LAYOUT */
.calisma-sureci {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--koyu-zemin) 0%, var(--koyu-zemin-2) 100%);
}

.surec-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.surec-adim {
    background: linear-gradient(145deg, #1a1d2e 0%, #16192b 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.surec-adim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6a3d 0%, #ff2d6b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.surec-adim:hover::before {
    opacity: 1;
}

.surec-adim:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 106, 61, 0.2);
    box-shadow: 0 20px 60px rgba(255, 106, 61, 0.1);
}

.surec-numara {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    color: var(--beyaz);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 106, 61, 0.35);
    border: 3px solid var(--koyu-zemin-2);
}

.surec-ikon {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 61, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: all 0.3s ease;
}

.surec-adim:hover .surec-ikon {
    background: rgba(255, 106, 61, 0.15);
    transform: scale(1.05);
}

.surec-ikon i {
    font-size: 1.8rem;
    color: #ff6a3d;
}

.surec-adim h3 {
    color: var(--beyaz);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.surec-adim p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.surec-ok {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hizmetler-grid-buyuk,
    .surec-timeline {
        grid-template-columns: 1fr;
    }

    .hizmet-kart-detayli h3 {
        font-size: 1.3rem;
    }
}


/* ===== HÄ°ZMETLER SAYFASI - ULTRA MODERN ===== */
.hizmetler-sayfa {
    padding: 4rem 0;
    background: #0a0d1a;
}

.hizmetler-grid-buyuk {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hizmet-kart-detayli {
    background: #1c1f2e;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.hizmet-kart-detayli:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 61, 0.3);
}

.hizmet-kart-ust {
    padding: 2rem 1.75rem 1.5rem;
}

.hizmet-ikon-buyuk {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hizmet-ikon-buyuk i {
    font-size: 1.75rem;
    color: #fff;
}

.hizmet-kart-detayli h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.hizmet-ozet {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hizmet-kart-alt {
    padding: 0 1.75rem 2rem;
}

.hizmet-aciklama {
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.hizmet-iletisim-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hizmet-iletisim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 61, 0.3);
}

.hizmet-iletisim-btn i {
    font-size: 0.9rem;
}

/* Ã‡ALIÅžMA SÃœRECÄ° - SADECE KARTLAR */
.calisma-sureci {
    padding: 5rem 0;
    background: #0a0d1a;
}

.surec-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.surec-adim {
    background: #1c1f2e;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.surec-adim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6a3d 0%, #ff2d6b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.surec-adim:hover::before {
    opacity: 1;
}

.surec-adim:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 61, 0.3);
}

.surec-numara {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid #0a0d1a;
}

.surec-ikon {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 61, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.75rem auto 1.25rem;
}

.surec-ikon i {
    font-size: 1.5rem;
    color: #ff6a3d;
}

.surec-adim h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.surec-adim p {
    color: #71717a;
    font-size: 0.85rem;
    line-height: 1.5;
}

.surec-ok {
    display: none;
}

/* Sayfa Hero DÃ¼zenlemesi */
.sayfa-hero {
    padding: 7rem 0 4rem;
    background: linear-gradient(180deg, #0a0d1a 0%, #0f1220 100%);
}

.merkez-hero {
    max-width: 700px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hizmetler-grid-buyuk {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .surec-timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .hizmet-kart-detayli h3 {
        font-size: 1.2rem;
    }
}
/* ===== SAYFA HERO - PREMIUM TASARIM ===== */
.sayfa-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #0a0d1a 0%, #1a1d2e 100%);
    overflow: hidden;
}

.sayfa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 106, 61, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.sayfa-hero .container {
    position: relative;
    z-index: 1;
}

.sayfa-hero-icerik {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sayfa-hero .ust-baslik {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.15), rgba(255, 45, 107, 0.15));
    border: 1px solid rgba(255, 106, 61, 0.3);
    color: #ff6a3d;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.sayfa-hero h1 { font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 2rem; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); letter-spacing: -2px; }

.sayfa-hero h1 .vurgu {
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
}

.sayfa-hero p {
    font-size: 1.15rem;
    color: #a1a1aa;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.merkez-hero {
    animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 768px) {
    .sayfa-hero {
        padding: 8rem 0 4rem;
    }
    
    .sayfa-hero h1 { font-size: 4.5rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 2rem; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); letter-spacing: -2px; }
    
    .sayfa-hero p {
        font-size: 1rem;
    }
}


/* Hero Sadece Baþlýk çin Özel Stil */
.sayfa-hero-icerik h1:only-child,
.sayfa-hero-icerik h1:first-child:last-child {
    font-size: 4rem;
    margin-bottom: 0;
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .sayfa-hero-icerik h1:only-child,
    .sayfa-hero-icerik h1:first-child:last-child {
        font-size: 2.5rem;
    }
}


/* ===== HERO KOMPAKT DÜZENLEME ===== */
.sayfa-hero {
    padding: 7rem 0 2rem !important; /* Üst boþluk azaltýldý, alt boþluk minimal */
    min-height: auto !important;
}

.sayfa-hero-icerik h1:only-child,
.sayfa-hero-icerik h1:first-child:last-child {
    font-size: 3.5rem;
    padding: 0;
    margin: 0;
    line-height: 1.1;
}

/* Mobilde daha da kompakt */
@media (max-width: 768px) {
    .sayfa-hero {
        padding: 6rem 0 1.5rem !important;
    }
    .sayfa-hero-icerik h1:only-child {
        font-size: 2.2rem;
    }
}


/* HERO ORTALAMA DÜZELTMES */
.sayfa-hero-icerik {
    text-align: center !important;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sayfa-hero-icerik h1 {
    text-align: center !important;
    width: 100%;
}


/* ===== 5 ADIMLI SÜREÇ - RESMDEK TASARIM ===== */
.calisma-sureci {
    background: #0a0d1a;
    padding: 4rem 0;
}

.bolum-baslik h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.surec-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.surec-adim {
    background: #151823;
    border-radius: 20px;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.surec-adim:first-child {
    border: 1px solid rgba(255, 106, 61, 0.3);
    box-shadow: 0 0 20px rgba(255, 106, 61, 0.1);
}

.surec-adim:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 61, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.surec-numara {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 106, 61, 0.4);
    border: 4px solid #0a0d1a;
    z-index: 2;
}

.surec-ikon {
    width: 60px;
    height: 60px;
    background: rgba(255, 106, 61, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.surec-ikon i {
    font-size: 1.5rem;
    color: #ff6a3d;
}

.surec-adim h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.surec-adim p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .surec-timeline {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


/* ===== HAKKIMIZDA SAYFASI - MODERN TASARIM ===== */
.hakkimizda-detay {
    padding: 6rem 0;
    background: #0a0d1a;
    position: relative;
}

.hakkimizda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hakkimizda-sol h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.metin-icerik {
    color: #a1a1aa;
    line-height: 1.8;
    font-size: 1.1rem;
}

.ozellik-kart {
    background: #151823;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.ozellik-kart:hover {
    transform: translateX(10px);
    border-color: rgba(255, 106, 61, 0.3);
    background: #1c1f2e;
}

.ozellik-ikon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ozellik-ikon i {
    color: white;
    font-size: 1.2rem;
}

.ozellik-kart h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.ozellik-kart p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ZAMAN ÇZELGES */
.zaman-cizelgesi {
    padding: 6rem 0;
    background: #0f1220;
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 106, 61, 0) 0%, #ff6a3d 50%, rgba(255, 106, 61, 0) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item.sol {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item.sag {
    left: 50%;
    padding-left: 3rem;
}

.timeline-icerik {
    background: #151823;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-icerik:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 61, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-yil {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.timeline-item.sol .timeline-yil {
    left: 20px;
    right: auto;
}

.timeline-icerik h3 {
    color: #ff6a3d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.timeline-icerik p {
    color: #a1a1aa;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.timeline-nokta {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #ff6a3d;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 106, 61, 0.2);
    z-index: 2;
}

.timeline-item.sol .timeline-nokta {
    right: -11px;
}

.timeline-item.sag .timeline-nokta {
    left: -11px;
}

/* DEERLERMZ */
.degerlerimiz {
    padding: 6rem 0;
    background: #0a0d1a;
}

.degerler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.deger-kart {
    background: #151823;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.deger-kart:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 61, 0.3);
}

.deger-ikon {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.deger-kart:hover .deger-ikon {
    background: #ff6a3d;
    transform: rotateY(180deg);
}

.deger-kart:hover .deger-ikon i {
    color: white;
}

.deger-ikon i {
    font-size: 1.8rem;
    color: #ff6a3d;
    transition: all 0.3s ease;
}

.deger-kart h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.deger-kart p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hakkimizda-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-item.sol {
        left: 0;
        text-align: left;
    }
    
    .timeline-item.sag {
        left: 0;
    }
    
    .timeline-nokta {
        left: 10px !important;
        right: auto !important;
    }
    
    .timeline-yil {
        right: 20px !important;
        left: auto !important;
    }
}


/* ===== TIMELINE - RESMDEK ÖZEL TASARIM ===== */
.timeline-icerik {
    background: #151823;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

/* Gradient Baþlýk Kutusu */
.timeline-icerik::before {
    content: '';
    display: block;
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    height: 120px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 106, 61, 0.3);
}

/* Yýl Yazýsý - Arka Planda Büyük */
.timeline-yil {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
    line-height: 1;
    letter-spacing: -2px;
    width: 100%;
    text-align: center;
}

/* Baþlýk - Önde */
.timeline-icerik h3 {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    z-index: 2;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin: 0;
}

/* Açýklama Metni */
.timeline-icerik p {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    padding: 0 1rem;
}

/* Timeline Noktasý - Halka Þeklinde */
.timeline-nokta {
    width: 24px !important;
    height: 24px !important;
    background: #0a0d1a !important;
    border: 4px solid #ff6a3d !important;
    box-shadow: 0 0 0 4px rgba(255, 106, 61, 0.2) !important;
    top: 50% !important;
    transform: translateY(-50%);
}

/* Çizgi Rengi */
.timeline::before {
    background: rgba(255, 255, 255, 0.1);
}

/* Hover Efekti */
.timeline-icerik:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 61, 0.3);
}

/* Responsive Düzeltmeler */
@media (max-width: 768px) {
    .timeline-yil { font-size: 4rem; top: 40px; }
    .timeline-icerik h3 { font-size: 1.5rem; top: 80px; }
}


/* ===== REFERANSLAR SAYFASI - MODERN TASARIM ===== */
.referanslar-sayfa {
    padding: 6rem 0;
    background: #0a0d1a;
}

.referans-filtre {
    padding: 2rem 0;
    background: #0f1220;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filtre-butonlar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filtre-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a1a1aa;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filtre-btn:hover, .filtre-btn.aktif {
    background: linear-gradient(135deg, #ff6a3d 0%, #ff2d6b 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 106, 61, 0.3);
}

.referanslar-grid-buyuk {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.referans-kart-detayli {
    background: #151823;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.referans-kart-detayli:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 61, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.referans-logo-buyuk {
    height: 200px;
    background: #1c1f2e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.referans-logo-buyuk img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.referans-kart-detayli:hover .referans-logo-buyuk img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: scale(1.05);
}

.referans-bilgi {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.referans-sektor {
    display: inline-block;
    font-size: 0.8rem;
    color: #ff6a3d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.referans-bilgi h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.referans-bilgi p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.referans-web-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
    transition: all 0.3s ease;
}

.referans-web-btn:hover {
    color: #ff6a3d;
    padding-left: 5px;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       Ä ° L E T Ä ° Å ž Ä ° M   S A Y F A S I   M O D E R N   T A S A R I M  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 / *   M i n i   H e r o   B Ã ¶ l Ã ¼ m Ã ¼   * /  
 . s a y f a - h e r o - m i n i   {  
         p a d d i n g :   1 2 0 p x   0   6 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   t o p   c e n t e r ,   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 1 5 ) ,   t r a n s p a r e n t   7 0 % ) ;  
 }  
  
 . h e r o - m i n i - i c e r i k   h 1   {  
         f o n t - s i z e :   3 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   r i g h t ,   # f f f ,   # c c c ) ;  
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ;  
         - w e b k i t - t e x t - f i l l - c o l o r :   t r a n s p a r e n t ;  
         l e t t e r - s p a c i n g :   - 1 p x ;  
 }  
  
 . h e r o - m i n i - i c e r i k   p   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         m a x - w i d t h :   6 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 / *   Ä ° l e t i Å xi m   B Ã ¶ l Ã ¼ m Ã ¼   G e n e l   * /  
 . i l e t i s i m - b o l u m u   {  
         p a d d i n g :   0   0   1 0 0 p x ;  
 }  
  
 / *   Ä ° l e t i Å xi m   K a r t l a r Ä ±   G r i d   * /  
 . i l e t i s i m - k a r t l a r - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 4 ,   1 f r ) ;  
         g a p :   3 0 p x ;  
         m a r g i n - b o t t o m :   6 0 p x ;  
 }  
  
 . i l e t i s i m - k a r t   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         p a d d i n g :   3 0 p x   2 0 p x ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
 }  
  
 . i l e t i s i m - k a r t : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 3 ) ;  
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
 }  
  
 . i l e t i s i m - k a r t : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   t o p   r i g h t ,   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 1 ) ,   t r a n s p a r e n t   6 0 % ) ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   o p a c i t y   0 . 4 s   e a s e ;  
 }  
  
 . i l e t i s i m - k a r t : h o v e r : : b e f o r e   {  
         o p a c i t y :   1 ;  
 }  
  
 . k a r t - i k o n   {  
         w i d t h :   7 0 p x ;  
         h e i g h t :   7 0 p x ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 1 ) ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         m a r g i n :   0   a u t o   2 0 p x ;  
         f o n t - s i z e :   1 . 8 r e m ;  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         t r a n s i t i o n :   a l l   0 . 4 s   e a s e ;  
 }  
  
 . i l e t i s i m - k a r t : h o v e r   . k a r t - i k o n   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - c o l o r ) ;  
         c o l o r :   # f f f ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 )   r o t a t e ( 5 d e g ) ;  
         b o x - s h a d o w :   0   1 0 p x   2 0 p x   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 3 ) ;  
 }  
  
 . k a r t - b i l g i   h 3   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         c o l o r :   # f f f ;  
         m a r g i n - b o t t o m :   5 p x ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . k a r t - b i l g i   p   {  
         f o n t - s i z e :   0 . 9 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
 }  
  
 . k a r t - b i l g i   a ,  
 . k a r t - b i l g i   s p a n   {  
         d i s p l a y :   b l o c k ;  
         c o l o r :   # f f f ;  
         f o n t - w e i g h t :   5 0 0 ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         t r a n s i t i o n :   c o l o r   0 . 3 s ;  
         f o n t - s i z e :   1 . 0 5 r e m ;  
 }  
  
 . k a r t - b i l g i   a : h o v e r   {  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
 }  
  
 / *   F o r m   v e   H a r i t a   G r i d   * /  
 . i l e t i s i m - d e t a y - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 . 2 f r   0 . 8 f r ;  
         g a p :   4 0 p x ;  
         a l i g n - i t e m s :   s t r e t c h ;  
 }  
  
 / *   Ä ° l e t i Å xi m   F o r m u   * /  
 . i l e t i s i m - f o r m - w r a p p e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 2 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         p a d d i n g :   4 0 p x ;  
         b o r d e r - r a d i u s :   2 4 p x ;  
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ;  
 }  
  
 . f o r m - b a s l i k   {  
         m a r g i n - b o t t o m :   3 0 p x ;  
 }  
  
 . f o r m - b a s l i k   h 2   {  
         f o n t - s i z e :   2 r e m ;  
         c o l o r :   # f f f ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
 }  
  
 . f o r m - b a s l i k   p   {  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
 }  
  
 . m o d e r n - f o r m   . f o r m - r o w   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ;  
         g a p :   2 0 p x ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . f o r m - g r o u p   {  
         m a r g i n - b o t t o m :   2 0 p x ;  
 }  
  
 . f o r m - g r o u p   l a b e l   {  
         d i s p l a y :   b l o c k ;  
         m a r g i n - b o t t o m :   8 p x ;  
         c o l o r :   # c c c ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         m a r g i n - l e f t :   5 p x ;  
 }  
  
 . i n p u t - i c o n   {  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . i n p u t - i c o n   i   {  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   2 0 p x ;  
         t o p :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         t r a n s i t i o n :   c o l o r   0 . 3 s ;  
 }  
  
 . i n p u t - i c o n . t e x t a r e a - i c o n   i   {  
         t o p :   2 0 p x ;  
         t r a n s f o r m :   n o n e ;  
 }  
  
 . m o d e r n - f o r m   i n p u t ,  
 . m o d e r n - f o r m   t e x t a r e a   {  
         w i d t h :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         p a d d i n g :   1 5 p x   2 0 p x   1 5 p x   5 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         c o l o r :   # f f f ;  
         f o n t - f a m i l y :   ' P o p p i n s ' ,   s a n s - s e r i f ;  
         f o n t - s i z e :   1 r e m ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . m o d e r n - f o r m   i n p u t : f o c u s ,  
 . m o d e r n - f o r m   t e x t a r e a : f o c u s   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 0 5 ) ;  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         o u t l i n e :   n o n e ;  
         b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 1 ) ;  
 }  
  
 . m o d e r n - f o r m   i n p u t : f o c u s + i ,  
 . m o d e r n - f o r m   t e x t a r e a : f o c u s + i ,  
 . i n p u t - i c o n : f o c u s - w i t h i n   i   {  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
 }  
  
 / *   C h e c k b o x   T a s a r Ä ± m Ä ±   * /  
 . c h e c k b o x - g r o u p   {  
         m a r g i n - t o p :   1 0 p x ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         p a d d i n g - l e f t :   3 5 p x ;  
         c u r s o r :   p o i n t e r ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         u s e r - s e l e c t :   n o n e ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r   i n p u t   {  
         p o s i t i o n :   a b s o l u t e ;  
         o p a c i t y :   0 ;  
         c u r s o r :   p o i n t e r ;  
         h e i g h t :   0 ;  
         w i d t h :   0 ;  
 }  
  
 . c h e c k m a r k   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         h e i g h t :   2 2 p x ;  
         w i d t h :   2 2 p x ;  
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         b o r d e r - r a d i u s :   6 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r : h o v e r   i n p u t ~ . c h e c k m a r k   {  
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r   i n p u t : c h e c k e d ~ . c h e c k m a r k   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
 }  
  
 . c h e c k m a r k : a f t e r   {  
         c o n t e n t :   " " ;  
         p o s i t i o n :   a b s o l u t e ;  
         d i s p l a y :   n o n e ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r   i n p u t : c h e c k e d ~ . c h e c k m a r k : a f t e r   {  
         d i s p l a y :   b l o c k ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r   . c h e c k m a r k : a f t e r   {  
         l e f t :   8 p x ;  
         t o p :   4 p x ;  
         w i d t h :   6 p x ;  
         h e i g h t :   1 1 p x ;  
         b o r d e r :   s o l i d   w h i t e ;  
         b o r d e r - w i d t h :   0   2 p x   2 p x   0 ;  
         t r a n s f o r m :   r o t a t e ( 4 5 d e g ) ;  
 }  
  
 . c h e c k b o x - c o n t a i n e r   a   {  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
 }  
  
 / *   G Ã ¶ n d e r   B u t o n u   * /  
 . b t n - g o n d e r   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 8 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y - c o l o r ) ,   # f f 2 d 6 b ) ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         c o l o r :   # f f f ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   1 0 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         m a r g i n - t o p :   2 0 p x ;  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . b t n - g o n d e r : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   - 1 0 0 % ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   t r a n s p a r e n t ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ,   t r a n s p a r e n t ) ;  
         t r a n s i t i o n :   0 . 5 s ;  
 }  
  
 . b t n - g o n d e r : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;  
         b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 2 5 5 ,   1 0 6 ,   6 1 ,   0 . 4 ) ;  
 }  
  
 . b t n - g o n d e r : h o v e r : : b e f o r e   {  
         l e f t :   1 0 0 % ;  
 }  
  
 / *   H a r i t a   W r a p p e r   * /  
 . h a r i t a - w r a p p e r   {  
         h e i g h t :   1 0 0 % ;  
         m i n - h e i g h t :   5 0 0 p x ;  
         b o r d e r - r a d i u s :   2 4 p x ;  
         o v e r f l o w :   h i d d e n ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . h a r i t a - w r a p p e r   i f r a m e   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b o r d e r :   n o n e ;  
         f i l t e r :   g r a y s c a l e ( 1 0 0 % )   i n v e r t ( 9 2 % )   c o n t r a s t ( 8 3 % ) ;  
         / *   K o y u   t e m a   h a r i t a   e f e k t i   * /  
         t r a n s i t i o n :   f i l t e r   0 . 3 s ;  
 }  
  
 . h a r i t a - w r a p p e r : h o v e r   i f r a m e   {  
         f i l t e r :   g r a y s c a l e ( 0 % )   i n v e r t ( 0 % ) ;  
         / *   H o v e r ' d a   r e n k l i   * /  
 }  
  
 . h a r i t a - p l a c e h o l d e r   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   1 0 0 % ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         g a p :   1 5 p x ;  
 }  
  
 . h a r i t a - p l a c e h o l d e r   i   {  
         f o n t - s i z e :   3 r e m ;  
         o p a c i t y :   0 . 5 ;  
 }  
  
 / *   R e s p o n s i v e   D Ã ¼ z e n l e m e l e r   * /  
 @ m e d i a   ( m a x - w i d t h :   1 2 0 0 p x )   {  
         . i l e t i s i m - k a r t l a r - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   {  
         . i l e t i s i m - d e t a y - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . h a r i t a - w r a p p e r   {  
                 m i n - h e i g h t :   4 0 0 p x ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . h e r o - m i n i - i c e r i k   h 1   {  
                 f o n t - s i z e :   2 . 5 r e m ;  
         }  
  
         . i l e t i s i m - k a r t l a r - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   2 0 p x ;  
         }  
  
         . m o d e r n - f o r m   . f o r m - r o w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   0 ;  
         }  
  
         . i l e t i s i m - f o r m - w r a p p e r   {  
                 p a d d i n g :   2 5 p x ;  
         }  
 }  
 