/* hakkimizda.css */

/* BLOK 1 */
* { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary: #5a6677;
            --accent: #c9a227;
            --text: #2d3748;
            --text-light: #718096;
            --bg: #ffffff;
            --bg-alt: #f8f9fa;
            --card-bg: #ffffff;
            --border: #e2e8f0;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }
        
        body.dark-mode {
            --primary: #6b7a8a;
            --text: #e2e8f0;
            --text-light: #a0aec0;
            --bg: #1a1a2e;
            --bg-alt: #252542;
            --card-bg: #2d2d44;
            --border: #3d3d5c;
        }
        
        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        
        body.dark-mode header { background: rgba(26,26,46,0.95); }
        
        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-wrapper img { height: 45px; width: auto; }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: 3px;
        }
        
        nav { display: flex; gap: 35px; }
        
        nav a {
            color: var(--text);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 8px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        nav a:hover, nav a.active { color: var(--primary); }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after, nav a.active::after { width: 100%; }
        
        .header-actions { display: flex; align-items: center; gap: 15px; }
        
        .dark-toggle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--bg-alt);
            border: 1px solid var(--border);
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .dark-toggle:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text);
        }
        
        /* PAGE HERO */
        .page-hero {
            padding: 160px 5% 80px;
            background: var(--bg-alt);
            text-align: center;
        }
        
        .page-label {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 20px;
            padding: 8px 20px;
            background: rgba(90, 102, 119, 0.1);
            border-radius: 30px;
        }
        
        body.dark-mode .page-label {
            background: rgba(107, 122, 138, 0.2);
            color: #8b9cb3;
        }
        
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }
        
        .page-hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* CONTENT SECTIONS */
        .content-section {
            padding: 80px 5%;
            background: var(--bg);
        }
        
        .content-section:nth-child(even) {
            background: var(--bg-alt);
        }
        
        .section-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary);
        }
        
        .section-text {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 20px;
        }
        
        /* VALUES GRID */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            background: var(--card-bg);
            padding: 35px;
            border-radius: 16px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }
        
        body.dark-mode .value-card:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-alt);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
        }
        
        .value-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 12px;
        }
        
        .value-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        /* CTA */
        .cta-section {
            padding: 80px 5%;
            background: var(--primary);
            text-align: center;
        }
        
        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            color: rgba(255,255,255,0.8);
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 16px 40px;
            background: white;
            color: var(--primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* FOOTER */
        footer {
            background: var(--bg-alt);
            padding: 40px 5%;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        
        footer p {
            color: var(--text-light);
            font-size: 14px;
        }
        
        footer #footerCompany {
            font-weight: 600;
            color: var(--text);
        }
        
        /* RESPONSIVE */
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--bg);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border);
            }
            nav.active { display: flex; }
            nav a { padding: 15px 0; border-bottom: 1px solid var(--border); }
            .page-hero h1 { font-size: 36px; }
            .page-hero p { font-size: 16px; }
            .section-title { font-size: 28px; }
        }

/* BLOK 2 */
img{max-width:100%;height:auto;object-fit:cover;}
.team-img,.about-img,.project-img,.service-img{width:100%;height:auto;object-fit:cover;border-radius:12px;}

/* BLOK 3 */
@media (max-width: 768px) {
    nav.active {
        display: flex !important;
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        background: rgba(255,255,255,0.97) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 60px 20px 40px !important;
        gap: 4px !important;
        z-index: 99999 !important;
        border-bottom: none !important;
    }
    nav.active a {
        font-size: 16px !important;
        letter-spacing: 2px !important;
        padding: 14px 20px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 10px !important;
        border-bottom: none !important;
        color: #2c2c2c !important;
    }
    nav.active a:hover, nav.active a:active {
        background: #f3f4f6 !important;
    }
    nav.active a.active {
        background: #1a1a1a !important;
        color: #fff !important;
    }
    .menu-toggle {
        z-index: 100001 !important;
        position: relative !important;
        font-size: 28px !important;
    }
    body.dark-mode nav.active {
        background: rgba(30,30,30,0.97) !important;
    }
    body.dark-mode nav.active a {
        color: #e0e0e0 !important;
    }
    body.dark-mode nav.active a.active {
        background: #fff !important;
        color: #1a1a1a !important;
    }
}

