/* ==========================================================================
   SHORAGES PREMIUM - COMPONENT STYLES
   Reusable components: cards, forms, accordions, breadcrumbs, page heroes
   ========================================================================== */

/* ============ CONTACT PAGE LAYOUT ============ */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============ MOBILE MENU CLOSE BUTTON ============ */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    margin: -2rem -2rem 1.5rem;
    background: var(--color-primary);
}

.mobile-menu-header .mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-menu-header .logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-red);
}

.mobile-menu-header .logo-name {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--fs-lg);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-menu-close:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: rotate(90deg);
}

.mobile-menu .mobile-login {
    margin-top: 0.75rem;
}

.mobile-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.mobile-contact a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--fs-lg);
}

/* ============ TOP BAR LOGIN LINK ============ */
.topbar-login-link {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    transition: color var(--transition-fast);
}

.topbar-login-link:hover {
    color: white;
}

.topbar-login-link svg {
    color: var(--color-secondary-light);
}

/* ============ BUTTON SHINE EFFECT ============ */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn:hover .btn-shine {
    left: 100%;
}

/* ============ CARD PREMIUM HOVER EFFECTS ============ */
.service-card,
.blog-card,
.location-card,
.testimonial-card,
.stat-item,
.step-item {
    will-change: transform;
}

.service-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.location-flag {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-stars {
    transition: transform 0.3s ease;
}

.stat-number {
    transition: transform 0.3s ease;
}

.step-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.blog-card-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-read-more {
    transition: gap 0.3s ease;
}

.service-link .link-arrow {
    transition: transform 0.3s ease;
}

/* Logo image style */
.logo-image {
    display: inline-block;
    line-height: 0;
}

.logo-img {
    max-height: 50px;
    width: auto;
}

/* ============ PAGE HERO (for inner pages) ============ */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1E293B 100%);
    color: white;
    padding: var(--space-3xl) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(190, 18, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(190, 18, 60, 0.2);
    color: #FDA4AF;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.page-hero-title {
    color: white;
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
}

.page-hero-subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: var(--fs-sm);
    flex-wrap: wrap;
}

.breadcrumbs li {
    color: var(--color-text-light);
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--color-border);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--color-text-light);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

/* ============ CONTENT AREA ============ */
.content-area {
    padding: var(--space-2xl) 0;
}

.content-area .container {
    max-width: var(--container-narrow);
}

.entry-content {
    font-size: var(--fs-base);
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.entry-content h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.entry-content p {
    margin-bottom: var(--space-md);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-secondary);
    padding-left: var(--space-md);
    margin: var(--space-md) 0;
    font-style: italic;
    color: var(--color-text-light);
}

.entry-content img {
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-md) 0;
}

.entry-content th,
.entry-content td {
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.entry-content th {
    background: var(--bg-light);
    font-weight: 600;
}

/* ============ SINGLE SERVICE PAGE ============ */
.single-service-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1E293B 100%);
    color: white;
    padding: var(--space-3xl) 0;
}

.single-service-hero .container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.service-hero-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.service-hero-title {
    color: white;
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-sm);
}

.service-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.service-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============ SINGLE LOCATION PAGE ============ */
.location-detail {
    padding: var(--space-2xl) 0;
}

.location-detail .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.location-content {
    font-size: var(--fs-base);
    line-height: 1.8;
}

.location-sidebar {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.location-sidebar h3 {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-secondary);
}

.location-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--fs-sm);
}

.location-info-list li:last-child {
    border-bottom: none;
}

.location-info-list .label {
    color: var(--color-text-light);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.location-map {
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

.related-services-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
}
/* ============ BLOG/POST SINGLE ============ */
.single-post-header {
    background: var(--bg-light);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.single-post-header .container {
    max-width: var(--container-narrow);
}

.post-meta {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    flex-wrap: wrap;
}

.post-meta .author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.post-meta .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-post-title {
    font-size: var(--fs-5xl);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
}

.post-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.single-post-content {
    padding: var(--space-xl) 0;
}

.single-post-content .container {
    max-width: var(--container-narrow);
}

.entry-meta {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-link {
    background: var(--bg-light);
    color: var(--color-text);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: var(--color-secondary);
    color: white;
}

/* Author box */
.post-author-box {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.author-box-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-box-info h4 {
    margin-bottom: 0.25rem;
}

.author-box-info p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    margin: 0;
}

/* Post navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.post-nav-item {
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.post-nav-item:hover {
    border-color: var(--color-secondary);
    background: var(--bg-light);
}

.post-nav-label {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.post-nav-title {
    font-weight: 600;
    color: var(--color-primary);
}

.post-nav-item.next {
    text-align: right;
}

/* ============ BLOG ARCHIVE ============ */
.blog-archive {
    padding: var(--space-2xl) 0;
}

.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-xl);
}

.pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

/* ============ FAQ ACCORDION ============ */
.faq-section {
    padding: var(--space-2xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: var(--space-md);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-primary);
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--color-secondary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 900px;
    padding: 0.45rem var(--space-md) 1.5rem;
}

.faq-answer p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============ CONTACT FORM ============ */
.contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: var(--fs-sm);
}

