/* Handiman Website - Main Stylesheet */
/* Colors: primary #2c3e50, accent #3498db, success #27ae60, warning #f39c12 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

/* ===================== HEADER ===================== */
.site-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 1.5rem 0 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-circle {
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

.logo-circle img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
}

.header-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.header-phone {
    margin-left: auto;
    text-align: right;
}

.header-phone .phone-reveal {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-phone .phone-reveal:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
}

/* ===================== NAVIGATION ===================== */
.main-nav {
    background: rgba(0,0,0,0.2);
    margin-top: 1.2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.75rem 1.1rem;
    border-radius: 0;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    display: block;
}

.nav-link:hover {
    color: white;
    border-bottom-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.nav-link.active {
    color: white;
    border-bottom-color: white;
    font-weight: 700;
}

.nav-link.cta-nav {
    background: #27ae60;
    color: white;
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    margin: 0.4rem 0;
    font-weight: 700;
    border-bottom: none;
}

.nav-link.cta-nav:hover {
    background: #2ecc71;
    transform: translateY(-1px);
    border-bottom: none;
}

/* Services dropdown */
.nav-item {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2c3e50;
    border-radius: 0 0 10px 10px;
    min-width: 220px;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    overflow: hidden;
}

.nav-item:hover .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-dropdown a:hover {
    background: rgba(52,152,219,0.3);
    color: white;
}

/* ===================== MAIN CONTENT ===================== */
.main-container {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 2rem;
}

/* ===================== HERO ===================== */
.hero-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.location-badge {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
}

.hero-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== TRUST BADGES ===================== */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.trust-item {
    text-align: center;
}

.trust-item .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3498db;
    display: block;
}

.trust-item .label {
    font-size: 0.85rem;
    color: #666;
    display: block;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52,152,219,0.4);
}

.btn-success {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: white;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #1e8449, #196f3d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39,174,96,0.4);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-link-text {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ===================== SECTION HEADINGS ===================== */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.section-heading p {
    color: #666;
    font-size: 1.05rem;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 2.5rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background: white;
    color: #2c3e50;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
}

/* ===================== CONTENT CARDS ===================== */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 1.7rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.75rem;
}

.content-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-card ul {
    color: #555;
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #3498db;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: #444;
    line-height: 1.7;
    font-size: 0.97rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.9rem;
}

.testimonial-job {
    color: #888;
    font-size: 0.85rem;
    font-style: normal;
}

/* ===================== STATS BAR ===================== */
.stats-bar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.stat-item .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3498db;
    display: block;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================== SERVICE LIST ===================== */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-list-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    border-left: 4px solid #3498db;
    color: #444;
    font-size: 0.95rem;
}

/* ===================== QUOTE FORM ===================== */
.quote-form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    margin-bottom: 2rem;
}

.quote-progress-bar {
    background: #ecf0f1;
    height: 6px;
}

.quote-progress-fill {
    background: linear-gradient(90deg, #27ae60, #3498db);
    height: 100%;
    transition: width 0.4s ease;
}

.quote-steps-indicator {
    display: flex;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #999;
}

.step-indicator .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-indicator.active {
    color: #2c3e50;
}

.step-indicator.active .step-num {
    background: #3498db;
    color: white;
}

.step-indicator.done {
    color: #27ae60;
}

.step-indicator.done .step-num {
    background: #27ae60;
    color: white;
}

.step-separator {
    color: #ccc;
    font-size: 1rem;
    align-self: center;
}

.quote-step {
    padding: 2.5rem;
    display: none;
}

.quote-step.active {
    display: block;
}

.quote-step-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.quote-step-subtitle {
    color: #777;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Radio/checkbox option cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.option-card {
    position: relative;
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    background: white;
    min-height: 90px;
}

.option-label:hover {
    border-color: #3498db;
    background: #f0f7ff;
}

.option-card input:checked + .option-label {
    border-color: #3498db;
    background: #e8f4fd;
    color: #2980b9;
}

.option-label .opt-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.4rem;
}

.option-label .opt-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.option-label .opt-sub {
    font-size: 0.78rem;
    color: #888;
    margin-top: 0.2rem;
    font-weight: 400;
}

/* Checkbox option variant (horizontal list) */
.checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.checkbox-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checkbox-item input:checked + .checkbox-label {
    border-color: #3498db;
    background: #f0f7ff;
}

.checkbox-item input:checked + .checkbox-label::before {
    background: #3498db;
    border-color: #3498db;
    content: '✓';
    color: white;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label .cb-text {
    font-size: 0.9rem;
    color: #333;
}

/* Form fields */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: white;
    color: #333;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* File upload area */
.upload-zone {
    border: 3px dashed #ccc;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: #3498db;
    background: #f0f7ff;
}

.upload-zone .upload-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    color: #bbb;
}

.upload-zone p {
    color: #666;
    margin-bottom: 0.5rem;
}

.upload-zone .upload-note {
    font-size: 0.85rem;
    color: #999;
}

.photo-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.photo-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(231,76,60,0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Form navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.btn-prev {
    background: white;
    color: #666;
    border: 2px solid #ddd;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-prev:hover {
    border-color: #3498db;
    color: #3498db;
}

.btn-next {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.btn-next:hover {
    background: linear-gradient(135deg, #2980b9, #2471a3);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(52,152,219,0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1e8449, #196f3d);
    transform: translateY(-1px);
}

.step-count {
    color: #999;
    font-size: 0.85rem;
}

/* CAPTCHA */
.captcha-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-question {
    background: #2c3e50;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.captcha-input {
    width: 80px;
    text-align: center;
    font-size: 1.1rem;
}

/* ===================== SUCCESS PAGE ===================== */
.success-page {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}

.success-page h2 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.reference-badge {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: monospace;
    letter-spacing: 2px;
    margin: 1rem 0;
}

.submission-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.submission-summary h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    padding: 0.6rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #555;
    min-width: 140px;
    font-size: 0.9rem;
}

.summary-value {
    color: #333;
    font-size: 0.9rem;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #2c3e50;
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

.footer-section p,
.footer-section li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
}

/* ===================== ABOUT PAGE ===================== */
.about-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.about-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 4px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.about-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.about-hero .tagline {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.value-list {
    list-style: none;
    margin-top: 1rem;
}

.value-list li {
    padding: 0.4rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.value-list li::before {
    content: '✓ ';
    color: #27ae60;
    font-weight: 700;
}

/* ===================== LOCATION PAGES ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===================== ALERTS ===================== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

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

.alert ul {
    padding-left: 1.2rem;
    margin-top: 0.5rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .header-phone {
        margin-left: 0;
        width: 100%;
        text-align: center;
        padding-bottom: 0.5rem;
    }

    .header-text h1 {
        font-size: 1.8rem;
    }

    .nav-content {
        gap: 0.3rem;
        padding: 0 1rem;
    }

    .nav-link {
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
    }

    .main-container {
        padding: 0 1rem;
        margin: 1.5rem auto;
    }

    .hero-section {
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-step {
        padding: 1.5rem;
    }

    .form-nav {
        padding: 1rem 1.5rem;
    }

    .option-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .quote-steps-indicator {
        padding: 1rem;
    }

    .step-indicator span.step-label {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }
}
