/**
 * Comforter Supported Services - Custom Styles
 * Brand color overrides and custom component styles
 */

/* Brand Colors - Professional care services palette */
:root {
    --cssc-primary: #2E86AB;
    --cssc-secondary: #1B4965;
    --cssc-accent: #5FA8D3;
    --cssc-dark: #1a1a2e;
    --cssc-light: #f8f9fa;
}

/* Page banner / breadcrumb styling for inner pages */
.page-header-one {
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 73, 101, 0.85);
}

.page-header-one .container {
    position: relative;
    z-index: 1;
}

.page-header-one__title {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header-one__breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.page-header-one__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.page-header-one__breadcrumb a:hover {
    color: var(--cssc-accent);
}

/* Form success/error messages */
.cssc-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cssc-alert--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cssc-alert--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Service cards spacing */
.service-card {
    margin-bottom: 30px;
}

/* Limit service-three section image height */
.service-three__image img {
    max-height: 280px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

/* Limit about-info-three team image height */
.about-info-three__image img {
    max-height: 220px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

/* Career form styling */
.career-form input[type="file"] {
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    width: 100%;
}

/* Referral page fixes */
.referral-image img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

/* Remove capitalize from about-four__text and service-three__text globally */
.about-four__text {
    text-transform: none !important;
}

.service-three__text {
    text-transform: none !important;
}

.service-two__text {
    text-transform: none !important;
}

.how-work-one__item__text {
    text-transform: none !important;
}

.accordion-content p {
    text-transform: none !important;
}

.accordion-title h4 {
    text-transform: none !important;
}

/* Remove uppercase text-transform on referral page */
.no-uppercase .sec-title__tagline {
    text-transform: none !important;
}

.no-uppercase .contact-one__title {
    text-transform: none !important;
}

.no-uppercase .cleenhearts-btn__text {
    text-transform: none !important;
}

.no-uppercase .form-one__control__input::placeholder {
    text-transform: none !important;
}
