﻿/* === contact.html === */

        /* --- DÉ™yiÅŸÉ™nlÉ™r vÉ™ SÄ±fÄ±rlama --- */
/* Header/promo/nav chrome main.css-dən gəlir — dublikat silindi */
    


/* ÆlaqÉ™ BÃ¶lmÉ™sinin Ãœmumi Skopu */
.makina-contact-scope {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding: 0 0 60px 0;
    display: flex;
    flex-direction: column;
}

.makina-contact-scope *,
.makina-contact-scope *::before,
.makina-contact-scope *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ãœst Gradient Banner vÉ™ AxÄ±cÄ± Animasiya */
.makina-contact-scope .contact-banner {
    animation: contactFlowGradient 15s ease infinite;
    background: linear-gradient(-45deg, #1a2a6c, #b21f1f, var(--primary), #fdbb2d);
    background-size: 400% 400%;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}

@keyframes contactFlowGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.makina-contact-scope .banner-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.makina-contact-scope .banner-breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.makina-contact-scope .banner-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.makina-contact-scope .banner-breadcrumb a:hover {
    opacity: 0.7;
}

.makina-contact-scope .banner-breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

/* Æsas MÉ™zmun Konteyneri */
.makina-contact-scope .contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

/* Sol TÉ™rÉ™f: ÆlaqÉ™ MÉ™lumatlarÄ± */
.makina-contact-scope .contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.makina-contact-scope .info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 20px;
}

.makina-contact-scope .info-icon {
    width: 50px;
    height: 50px;
    background: rgba(247, 151, 28, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.makina-contact-scope .info-details h3 {
    font-size: 1.05rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 4px;
}

.makina-contact-scope .info-details p,
.makina-contact-scope .info-details a {
    font-size: 1.15rem;
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.makina-contact-scope .info-details a:hover {
    color: var(--primary);
}

/* SaÄŸ TÉ™rÉ™f: ÆlaqÉ™ Formu */
.makina-contact-scope .contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.makina-contact-scope .form-title {
    font-size: 1.4rem;
    color: #212529;
    font-weight: 600;
    margin-bottom: 8px;
}

.makina-contact-scope .form-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.makina-contact-scope .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Ä°nput EffektlÉ™ri (Floating Label) */
.makina-contact-scope .input-wrapper {
    position: relative;
    width: 100%;
}

.makina-contact-scope .custom-input,
.makina-contact-scope .custom-textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    color: #212529;
    background-color: transparent;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.makina-contact-scope .custom-textarea {
    min-height: 120px;
    resize: vertical;
}

.makina-contact-scope .custom-input:focus,
.makina-contact-scope .custom-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(247, 151, 28, 0.15);
}

/* Ã‡É™rÃ§ivÉ™ Ã¼zÉ™rindÉ™ki etiket */
.makina-contact-scope .custom-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 6px;
    color: #6c757d;
    font-size: 1rem;
    pointer-events: none;
    transition: transform 0.2s ease, top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.makina-contact-scope .textarea-wrapper .custom-label {
    top: 26px;
}

.makina-contact-scope .custom-input:focus ~ .custom-label,
.makina-contact-scope .custom-input:not(:placeholder-shown) ~ .custom-label,
.makina-contact-scope .custom-textarea:focus ~ .custom-label,
.makina-contact-scope .custom-textarea:not(:placeholder-shown) ~ .custom-label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

/* GÃ¶ndÉ™r DÃ¼ymÉ™si */
.makina-contact-scope .submit-btn {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.makina-contact-scope .submit-btn:hover {
    background-color: #e08512;
}

.makina-contact-scope .submit-btn:active {
    transform: scale(0.98);
}

/* UÄŸurlu GÃ¶ndÉ™rilmÉ™ BildiriÅŸi */
.makina-contact-scope .success-toast {
    display: none;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsivlik (Mobil vÉ™ PlanÅŸet) */
@media (max-width: 992px) {
    .makina-contact-scope .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .makina-contact-scope .contact-banner { padding: 35px 15px; }
    .makina-contact-scope .banner-title { font-size: 1.75rem; }
    .makina-contact-scope .contact-form-card { padding: 25px 20px; }
    .makina-contact-scope .info-card { padding: 20px; }
}



/* Footer chrome main.css-dən gəlir — dublikat silindi */



/* fixed-social styles live in main.css */
