/* LUVENCIA İletişim Sayfası - Özel CSS Stilleri */
/* Ultra lüks iletişim sayfası için özel tasarım */

/* İletişim Hero Bölümü */
.contact-hero-section {
    height: 60vh;
    background: linear-gradient(135deg, #0a5f35 0%, #071f12 50%, #021a0f 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

/* Ana İletişim Bölümü */
.contact-main-section {
    background: linear-gradient(180deg, #121212 0%, #1a1a1a 100%);
    min-height: 80vh;
}

/* Form Konteyner */
.contact-form-container {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
}

/* Form Grupları */
.form-group {
    position: relative;
}

.form-group label {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

/* Ofis Bilgileri Konteyner */
.office-info-container {
    padding-left: 2rem;
}

/* Ofis Kartları */
.office-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    background-clip: padding-box;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-card:hover::before {
    opacity: 1;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Harita Bölümü */
.map-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.map-container {
    position: relative;
    border: 2px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(251, 191, 36, 0.1) 50%, transparent 52%);
    pointer-events: none;
    z-index: 1;
}

/* Özel Animasyonlar */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .office-info-container {
        padding-left: 0;
        margin-top: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        height: 50vh;
    }

    .contact-form-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .office-card {
        margin: 1rem 0;
    }
}

/* Özel Scroll Bar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

/* Form Validation Stilleri */
.form-group input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #fbbf24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* SSS (FAQ) Stilleri */
.faq-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.faq-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: rgba(251, 191, 36, 0.1);
}

.faq-answer {
    transition: all 0.3s ease;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.faq-answer p {
    line-height: 1.6;
}

/* İstatistikler Bölümü */
.stats-section {
    background: linear-gradient(135deg, #0a5f35 0%, #071f12 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(251,191,36,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
}

.stats-section>div {
    position: relative;
    z-index: 1;
}