/*
Theme Name: ARMS Twenty Twenty-Five Child
Theme URI: https://armsrec.co.za
Description: Custom child theme for ARMS (Pty) Ltd website
Author: ARMS (Pty) Ltd
Template: twentytwentyfive
Version: 1.0.0
Text Domain: arms-child
*/

/* Card styles */
.arms-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: box-shadow 0.2s ease;
}
.arms-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Recommended pricing card highlight */
.arms-card-recommended {
    border: 2px solid #00c9a7;
    position: relative;
}
.arms-card-recommended::before {
    content: "Recommended";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #00c9a7;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline styles */
.arms-timeline {
    position: relative;
    padding-left: 3rem;
}
.arms-timeline::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00c9a7;
}
.arms-timeline-step {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.arms-timeline-step::before {
    content: attr(data-step);
    position: absolute;
    left: -3rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: #00c9a7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Callout box */
.arms-callout {
    border-left: 4px solid #00c9a7;
    background: #f5f7fa;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

/* Hero buttons */
.arms-hero .wp-block-button__link {
    border-radius: 8px;
    font-weight: 600;
}

/* SVG icon containers */
.arms-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 201, 167, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}
.arms-icon svg {
    width: 24px;
    height: 24px;
    fill: #00c9a7;
}

/* Responsive */
@media (max-width: 781px) {
    .arms-timeline {
        padding-left: 2.5rem;
    }
    .arms-timeline-step::before {
        left: -2.5rem;
    }
}
