﻿/* ==========================================
   iletisim.css
   İletişim sayfasına özel stiller
   ========================================== */

/* Modern Design System Tokens */
:root {
    --vektorel-orange: #F5891E;
    --vektorel-blue: #005F8D;
    --vektorel-dark: #1A1A1A;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.iletisimHero {
    background-image: url('/images/iletisim/iletisim.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 10vh;
}

.vektorel-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

/* Form Styling */
.iletisim-form-container {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.form-control {
    border-radius: 0.75rem;
    border: 2px solid #f0f0f0;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--vektorel-orange);
    box-shadow: 0 0 0 0.2rem rgba(245, 137, 30, 0.1);
}

.btn-premium {
    background: var(--vektorel-orange);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-premium:hover {
    background: #e07b1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 137, 30, 0.3);
    color: white;
}

/* Typography */
.display-text {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.sub-display-text {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
}

.section-title {
    color: var(--vektorel-blue);
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--vektorel-orange);
    border-radius: 2px;
}

.contact-card {
    background: #f8fbff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #eef4fb;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 95, 141, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--vektorel-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .display-text {
        font-size: 2.5rem;
    }
    .sub-display-text {
        font-size: 1.125rem;
    }
    .iletisim-form-container {
        padding: 1.5rem;
        margin-top: -50px;
        border-radius: 1.5rem;
    }
    .iletisimHero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
    }
}