.form-group label .required {
    color: var(--color-secondary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text);
    background: white;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(190, 18, 60, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #065F46;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-red);
}

.contact-info-card h4 {
    margin-bottom: 0.5rem;
    font-size: var(--fs-lg);
}

.contact-info-card p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    margin: 0;
}

.contact-info-card a {
    color: var(--color-text-light);
}

.contact-info-card a:hover {
    color: var(--color-secondary);
}

/* ============ ABOUT PAGE ============ */
.about-mission-vision {
    padding: var(--space-2xl) 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.mv-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-secondary);
}

.mv-card.vision::before {
    background: var(--color-accent);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.mv-card h3 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-sm);
}

.mv-card p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.team-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-card-image {
    height: 280px;
    overflow: hidden;
    background: var(--bg-muted);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-content {
    padding: var(--space-md);
}

.team-card-name {
    font-size: var(--fs-lg);
    margin-bottom: 0.25rem;
}

.team-card-role {
    color: var(--color-secondary);
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

/* Values section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.value-card {
    text-align: center;
    padding: var(--space-lg);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.1), rgba(190, 18, 60, 0.05));
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(190, 18, 60, 0.1);
}

.value-card h4 {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

/* Expanded About page sections */
.about-story-section,
.about-why-section,
.about-difference-section,
.about-values-section,
.about-work-section {
    padding: var(--space-2xl) 0;
}

.about-story-section,
.about-difference-section {
    background: #FFFFFF;
}

.about-why-section,
.about-values-section {
    background: var(--bg-light);
}

.about-story-panel {
    max-width: 940px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-left: 6px solid var(--color-secondary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.about-story-title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.about-story-copy p,
.about-section-copy p,
.about-feature-copy p,
.mv-copy p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0 0 1rem;
}

.about-story-copy p:last-child,
.about-section-copy p:last-child,
.about-feature-copy p:last-child,
.mv-copy p:last-child {
    margin-bottom: 0;
}

.about-two-column,
.about-work-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--space-xl);
    align-items: stretch;
}

.about-list-card,
.about-note-card,
.about-work-list-card,
.about-feature-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.about-list-card,
.about-note-card,
.about-work-list-card {
    padding: var(--space-xl);
}

.about-note-card {
    display: flex;
    align-items: center;
    border-top: 4px solid var(--color-secondary);
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0 0;
    display: grid;
    gap: 0.85rem;
}

.about-check-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.55;
}

.about-check-list li::before {
    content: "\2713";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    margin-top: 0.1rem;
    background: var(--color-secondary);
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 700;
}

.about-difference-text {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.about-difference-text p {
    margin-bottom: 0.6rem;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
}

.about-feature-card {
    padding: var(--space-lg);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.about-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(190, 18, 60, 0.28);
    box-shadow: var(--shadow-lg);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.1), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(190, 18, 60, 0.12);
    margin-bottom: var(--space-md);
}

.about-feature-icon svg {
    display: block;
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.about-feature-card h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.75rem;
}

.about-work-copy {
    align-self: center;
}

.about-work-list-card .about-check-list {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .about-two-column,
    .about-work-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-story-panel,
    .about-list-card,
    .about-note-card,
    .about-work-list-card,
    .about-feature-card {
        padding: var(--space-md);
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }
}
/* ============ CAREERS PAGE ============ */
.careers-perks {
    padding: var(--space-2xl) 0;
    background: var(--bg-light);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.perk-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
}

.perk-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.perk-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-red);
}

.perk-card h4 {
    font-size: var(--fs-base);
    margin-bottom: 0.5rem;
}

.jobs-list {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-sm);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: var(--space-md);
    align-items: center;
    transition: all var(--transition-base);
}

.job-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.job-title h4 {
    margin-bottom: 0.25rem;
    font-size: var(--fs-lg);
}

.job-title .department {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
}

.job-meta {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
}

.job-meta .label {
    display: block;
    color: var(--color-text-light);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.job-apply-btn {
    white-space: nowrap;
}

/* ============ QUOTE FORM ============ */
.quote-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.quote-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quote-feature .check-icon {
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 700;
    flex-shrink: 0;
}

.quote-feature-text {
    font-size: var(--fs-sm);
    color: var(--color-text);
}

/* ============ 404 PAGE ============ */
.error-404 {
    padding: var(--space-3xl) 0;
    text-align: center;
}

.error-404 h1 {
    font-size: var(--fs-7xl);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.error-404 h2 {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
}

.error-404 p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ SEARCH FORM ============ */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-form .form-control {
    flex: 1;
}

/* ============ NO RESULTS ============ */
.no-results {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.no-results h2 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-sm);
}

/* ============ COMMENTS ============ */
.comments-area {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.comments-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-md);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.comment-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: var(--fs-xs);
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.comment-respond {
    margin-top: var(--space-lg);
}

/* ============ WIDGETS ============ */
.widget {
    margin-bottom: var(--space-lg);
}

.widget-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-secondary);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--color-text);
}

.widget a:hover {
    color: var(--color-secondary);
}





/* Keep service/quote check glyphs white across browser emoji/font rendering. */
.check-icon {
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    position: relative;
    font-size: 0 !important;
}

.check-icon::before {
    content: "\2713";
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.quote-feature .check-icon::before {
    font-size: var(--fs-xs);
}