/* ========== CONTACT HERO ========== */
.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(24,36,25,0.8), rgba(5,7,5,1));
}

/* ARKA PLAN GÖRSELİ */
.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://lezzet10da.com/images/uploads/banner1_20250919_15441411963438317726.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
    filter: grayscale(0.3) blur(2px);
}

/* OVERLAY - Görselin üzerine karanlık katman */
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5,7,6,0.85) 0%,
        rgba(18,26,17,0.75) 50%,
        rgba(5,7,6,0.9) 100%
    );
    z-index: 1;
}

/* Animasyonlu glow efekti - ZİNDEX DÜZELT */
.contact-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(134,183,106,0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: contactGlow 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes contactGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(50px, 50px) scale(1.2); opacity: 0.7; }
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUpContact 1s ease-out 0.3s forwards;
}

@keyframes fadeInUpContact {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-breadcrumb {
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-breadcrumb a {
    color: var(--accent-green);
    transition: color 300ms ease-out;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: var(--accent-gold);
}

.page-breadcrumb .separator {
    color: rgba(134,183,106,0.4);
}

.page-breadcrumb .current {
    color: var(--text-light);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.contact-title span {
    background: linear-gradient(120deg, var(--accent-gold), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

/* ========== CONTACT FORM ========== */
.contact-form-wrapper {
    opacity: 0;
    transform: translate3d(-60px, 40px, -100px) rotateY(-15deg);
    transition: all 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-form-wrapper.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 12px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(134,183,106,0.2);
    background: radial-gradient(circle at top left, rgba(134,183,106,0.05), rgba(10,14,11,0.8));
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(134,183,106,0.6);
    background: radial-gradient(circle at top left, rgba(134,183,106,0.1), rgba(10,14,11,0.9));
    box-shadow: 0 0 30px rgba(134,183,106,0.2), 0 10px 40px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 8px;
}

/* ========== CONTACT INFO ========== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translate3d(60px, 40px, -100px) rotateY(15deg);
    transition: all 1200ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-info-wrapper.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0);
}

.info-card {
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(134,183,106,0.2);
    background: radial-gradient(circle at top left, rgba(134,183,106,0.08), rgba(10,14,11,0.6));
    transition: all 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.info-card:hover {
    transform: translateY(-8px) rotateY(5deg) scale(1.02);
    border-color: rgba(134,183,106,0.5);
    background: radial-gradient(circle at top left, rgba(134,183,106,0.15), rgba(10,14,11,0.8));
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 40px rgba(134,183,106,0.3);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.info-card a {
    color: var(--accent-green);
    transition: color 300ms ease-out;
}

.info-card a:hover {
    color: var(--accent-gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(134,183,106,0.2);
    background: radial-gradient(circle at top left, rgba(134,183,106,0.08), rgba(10,14,11,0.6));
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(134,183,106,0.3);
    background: rgba(134,183,106,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
    transition: all 400ms ease-out;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.1);
    background: rgba(134,183,106,0.25);
    border-color: rgba(134,183,106,0.7);
    box-shadow: 0 10px 30px rgba(134,183,106,0.4);
}

.social-link:hover svg {
    color: var(--text-light);
}

/* ========== MAP ========== */
.contact-map {
    width: 100%;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.9);
    border: 1px solid rgba(134,183,106,0.2);
    opacity: 0;
    transform: translateY(60px);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-map.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(0.85);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: minmax(0, 1fr);
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .contact-hero {
        min-height: 40vh;
        padding: 120px 0 60px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        margin-bottom: 60px;
    }
    
    .form-header h2 {
        font-size: 26px;
    }
    
    .contact-map {
        height: 350px;
    }
}