 /* Contact Page Specific Styles */

        /* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/homepage/j.jpeg') no-repeat center center;
            background-size: cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        .contact-hero h1 {
            font-size: 52px;
            font-weight: 700;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
            letter-spacing: 1px;
        }

        .contact-hero p {
            font-size: 20px;
            font-weight: 500;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.5;
        }

        .contact-section {
            background-color: #f8f9fa;
        }

        .contact-section h2 {
            color: #333;
            margin-bottom: 1.5rem;
        }

        .contact-section form .form-control {
            border-radius: 0;
            border: 1px solid #ddd;
        }

        .contact-section form .btn-primary {
            background-color: #dc3545;
            border: none;
            border-radius: 0;
            padding: 10px 30px;
        }

        .contact-section form .btn-primary:hover {
            background-color: #c82333;
        }

        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }

        .contact-info li i {
            color: #dc3545;
            margin-right: 10px;
            font-size: 1.2rem;
            margin-top: 4px;
        }

        .social-links a {
            color: #333;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #dc3545;
        }

        .map-section {
            padding: 60px 0;
        }

        .map-container {
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
        }

        .map-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .map-pin {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background-color: #dc3545;
            border-radius: 50%;
            box-shadow: 0 0 0 8px rgba(220, 53, 69, 0.3);
        }

        .map-pin:after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -8px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 12px solid #dc3545;
        }

        @media (max-width: 768px) {
            .contact-hero {
                height: 200px;
            }

            .contact-hero h1 {
                font-size: 36px;
            }

            .contact-hero p {
                font-size: 16px;
            }
        }

        .map-section {
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        
        .map-container {
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 8px; /* Köşeleri yumuşatmak için */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif bir gölge eklemek için */
        }
        
        .responsive-iframe-container {
            position: relative;
            padding-bottom: 75%; /* 4:3 oranı için */
            height: 0;
            overflow: hidden;
        }
        
        .responsive-iframe-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .form-control[type="text"][name="website"] {
        display: none;
    }