/* ===== Company Page Enhancements ===== */

/* Hero */
.rz-co-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 0;
}
.rz-co-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,18,34,0.75), rgba(40,110,251,0.45));
    z-index: 1;
}
.rz-co-hero .container {
    position: relative;
    z-index: 2;
}
.rz-co-hero-content {
    max-width: 600px;
    margin: 0 auto;
}
.rz-co-logo {
    max-height: 80px;
    margin-bottom: 20px;
    border-radius: 16px;
}
.rz-co-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.rz-co-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-weight: 400;
}
.rz-co-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0c1222;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.rz-co-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: #0c1222;
    text-decoration: none;
}

/* Section Labels & Headings */
.rz-co-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #286efb);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.rz-co-heading {
    font-size: 28px;
    font-weight: 800;
    color: #0c1222;
    margin-bottom: 0;
}
.rz-co-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0c1222;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

/* About Section */
.rz-co-about {
    padding: 60px 0;
    background: #fff;
}
.rz-co-about-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}
.rz-co-about-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}
.rz-co-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.rz-co-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    transition: color 0.2s;
}
a.rz-co-contact-item:hover {
    color: var(--primary, #286efb);
    text-decoration: none;
}
.rz-co-contact-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rz-co-contact-icon svg {
    color: var(--primary, #286efb);
}

/* Social Links */
.rz-co-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.rz-co-social-link {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rz-co-social-link:hover {
    background: var(--primary, #286efb);
    color: #fff;
    text-decoration: none;
}

/* Schedule Card */
.rz-co-schedule-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}
.rz-co-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rz-co-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.2s;
}
.rz-co-schedule-row:hover {
    background: rgba(0,0,0,0.02);
}
.rz-co-day-name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}
.rz-co-day-status {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rz-co-day-time {
    font-size: 13px;
    color: #64748b;
}
.rz-co-badge-open {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 3px 10px;
    border-radius: 6px;
}
.rz-co-badge-closed {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #dc2626;
    background: #fef2f2;
    padding: 3px 10px;
    border-radius: 6px;
}
.rz-co-closed .rz-co-day-name {
    color: #94a3b8;
}

/* Services Section */
.rz-co-services {
    padding: 60px 0;
    background: #f8fafc;
}

/* Testimonials */
.rz-co-testimonials {
    padding: 60px 0;
    background: #fff;
}
.rz-co-tcard {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin: 0 8px 20px;
    position: relative;
}
.rz-co-tcard:hover {
    border-color: var(--primary, #286efb);
}
.rz-co-tcard-quote {
    margin-bottom: 12px;
    color: var(--primary, #286efb);
}
.rz-co-tcard-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}
.rz-co-tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}
.rz-co-tcard-author img {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    border-radius: 50%;
    object-fit: cover;
}
.rz-co-tcard-author strong {
    display: block;
    font-size: 14px;
    color: #0c1222;
}
.rz-co-tcard-author span {
    font-size: 12px;
    color: #94a3b8;
}

/* Brands */
.rz-co-brands {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 991px) {
    .rz-co-hero { min-height: 340px; padding: 60px 0; }
    .rz-co-hero-title { font-size: 32px; }
    .rz-co-hero-sub { font-size: 16px; }
    .rz-co-about, .rz-co-services, .rz-co-testimonials { padding: 40px 0; }
}
@media (max-width: 767px) {
    .rz-co-hero { min-height: 300px; padding: 50px 0; }
    .rz-co-hero-title { font-size: 26px; }
    .rz-co-about-card, .rz-co-schedule-card { padding: 24px; }
    .rz-co-heading { font-size: 24px; }
}
