/* CSS Variables */
:root {
    --primary-blue: #1e40af;
    /* Darker Blue */
    --primary-blue-light: #1d4ed8;
    --primary-gradient: linear-gradient(90deg, #1e40af 0%, #1d4ed8 100%);
    --secondary-color: #10b981;
    --whatsapp-color: #25D366;
    --text-main: #1f2937;
    --text-light: #4b5563;
    --bg-white: #ffffff;
    --bg-light: #f3f4f6;
    --font-stack: 'Inter', sans-serif;
    --border-radius: 8px;
    --pill-radius: 9999px;
    --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);
}

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

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-stack);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--pill-radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-blue);
}

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

/* Header & Navbar */
.site-header {
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
}

/* Burger icon on mobile */
.site-header .mobile-menu-toggle {
    color: #9ca3af;
}

/* Mobile: white navbar when scrolled */
@media (max-width: 991px) {
    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 0;
    }

    .site-header.scrolled .mobile-menu-toggle {
        color: var(--text-main);
    }
}

/* Active nav link */
.nav-links li a.active {
    background-color: rgba(255, 255, 255, 0.25);
}

.mobile-nav a.active {
    color: var(--primary-blue);
}

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

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .logo-img {
        height: 55px;
    }
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Desktop Nav (Blue Pill) */
.desktop-nav {
    display: none;
    /* Mobile first hidden */
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
        background: var(--primary-gradient);
        border-radius: var(--pill-radius);
        padding: 0.5rem 0.5rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links {
        display: flex;
        gap: 0.5rem;
    }

    .nav-links li a {
        display: block;
        padding: 0.5rem 1.5rem;
        color: white;
        /* Text is white on blue background */
        font-weight: 600;
        border-radius: var(--pill-radius);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

.header-actions {
    display: none;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

@media (min-width: 992px) {
    .header-actions {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Ensure mobile actions are hidden on small screens explicitly if needed, but display:none default works. 
   The issue is likely flexbox in header-container not spacing correctly. */


/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.hero-text .highlight {
    color: #60a5fa;
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 767px) {
    .hero {
        padding: 3rem 0;
        min-height: 50vh;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
}

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

.subheading {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.welcome-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.welcome-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    transition: 0.3s;
}

.welcome-item:hover .icon-circle {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.welcome-item h3 {
    font-size: 1.25rem;
}

/* Services Section */
.bg-light {
    background-color: var(--bg-light);
}

.services-section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-text {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.75rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    text-align: center;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.reviewer {
    font-weight: 700;
}

/* Career Section */
.career-section {
    margin: 5rem 0;
}

.career-container {
    background: var(--primary-gradient);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.career-content .subheading {
    color: rgba(255, 255, 255, 0.8);
}

.career-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.career-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* FAQ / USP */
.faq-section {
    padding: 5rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.usp-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.usp-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.usp-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact */
.contact-section {
    padding: 5rem 0;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: 0.3s;
}

.contact-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-link {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Footer */
.site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

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

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-legal h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--primary-blue-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.875rem;
    color: #9ca3af;
}

.impressum-section {
    padding: 4rem 0;
}

.impressum-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impressum-block h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    width: 100%;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Accordion Styles */
.usp-accordion-btn {
    width: 100%;
    background: white;
    border: none;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0.5rem;
}

.usp-accordion-btn:hover {
    background-color: var(--bg-light);
}

.usp-accordion-btn.active {
    background-color: white;
    color: var(--text-main);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
    border: 1px solid #e5e7eb;
    border-bottom: none;
}

.usp-accordion-btn .icon {
    transition: transform 0.3s ease;
}

.usp-accordion-btn.active .icon {
    transform: rotate(180deg);
}

.usp-content {
    max-height: 0;
    overflow: hidden;
    background: white;
    padding: 0 2rem;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.usp-content.active {
    padding: 1.5rem 2rem;
    border: 1px solid #e5e7eb;
    border-top: none;
    box-shadow: var(--shadow-sm);
}

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

/* Page Header for Impressum */
.page-header {
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-blue);
}

/* Basic Content Section for Impressum */
.basic-content-section {
    padding: 4rem 0;
}

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

.content-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
}

.content-block.full-width {
    grid-column: 1 / -1;
}

.content-block p {
    margin-bottom: 1rem;
}

.content-block a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Image Styles */
.hero-img-file {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.image-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
    transition: transform 0.3s ease;
}

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

.welcome-item:hover .image-circle {
    transform: scale(1.05);
    border-color: var(--primary-blue);
}

/* Career Section Redesign */
.career-section {
    padding: 6rem 0;
    background: white;
}

.career-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    /* Override previous gradient */
    color: var(--text-main);
    /* Override previous white text */
    padding: 0;
    text-align: left;
    /* Override center */
}

.career-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.career-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.career-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .career-text h2 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .career-section {
        padding: 3rem 0;
    }

    .career-container {
        gap: 2rem;
        text-align: center;
    }

    .career-text {
        align-items: center;
    }

    .career-card-bubble {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

.career-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
    .career-image-wrapper {
        border-radius: 0;
    }
}

.career-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.career-card-bubble {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    /* Rounded like pill/card */
    border-bottom-left-radius: 0.25rem;
    /* Little tail effect maybe? Or just keep rounded */
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.btn-career {
    background-color: #f3f4f6;
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: var(--pill-radius);
    font-weight: 700;
    transition: 0.3s;
}

.btn-career:hover {
    background-color: #e5e7eb;
}

@media (min-width: 992px) {
    .career-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.25rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays for grid items */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

/* Form Wizard Styles */
.form-page-body {
    padding-top: 0;
}

.form-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 2rem;
    background: var(--bg-light);
}

.form-wizard {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 100%;
    padding: 2rem;
}

.wizard-header {
    margin-bottom: 2rem;
}

.progress-container {
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 25%;
    transition: width 0.3s ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.form-step h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-step > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Selection Cards */
.selection-grid {
    display: grid;
    gap: 1rem;
}

.selection-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.selection-card {
    cursor: pointer;
}

.selection-card input {
    display: none;
}

.selection-card .card-content {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.selection-card .card-content:hover {
    border-color: var(--primary-blue);
    background: #f8fafc;
}

.selection-card input:checked + .card-content {
    border-color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.05);
}

.selection-card .icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: block;
}

.selection-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* Radio List */
.selection-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-item:hover {
    border-color: var(--primary-blue);
}

.radio-item input {
    margin-right: 1rem;
    accent-color: var(--primary-blue);
    width: 18px;
    height: 18px;
}

.radio-item input:checked ~ span {
    font-weight: 600;
}

/* Chip Grid */
.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip {
    cursor: pointer;
}

.chip input {
    display: none;
}

.chip span {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.chip:hover span {
    border-color: var(--primary-blue);
}

.chip input:checked + span {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* Contact Form in Wizard */
.contact-form-wizard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    padding: 0.85rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.phone-input {
    display: flex;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.phone-input .prefix {
    background: var(--bg-light);
    padding: 0.85rem 1rem;
    font-weight: 600;
    border-right: 2px solid #e5e7eb;
}

.phone-input input {
    border: none;
    flex: 1;
    padding: 0.85rem 1rem;
}

.phone-input input:focus {
    outline: none;
}

.checkbox-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    margin-top: 0.5rem;
}

.checkbox-consent input {
    margin-top: 3px;
    accent-color: var(--primary-blue);
}

.checkbox-consent a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-message h2 {
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Wizard Footer */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.wizard-footer .btn {
    min-width: 120px;
}

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

.btn-secondary:hover {
    background: #e5e7eb;
}