/* ==========================================================================
   Gülen Yüz Temizlik - Contact Stylesheet (css/contact.css)
   Contains styles specific to contact.html (Direct Cards, Booking Guide, FAQ)
   ========================================================================== */

/* ==========================================
   1. PAGE BANNER (HERO / BREADCRUMB)
   ========================================== */
.page-banner {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #153e68 100%);
    padding: 60px 0;
    color: #ffffff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 30%, rgba(35, 155, 65, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.page-banner-content {
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cbdbee;
    margin-bottom: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: #cbdbee;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb .current {
    color: var(--accent-yellow);
    font-weight: 600;
}

.page-banner-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.page-banner-desc {
    font-size: 15px;
    color: #cbdbee;
    line-height: 1.6;
    font-weight: 400;
}


/* ==========================================
   2. CONTACT INFO CARDS (3 CARDS)
   ========================================== */
.contact-cards-section {
    padding: 70px 0 30px 0;
    background-color: #ffffff;
    width: 100%;
}

.contact-cards-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 6px 22px rgba(11, 49, 84, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(11, 49, 84, 0.12);
    border-color: #d6e2ee;
}

.contact-info-card.highlight-card {
    border-color: rgba(35, 155, 65, 0.3);
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.contact-card-icon.icon-blue {
    background-color: var(--brand-blue);
}

.contact-card-icon.icon-green {
    background-color: var(--brand-green);
}

.contact-card-icon.icon-yellow {
    background-color: var(--accent-yellow);
    color: #111111;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
}

.contact-card-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-card-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.contact-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 22px;
    flex-grow: 1;
}

.contact-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-card-phone {
    background-color: #f0f6fc;
    color: var(--brand-blue);
    border: 1px solid #d4e2f0;
}

.btn-card-phone:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
    border-color: var(--brand-blue);
}

.btn-card-whatsapp {
    background-color: var(--brand-green);
    color: #ffffff;
    border: 1px solid var(--brand-green);
    box-shadow: 0 4px 14px rgba(35, 155, 65, 0.28);
}

.btn-card-whatsapp:hover {
    background-color: #1c7c34;
    border-color: #1c7c34;
    box-shadow: 0 6px 18px rgba(35, 155, 65, 0.4);
}

.contact-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
}


/* ==========================================
   3. DIRECT BOOKING GUIDE & HOURS (2-COLUMN)
   ========================================== */
.direct-booking-section {
    padding: 40px 0 60px 0;
    background-color: #ffffff;
    width: 100%;
}

.direct-booking-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
}

/* Left Guide Box */
.guide-box {
    background-color: #fbfcfd;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 6px 25px rgba(11, 49, 84, 0.05);
}

.section-badge {
    display: inline-block;
    background-color: rgba(35, 155, 65, 0.1);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.guide-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    line-height: 1.25;
}

.guide-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 32px;
}

.guide-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 18px 20px;
    transition: all 0.25s ease;
}

.guide-step-item:hover {
    border-color: var(--brand-green);
    box-shadow: 0 4px 14px rgba(35, 155, 65, 0.08);
}

.guide-step-num {
    width: 38px;
    height: 38px;
    background-color: var(--brand-green);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guide-step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-blue);
}

.guide-step-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.guide-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    background-color: var(--brand-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(35, 155, 65, 0.3);
    transition: all 0.25s ease;
}

.guide-cta-btn:hover {
    background-color: #1c7c34;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 155, 65, 0.4);
}

.guide-cta-btn i {
    font-size: 20px;
}

/* Right Hours Box */
.hours-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hours-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 6px 25px rgba(11, 49, 84, 0.05);
}

.hours-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--brand-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.hours-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 6px;
}

.hours-card-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    border-top: 1px solid #f1f4f8;
    padding-top: 22px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.highlight-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.highlight-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-blue);
}

.highlight-info span {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.45;
}

.emergency-badge {
    background-color: rgba(35, 155, 65, 0.08);
    border: 1px solid rgba(35, 155, 65, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 12px;
    color: var(--brand-blue);
}

.emergency-badge i {
    font-size: 20px;
    color: var(--brand-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.emergency-badge div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.advantage-card {
    background-color: var(--brand-blue);
    color: #ffffff;
    border-radius: 18px;
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.advantage-icon {
    font-size: 24px;
    color: var(--accent-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.advantage-text p {
    font-size: 13px;
    color: #cbdbee;
    line-height: 1.55;
}


/* ==========================================
   4. FAQ SECTION (SIKÇA SORULAN SORULAR)
   ========================================== */
.faq-section {
    padding: 70px 0;
    background-color: #fbfcfd;
    border-top: 1px solid #f0f4f8;
    width: 100%;
}

.faq-container {
    max-width: 100%;
    width: auto;
    margin: 0 4%;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.section-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-main-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(11, 49, 84, 0.04);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 49, 84, 0.09);
    border-color: #d6e2ee;
}

.faq-icon {
    font-size: 24px;
    color: var(--brand-green);
    margin-bottom: 14px;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 10px;
    line-height: 1.35;
}

.faq-answer {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}


/* ==========================================
   5. RESPONSIVE CONTACT STYLES
   ========================================== */

/* Tablet Screens (<= 1024px) */
@media (max-width: 1024px) {
    .page-banner-container,
    .contact-cards-container,
    .direct-booking-container,
    .faq-container {
        margin: 0 3%;
    }

    .contact-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .direct-booking-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
    .page-banner {
        padding: 45px 0;
    }

    .page-banner-container,
    .contact-cards-container,
    .direct-booking-container,
    .faq-container {
        margin: 0 16px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .section-main-title {
        font-size: 26px;
    }

    .contact-cards-container {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto 30px auto;
        gap: 20px;
    }

    .guide-box {
        padding: 30px 22px;
    }

    .guide-title {
        font-size: 24px;
    }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
    .page-banner {
        padding: 35px 0;
    }

    .page-banner-container,
    .contact-cards-container,
    .direct-booking-container,
    .faq-container {
        margin: 0 10px;
    }

    .page-banner-title {
        font-size: 24px;
    }

    .section-main-title {
        font-size: 22px;
    }

    .contact-info-card {
        padding: 26px 20px;
    }

    .contact-card-value {
        font-size: 19px;
    }

    .guide-box {
        padding: 24px 18px;
    }

    .guide-step-item {
        padding: 14px;
        gap: 12px;
    }

    .guide-step-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}
