/* ===================================================
   ILETISIM SAYFASI - BELLA MAISON TARZI
   Navy #1e3a5f, Clean, Minimal
   =================================================== */

/* Page Layout */
.cnt-page {
    background: #f5f5f5;
    padding: 20px 0 60px;
    min-height: 60vh;
}

.cnt-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cnt-page-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cnt-page-title i {
    font-size: 1.1rem;
}

/* Grid: Sol Form + Sag Info */
.cnt-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: start;
}

/* ===================================================
   FORM PANEL (Sol Kolon)
   =================================================== */
.cnt-form-panel {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.cnt-form-header {
    background: #1e3a5f;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cnt-form-header h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.cnt-form-header i {
    font-size: 0.95rem;
}

.cnt-form-body {
    padding: 24px 20px;
}

/* Alerts */
.cnt-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    margin: 16px 20px 0;
    border-radius: 6px;
    font-size: 0.9rem;
}

.cnt-alert p {
    margin: 0;
}

.cnt-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.cnt-alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Form Fields */
.cnt-field {
    margin-bottom: 18px;
}

.cnt-field:last-child {
    margin-bottom: 0;
}

.cnt-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.cnt-req {
    color: #dc2626;
}

.cnt-field input,
.cnt-field select,
.cnt-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.cnt-field input:focus,
.cnt-field select:focus,
.cnt-field textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

.cnt-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.cnt-field select {
    cursor: pointer;
    appearance: auto;
}

/* Subject Info */
.cnt-subject-info {
    background: #f0f4ff;
    border-left: 3px solid #1e3a5f;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 0 4px 4px 0;
    font-size: 0.85rem;
    color: #1e3a5f;
}

/* Field Error */
.cnt-has-error input,
.cnt-has-error select,
.cnt-has-error textarea {
    border-color: #dc2626;
}

.cnt-field-error {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 4px;
}

.cnt-field-hint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #999;
    margin-top: 4px;
}

.cnt-field-hint .char-counter {
    font-weight: 600;
}

/* Checkbox */
.cnt-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cnt-checkbox input[type="checkbox"] {
    display: none;
}

.cnt-checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all 0.2s;
    color: transparent;
    font-size: 10px;
}

.cnt-checkbox input[type="checkbox"]:checked ~ .cnt-checkmark {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
}

.cnt-checkbox-text {
    color: #666;
}

.cnt-checkbox-text a {
    color: #1e3a5f;
    text-decoration: underline;
}

/* Submit Button */
.cnt-submit-btn {
    width: 100%;
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    font-family: inherit;
    margin-top: 20px;
}

.cnt-submit-btn:hover {
    background: #162d4a;
}

.cnt-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================================
   INFO PANEL (Sag Kolon)
   =================================================== */
.cnt-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cnt-info-section {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.cnt-info-header {
    background: #1e3a5f;
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cnt-info-header h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.cnt-info-header i {
    font-size: 0.85rem;
}

.cnt-info-list {
    padding: 16px;
}

.cnt-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.cnt-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cnt-info-item:first-child {
    padding-top: 0;
}

a.cnt-info-item:hover {
    color: #1e3a5f;
}

.cnt-info-item i {
    width: 18px;
    text-align: center;
    color: #1e3a5f;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.cnt-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cnt-whatsapp-btn:hover {
    background: #1da851;
    color: #fff;
}

/* Trust Badges */
.cnt-badges {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cnt-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #333;
    padding: 6px 0;
}

.cnt-badge i {
    color: #1e3a5f;
    font-size: 0.8rem;
}

/* Reviews */
.cnt-review {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.cnt-review:last-child {
    border-bottom: none;
}

.cnt-review p {
    margin: 0 0 4px 0;
    font-size: 0.84rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

.cnt-review cite {
    font-size: 0.78rem;
    color: #999;
    font-weight: 600;
    font-style: normal;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.cnt-faq {
    margin-top: 32px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.cnt-faq > h2 {
    background: #1e3a5f;
    color: #fff;
    margin: 0;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cnt-faq > h2 i {
    font-size: 0.95rem;
}

.cnt-faq-list {
    padding: 0;
}

.cnt-faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.cnt-faq-item:last-child {
    border-bottom: none;
}

.cnt-faq-question {
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s;
    font-family: inherit;
}

.cnt-faq-question:hover {
    background: #f8f9fa;
}

.cnt-faq-question[aria-expanded="true"] {
    background: #f0f4ff;
    color: #1e3a5f;
}

.cnt-faq-question i {
    transition: transform 0.2s;
    color: #1e3a5f;
    font-size: 0.75rem;
}

.cnt-faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.cnt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cnt-faq-answer.active {
    max-height: 200px;
}

.cnt-faq-content {
    padding: 0 20px 14px 20px;
    border-top: 1px solid #f0f0f0;
}

.cnt-faq-content p {
    margin: 12px 0 0 0;
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cnt-cta-banner {
    margin-top: 32px;
    background: #1e3a5f;
    border-radius: 8px;
    padding: 28px 24px;
    color: #fff;
}

.cnt-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cnt-cta-inner h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cnt-cta-inner p {
    margin: 0;
    font-size: 0.88rem;
    opacity: 0.85;
}

.cnt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.cnt-cta-btn:hover {
    background: #1da851;
    color: #fff;
}

/* ===================================================
   MOBILE CTA BAR
   =================================================== */
.cnt-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    border-top: 1px solid #e5e5e5;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 1000;
}

.cnt-mobile-btn {
    padding: 10px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}

.cnt-mobile-wa {
    background: #25D366;
    color: #fff;
}

.cnt-mobile-submit {
    background: #1e3a5f;
    color: #fff;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 992px) {
    .cnt-grid {
        grid-template-columns: 1fr;
    }

    .cnt-info-panel {
        order: -1;
    }

    .cnt-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cnt-page {
        padding: 16px 0 80px;
    }

    .cnt-container {
        padding: 0 14px;
    }

    .cnt-page-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .cnt-mobile-bar {
        display: grid;
    }

    .cnt-form-body {
        padding: 16px 14px;
    }
}

@media (max-width: 480px) {
    .cnt-page-title {
        font-size: 1.1rem;
    }

    .cnt-form-header,
    .cnt-info-header,
    .cnt-faq > h2 {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .cnt-faq-question {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .cnt-faq-content {
        padding: 0 14px 12px 14px;
    }

    .cnt-mobile-btn {
        font-size: 0.78rem;
        padding: 10px 8px;
    }
}
