/* İletişim Sayfası Özel Stiller */

/* Header Override */
body .header {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body .header.scrolled {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.98) 0%, rgba(139, 111, 71, 0.98) 100%);
}

body .logo-img {
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

body .nav-link {
    color: var(--white);
}

/* Mobile Menu Override */
@media (max-width: 1024px) {
    body .nav-menu {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    body .nav-link {
        color: var(--text-dark) !important;
        text-shadow: none !important;
    }
    
    body .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(74, 124, 89, 0.1) !important;
    }
}

body .cta-button {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Hero */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('images/Bahçe&peyzaj ürünleri/WhatsApp Image 2025-11-14 at 19.34.56 (1).jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.88) 0%, rgba(44, 62, 80, 0.88) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff5 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: inline-block;
}

.contact-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* CTA Section */
.contact-cta {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    text-align: center;
}

.contact-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.contact-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .contact-hero {
        height: 60vh;
        margin-top: 80px;
    }

    .contact-hero-title {
        font-size: 3.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.4rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .contact-info-card {
        padding: 4.5rem 2rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-value {
        font-size: 2rem;
        word-break: break-word;
        line-height: 1.3;
    }

    .contact-cta-title {
        font-size: 3rem;
    }

    .contact-cta-text {
        font-size: 1.3rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .contact-info-section {
        padding: 6rem 2rem;
    }

    .contact-info-card {
        padding: 5rem 3rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-value {
        font-size: 2.25rem;
        word-break: break-word;
    }

    .contact-desc {
        font-size: 1.15rem;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .contact-hero-title {
        font-size: 4rem;
    }

    .contact-value {
        font-size: 2.75rem;
        word-break: break-word;
    }

    .contact-cta-title {
        font-size: 3.5rem;
    }
}

/* Yüzen İletişim Butonları */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.whatsapp-btn,
.phone-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6548 100%);
    color: white;
}

.whatsapp-btn:hover,
.phone-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn:active,
.phone-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 3rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .contact-value {
        font-size: 1.4rem;
        word-break: break-all;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .contact-desc {
        font-size: 1rem;
    }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg,
    .phone-btn svg {
        width: 22px;
        height: 22px;
    }
}

