:root {
        --primary-color: #333333;
        --secondary-color: #555555;
        --text-color: #444444;
        --light-bg: #f8f8f8;
        --white: #ffffff;
        --gold: #c5a059;
        --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --instagram: #E1306C;
        --facebook: #3b5998;
        --twitter: #1DA1F2;
        --youtube: #FF0000;
        --base-font: 'Poppins', sans-serif;
        --heading-font: 'Playfair Display', serif;
    }
    
    body {
        font-family: var(--base-font);
        background-color: var(--light-bg);
        color: var(--text-color);
        line-height: 1.6;
        margin: 0;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-transform: none !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: var(--heading-font);
        color: var(--primary-color);
        margin-top: 0;
        line-height: 1.3;
        font-weight: 700;
    }
    
    p, a, span, li, td, th, input, textarea, select, button {
        font-family: var(--base-font);
        text-transform: none;
        letter-spacing: 0.02em;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    /* Hero Bölümü */
    .contact-hero {
        position: relative;
        height: 400px;
        margin-bottom: 60px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .contact-hero-content {
        position: absolute;
        z-index: 2;
        text-align: center;
        padding: 40px;
        color: white;
        max-width: 800px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .contact-hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }
    
    .contact-hero-content p {
        font-size: 1.3rem;
        opacity: 0.9;
    }
    
    .contact-hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }
    
    /* İletişim İçerik */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    /* İletişim Bilgileri */
    .contact-info {
        background: var(--white);
        padding: 40px;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .contact-info h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--gold);
    }
    
    .info-item {
        display: flex;
        margin-bottom: 25px;
        align-items: flex-start;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        background: var(--light-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        color: var(--gold);
        font-size: 1.2rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--primary-color);
    }
    
    .info-content p, .info-content a {
        color: var(--text-color);
        margin: 0;
        font-size: 1rem;
    }
    
    .info-content a {
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .info-content a:hover {
        color: var(--gold);
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s;
        font-size: 1.2rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .social-link.instagram {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }
    
    .social-link.facebook {
        background-color: var(--facebook);
    }
    
    .social-link.twitter {
        background-color: var(--twitter);
    }
    
    .social-link.youtube {
        background-color: var(--youtube);
    }
    
    .social-link:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    /* İletişim Formu */
    .contact-form-container {
        background: var(--white);
        padding: 40px;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .contact-form-container h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--gold);
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--primary-color);
        font-size: 1rem;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        font-size: 1rem;
        transition: all 0.3s;
        background: var(--light-bg);
        font-family: var(--base-font);
    }
    
    .form-control:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
        outline: none;
        background: var(--white);
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .submit-btn {
        background: var(--gold);
        color: white;
        border: none;
        padding: 12px 30px;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 500;
        font-family: var(--base-font);
    }
    
    .submit-btn:hover {
        background: #b38f4f;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* Harita Bölümü */
    .map-container {
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        margin-bottom: 60px;
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    /* Mesaj Bildirimleri */
    .alert {
        padding: 15px;
        margin-bottom: 30px;
        border-radius: 4px;
        text-align: center;
        font-family: var(--base-font);
    }
    
    .alert-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    
    .alert-danger {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    
    /* Responsive Tasarım */
    @media (max-width: 1200px) {
        .container {
            padding: 20px 30px;
        }
    }
    
    @media (max-width: 992px) {
        .contact-hero-content h1 {
            font-size: 2.8rem;
        }
        
        .contact-hero {
            height: 350px;
        }
        
        .contact-info h2,
        .contact-form-container h2 {
            font-size: 1.8rem;
        }
    }
    
    @media (max-width: 768px) {
        body {
            font-size: 15px;
        }
        
        .contact-content {
            grid-template-columns: 1fr;
        }
        
        .contact-hero {
            height: 300px;
        }
        
        .contact-hero-content h1 {
            font-size: 2.2rem;
        }
        
        .contact-hero-content p {
            font-size: 1rem;
        }
        
        .contact-info, .contact-form-container {
            padding: 30px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
        
        .info-content h3 {
            font-size: 1rem;
        }
        
        .info-content p, .info-content a {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 576px) {
        body {
            font-size: 14px;
        }
        
        .container {
            padding: 15px;
        }
        
        .contact-hero {
            height: 250px;
        }
        
        .contact-hero-content h1 {
            font-size: 1.8rem;
        }
        
        .info-item {
            flex-direction: column;
        }
        
        .info-icon {
            margin-bottom: 15px;
            margin-right: 0;
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .social-links {
            justify-content: center;
        }
        
        .contact-info h2,
        .contact-form-container h2 {
            font-size: 1.5rem;
        }
        
        .form-group label {
            font-size: 0.95rem;
        }
        
        .form-control {
            font-size: 14px;
            padding: 10px 12px;
        }
        
        .submit-btn {
            font-size: 14px;
            padding: 10px 25px;
        }
    }