/* ===== HERO ===== */
        .contact-hero {
            position: relative;
            padding: 160px 0 100px;
            text-align: center;
            color: #fff;
            overflow: hidden;
            margin-top: 60px;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45,80,22,0.94) 0%, rgba(107,142,35,0.88) 50%, rgba(26,58,10,0.94) 100%);
            z-index: 1;
        }

        .contact-hero-bg {
            position: absolute;
            inset: 0;
            background: url('../../images/brand/olive-hero.svg') center/cover no-repeat;
        }

        .contact-hero .container {
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .contact-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ===== ANA İÇERİK ===== */
        .contact-main {
            padding: 80px 0 100px;
            background: linear-gradient(180deg, #f8f9f5 0%, #fff 100%);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 50px;
            align-items: start;
        }

        /* ===== FORM ===== */
        .contact-form-card {
            background: #fff;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 12px 50px rgba(0,0,0,0.06);
            border: 1px solid rgba(0,0,0,0.04);
        }

        .form-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 8px;
        }

        .form-subheading {
            color: var(--text-light);
            margin-bottom: 35px;
            font-size: 0.95rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-color);
            margin-bottom: 8px;
        }

        .form-group label .required {
            color: #e74c3c;
            margin-left: 2px;
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e8e8;
            border-radius: 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: var(--text-color);
            background: #fafafa;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-color);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(143,188,63,0.1);
        }

        .form-input::placeholder {
            color: #bbb;
        }

        textarea.form-input {
            resize: vertical;
            min-height: 130px;
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border: none;
            border-radius: 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.35s ease;
            box-shadow: 0 8px 30px rgba(45,80,22,0.2);
            margin-top: 5px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(45,80,22,0.3);
        }

        .form-submit:active {
            transform: translateY(-1px);
        }

        /* Alerts */
        .alert-box {
            padding: 16px 20px;
            border-radius: 14px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            animation: slideDown 0.4s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .alert-box--success {
            background: #e8f8e8;
            color: #1a7a1a;
            border: 1px solid #c3e6c3;
        }

        .alert-box--error {
            background: #fde8e8;
            color: #b91c1c;
            border: 1px solid #f5c6c6;
        }

        .alert-box i {
            font-size: 20px;
            flex-shrink: 0;
        }

        /* ===== SIDEBAR ===== */
        .contact-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .info-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: 0 8px 35px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.04);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.09);
        }

        .info-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .info-card:nth-child(1) .info-card-icon { background: linear-gradient(135deg, #e8f5d8, #d4ecc0); color: var(--primary-color); }
        .info-card:nth-child(2) .info-card-icon { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #2980b9; }
        .info-card:nth-child(3) .info-card-icon { background: linear-gradient(135deg, #fef9e0, #fdf2c4); color: #b8941a; }

        .info-card h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .info-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-light);
        }

        .info-card a {
            color: var(--secondary-color);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: var(--primary-color);
        }

        /* Sosyal medya kartı */
        .social-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border: none;
        }

        .social-card h4 {
            color: #fff;
        }

        .social-card p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 20px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icon-btn {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .social-icon-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-3px);
        }

        /* ===== HARİTA ===== */
        .map-section {
            background: #fff;
            padding: 0 0 100px;
        }

        .map-wrapper {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 12px 50px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.04);
        }

        .map-wrapper iframe {
            display: block;
            width: 100%;
            height: 380px;
            border: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .contact-layout {
                grid-template-columns: 1fr 340px;
                gap: 35px;
            }
        }

        @media (max-width: 768px) {
            .contact-hero {
                padding: 140px 0 70px;
            }

            .contact-main {
                padding: 50px 0 70px;
            }

            .contact-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-form-card {
                padding: 30px 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .contact-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .info-card {
                flex: 1 1 calc(50% - 12px);
                min-width: 220px;
            }

            .map-wrapper iframe {
                height: 280px;
            }
        }

        @media (max-width: 480px) {
            .contact-sidebar {
                flex-direction: column;
            }

            .info-card {
                flex: 1 1 100%;
            }
        }