/* ROY KAPAK - İletişim Sayfası CSS */

/* CSS Variables - Ana sayfayla uyumlu */
:root {
    --primary-color: #DD7F2F;
    --primary-dark: #C06A1F;
    --primary-light: #E89A4A;
    --secondary-color: #F0EDE8;
    --secondary-dark: #E5E5E5;
    --secondary-light: #F9F9F7;
    
    /* Nötr Renkler */
    --dark: #2B2B2B;
    --dark-gray: #4A4A4A;
    --gray: #6B6B6B;
    --light-gray: #9CA3AF;
    --lighter-gray: #E5E5E5;
    --light: #F9F9F7;
    --white: #FFFFFF;
    
    /* Hover ve Link Renkleri */
    --hover-color: #C06A1F;
    --link-color: #DD7F2F;
    --link-hover: #C06A1F;
    
    /* Tipografi */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* Boyutlar */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;
    
    /* Gölgeler */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Geçişler */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* Contact Page Specific Styles - Hakkımızda sayfası gibi */
.contact-page {
    background-color: var(--light);
}

/* ===== ANİMASYONLAR ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-center {
    text-align: center;
}

/* Hero Section - Hakkımızda sayfası gibi */
.contact-hero {
    background: #F9F9F7;
    color: var(--dark);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 70px;
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    color: var(--dark);
    text-shadow: none;
    font-family: var(--font-secondary);
}

.contact-hero .hero-title .accent {
    color: var(--primary-color);
}

.contact-hero .hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: var(--gray);
}

.contact-hero .hero-btn {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
    font-family: var(--font-primary);
}

.contact-hero .hero-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Quick Contact Section - Hakkımızda sayfası gibi */
.quick-contact-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-card .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.whatsapp-card .card-icon {
    color: #25D366;
}

.phone-card .card-icon {
    color: var(--primary-color);
}

.email-card .card-icon {
    color: #007BFF;
}

.address-card .card-icon {
    color: #6C757D;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.contact-card .card-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card .card-detail {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 80px;
    text-align: center;
}

.contact-card .card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.95rem;
    margin-top: auto;
    align-self: center;
    width: fit-content;
}

.whatsapp-card .card-action {
    background: #25D366;
    color: var(--white);
}

.whatsapp-card .card-action:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.phone-card .card-action {
    background: var(--primary-color);
    color: var(--white);
}

.phone-card .card-action:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.email-card .card-action {
    background: #007BFF;
    color: var(--white);
}

.email-card .card-action:hover {
    background: #0056B3;
    transform: translateY(-2px);
}

.address-card .card-action {
    background: #6C757D;
    color: var(--white);
}

.address-card .card-action:hover {
    background: #495057;
    transform: translateY(-2px);
}

/* Contact Form Section - Hakkımızda sayfası gibi */
.contact-form-section {
    padding: 80px 0;
    background: var(--light);
}

.form-section-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.form-content:hover {
    border-color: var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.form-description {
    font-family: var(--font-primary);
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Alert Messages */
.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border-left-color: var(--success-color);
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border-left-color: var(--error-color);
}

.alert i {
    font-size: 1.5rem;
}

.alert-content h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.alert-content p {
    margin: 0;
    opacity: 0.9;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
    width: 16px;
}

.form-control {
    padding: 12px 16px;
    border: 2px solid var(--lighter-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(221, 127, 47, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.submit-btn, .reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-width: 160px;
    justify-content: center;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.reset-btn {
    background: var(--light-gray);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.reset-btn:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.sidebar-widget:first-child {
    margin-top: 0;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sidebar-widget:hover::before {
    transform: scaleX(1);
}

.sidebar-widget:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.widget-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.widget-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

/* Working Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark);
}

.hours-item .time {
    font-family: var(--font-primary);
    color: var(--gray);
    font-weight: 500;
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 15px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--gray);
}

.hours-note i {
    color: var(--info-color);
}

/* Tips Widget */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.tips-list span {
    font-family: var(--font-primary);
    color: var(--dark);
    font-weight: 500;
}

/* Trust Widget */
.trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.trust-item:hover i {
    color: var(--white);
}

.trust-item span {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Map Section - Hakkımızda sayfası gibi */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.map-info {
    background: var(--light);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.map-info:hover::before {
    transform: scaleX(1);
}

.map-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.location-details h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    color: var(--dark);
    font-weight: 500;
}

.location-details i {
    color: var(--primary-color);
    width: 20px;
}

.map-btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition);
}

.map-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.map-frame:hover {
    border-color: var(--primary-color);
}

.map-frame iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* CTA Section - Hakkımızda sayfası gibi */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.contact-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cta .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--white);
}

.contact-cta .cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-btn.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design - Hakkımızda sayfası gibi */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .form-section-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .submit-btn, .reset-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .contact-cta {
        padding: 60px 0;
    }
    
    .contact-cta .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 50px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .form-content {
        padding: 25px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    .map-info {
        padding: 25px 20px;
    }
    
    .location-details h3 {
        font-size: 1.5rem;
    }
}
