﻿        /* İletişim — hero: kurumsal.css */

        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
        }

        .contact-form-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            height: 100%;
        }

        .contact-form-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .contact-form-card .subtitle {
            color: var(--gray);
            font-size: 0.9375rem;
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-label {
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .form-control-custom {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            font-size: 0.9375rem;
            color: var(--dark);
            background: #FAFBFC;
            transition: all 0.3s ease;
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.1);
        }

        .form-control-custom::placeholder {
            color: #94A3B8;
        }

        textarea.form-control-custom {
            min-height: 140px;
            resize: vertical;
        }

        .btn-submit {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(14, 116, 144, 0.3);
        }

        .btn-submit:hover {
            box-shadow: 0 8px 25px rgba(14, 116, 144, 0.4);
        }

        /* Contact Info */
        .contact-info-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            height: 100%;
        }

        .contact-info-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .contact-info-card .subtitle {
            color: var(--gray);
            font-size: 0.9375rem;
            margin-bottom: 2rem;
        }

        .contact-info-item {
            display: flex;
            gap: 1rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--border);
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            box-shadow: 0 4px 12px rgba(14, 116, 144, 0.25);
        }

        .contact-info-content h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .contact-info-content p,
        .contact-info-content a {
            color: var(--gray);
            font-size: 0.9375rem;
            text-decoration: none;
            margin: 0;
            transition: color 0.3s ease;
        }

        .contact-info-content a:hover {
            color: var(--primary);
        }

        .contact-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .contact-social a {
            width: 42px;
            height: 42px;
            background: var(--light);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .contact-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        /* Map Section */
        .map-section {
            position: relative;
            height: 450px;
            background: var(--light);
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 2.25rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .page-hero {
                height: 220px;
            }
            
            .page-hero-content h1 {
                font-size: 1.75rem;
            }

            .contact-form-card,
            .contact-info-card {
                padding: 1.5rem;
            }

            .map-section {
                height: 320px;
            }
        }

