/* === Core === */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --accent: #ffd60a;
    --dark: #1d3557;
    --gray: #6c757d;
    --light-bg: #f8f9fa;
}
body { font-family: 'Fira Sans', 'Segoe UI', system-ui, -apple-system, sans-serif; }
a { transition: color .2s; }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #0b1a2e 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,57,70,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; }
.hero p { font-size: 1.2rem; opacity: .9; }
.hero-stats { margin-top: 3rem; }
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 2rem; font-weight: 800; color: var(--accent); }
.hero-stat .label { font-size: .85rem; opacity: .7; }

/* === Cards === */
.service-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.service-card .card-body { padding: 1.5rem; }
.service-card .btn { border-radius: 8px; }

/* === Benefits === */
.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* === Price Section === */
.price-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all .3s;
    height: 100%;
}
.price-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(230,57,70,.15);
}
.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fff5f5, #fff);
}
.price-card .price { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.price-card .price-label { color: var(--gray); font-size: .9rem; }

/* === Process Steps === */
.step {
    text-align: center;
    padding: 1.5rem;
}
.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* === Reviews === */
.review-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}
.review-card .stars { color: var(--accent); }

/* === FAQ === */
.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

/* === Contact Form === */
.contact-section {
    background: linear-gradient(135deg, var(--dark), #0b1a2e);
    color: #fff;
    padding: 4rem 0;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--dark), #0b1a2e);
    color: #fff;
    padding: 60px 0 40px;
}

/* === Service Detail === */
.service-detail h2 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.service-detail h3 {
    font-weight: 600;
    margin-top: 1.5rem;
}
.service-detail ul li { margin-bottom: .5rem; }

/* === Breadcrumbs === */
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item.active { color: rgba(255,255,255,.5); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* === Floating Call Button === */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(230,57,70,.4);
    transition: all .3s;
    cursor: pointer;
    border: none;
}
.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230,57,70,.5);
    color: #fff;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero { padding: 60px 0 50px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .section-title { font-size: 1.5rem; }
    .hero-stats .hero-stat { margin-bottom: 1rem; }
}
