/* ===================================
   Trova Veterinario - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Palette Premium - Rebrand Blue & Green */
    --primary-color: #0060B6;
    /* Logo Blue */
    --primary-light: #004C99;
    /* Darker Blue for contrast */
    --accent-color: #4CAF50;
    /* Logo Green */
    --accent-hover: #43A047;
    /* Darker Green */

    --text-main: #1E293B;
    /* Slate 800 */
    --text-muted: #64748B;
    /* Slate 500 */

    --bg-body: #F8FAFC;
    /* Slate 50 */
    --bg-card: #FFFFFF;

    --border-light: #E2E8F0;
    /* Slate 200 */

    --success: #10B981;
    --error: #EF4444;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

/* Fix Footer Links Contrast */
.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ffffff;
    /* White for text */
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    /* FORCE WHITE color for links */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

a:hover {
    color: var(--accent-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--text-main);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--bg-body);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    /* Increased padding */
    font-size: 0.95rem;
    /* Slightly larger font */
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-small:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Header & Maga Menu */
/* Header & Maga Menu */
.site-header {
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.site-header:hover {
    background: rgba(255, 255, 255, 0.95);
}



.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    max-height: 200px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu>li>a {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 0.5rem;
    position: relative;
    font-size: 1rem;
    text-shadow: none;
    transition: color 0.3s;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--accent-color);
}

/* Mega Menu / Dropdown Fix */
.dropdown {
    position: static;
    /* Allows menu to be full width relative to container or header */
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 80px;
    /* Header height */
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    padding: 2rem 0;
    z-index: 999;
    animation: slideDown 0.2s ease-out;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mega Menu Grid Layout */
.dropdown-menu ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    display: block;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--accent-color);
    background: var(--bg-body);
    font-weight: 500;
}

/* Breadcrumbs */
.breadcrumb-section {
    background-color: white;
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-muted);
    list-style: none;
    /* Fix: Remove default numbering */
    padding: 0;
    margin: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    margin: 0 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Hero Section */
.hero-section,
.hero {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    width: 100%;
    /* Full width */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    overflow: hidden;
    padding: 0;
    /* Remove padding to ensure full screen */
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-small {
    padding: 90px 0 20px;
    height: auto;
    min-height: auto;
    /* Reduced vertical padding */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 70%) 100%);
    z-index: 1;
}

/* Lighter overlay for inner pages */
.hero-small .hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px !important;
    margin: 0 auto;
}

/* Specific fix for overlay text visibility issues */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-small .hero-title {
    font-size: 2.5rem;
    /* Smaller title for inner pages */
    margin-bottom: 1rem;
}

.text-highlight {
    color: var(--accent-color);
    background: linear-gradient(120deg, transparent 0%, transparent 100%);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: white !important;
}

/* Section Common */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
}

/* Section Backgrounds */
section[id] {
    scroll-margin-top: 80px;
}

.services-section,
.regions-section,
.locations-section {
    background-color: white;
}

.why-us-section,
.contact-section {
    background-color: #F8FAFC;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.contact-section {
    background-color: #F1F5F9;
}

/* Cards & Grids */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /* More compact */
    gap: 1.5rem;
}

/* Compact Location Grid (Provinces/Comuni) */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

/* Benefit Card (matches Service Card style) */
.benefit-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 0;
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Advertising Grid (3 columns for 6 items) */
.advertising-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .advertising-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-link {
    display: block;
    height: 100%;
    min-width: 0;
    /* Critical for grid items to not overflow */
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: var(--bg-card);
    border-radius: 0;
    /* Remove border radius */
    padding: 0;
    /* Remove padding to let image fill width */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    /* Add small shadow */
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.service-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    /* Make it square */
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    /* Remove separate border radius */
    transition: var(--transition);
}

.service-card-img::after {
    display: none;
    /* Remove the border effect */
}

.service-card:hover .service-card-img::after {
    border-color: transparent;
}

.service-card-content {
    padding: 1.5rem;
    position: relative;
    background: white;
    margin: 0;
    /* Remove overlap margin */
    border-radius: 0;
    /* Remove overlap radius */
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    /* Remove shadow from content box */
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.1rem;
    line-height: 1.3;
    min-height: 3.6rem;
}

.service-features {
    color: #ff9f43;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.service-divider {
    border-top: 1px dashed #e0e0e0;
    margin: 0.5rem 0 1rem 0;
}

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

.service-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
}

.service-price-label {
    font-weight: 500;
    color: #999;
    font-size: 0.9rem;
}

.service-price {
    color: #8cc63f;
    font-size: 1.35rem;
    font-weight: 700;
}

.region-card,
.location-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.service-card:hover,
.region-card:hover,
.location-card:hover {
    transform: translateY(-3px);
    /* box-shadow: var(--shadow-md); */
    border-color: var(--accent-color);
}

.region-card h3,
.location-card h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-main);
    font-weight: 500;
}

.location-arrow {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1em;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    color: var(--accent-color);
}

/* Why Us / Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

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

.faq-question {
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--bg-body);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-body);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    border-top: 1px solid var(--border-light);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Form */
.contact-section {
    background: white;
    padding: 6rem 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-body);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: white;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--text-muted);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

.site-footer h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.site-footer a {
    color: var(--text-muted);
}

.site-footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    /* FORCE WHITE for copyright text */
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        height: 64px;
    }

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

    .hero-section {
        padding: 120px 0 80px;
    }

    /* ... (mobile menu and other styles) ... */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        width: 100%;
        border: none;
        padding-top: 0.5rem;
    }

    .dropdown-menu ul {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0.5rem;
    }

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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }
}

/* Lead Form Wizard */
.lead-form-wizard-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.wizard-step.active {
    background-color: var(--primary-color);
    color: white;
}

.wizard-line {
    flex-grow: 1;
    height: 2px;
    background-color: #E2E8F0;
    margin: 0 10px;
}

.wizard-step-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wizard-step-content.active {
    opacity: 1;
}

.wizard-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.wizard-actions.space-between {
    justify-content: space-between;
}

/* Radio Group (Preferenza contatto) */
.radio-group {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

input[type="radio"] {
    accent-color: var(--primary-color);
    width: 1.2em;
    height: 1.2em;
}

/* Validation Errors */
.error-msg {
    color: #DC2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.25em;
}

input.error,
select.error,
textarea.error {
    border-color: #DC2626;
}

/* Summary Box */
.summary-box {
    background-color: #F8FAFC;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
}

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

.summary-box li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--border-light);
}

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

/* Success State */
.wizard-success {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}