/* Lillabloom — professional cleaning site */

:root {
    --lb-navy: #232d6e;
    --lb-navy-deep: #1a2254;
    --lb-lavender: #9b78c5;
    --lb-lavender-dark: #7d5fad;
    --lb-sky: #8cccf1;
    --lb-soft: #f3eef9;
    --lb-soft-blue: #eef6fc;
    --lb-text: #2c3345;
    --lb-muted: #6b7280;
    --lb-white: #ffffff;
    --lb-border: rgba(35, 45, 110, 0.08);
    --lb-shadow: 0 10px 30px rgba(35, 45, 110, 0.08);
    --lb-shadow-lg: 0 18px 40px rgba(35, 45, 110, 0.12);
    --lb-radius: 14px;
    --lb-radius-sm: 10px;
    --lb-font: "Manrope", system-ui, sans-serif;
    --lb-font-display: "Sora", "Manrope", system-ui, sans-serif;
    --lb-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lb-font);
    color: var(--lb-text);
    background: var(--lb-white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color 0.25s var(--lb-ease), background-color 0.25s var(--lb-ease), border-color 0.25s var(--lb-ease), box-shadow 0.25s var(--lb-ease), transform 0.25s var(--lb-ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--lb-font-display);
    font-weight: 700;
    color: var(--lb-navy);
    letter-spacing: -0.03em;
    line-height: 1.25;
}

/* Motion system */
.btn {
    transition: transform 0.35s var(--lb-ease), box-shadow 0.35s var(--lb-ease), background-color 0.3s var(--lb-ease), border-color 0.3s var(--lb-ease), color 0.3s var(--lb-ease);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(35, 45, 110, 0.28);
}

.btn:active {
    transform: translateY(0);
}

.navbar-lilla {
    transition: box-shadow 0.35s var(--lb-ease), background-color 0.35s var(--lb-ease), padding 0.35s var(--lb-ease);
}

.navbar-lilla.is-scrolled {
    box-shadow: 0 10px 30px rgba(35, 45, 110, 0.1);
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.hero-title {
    animation: lbHeroIn 1s var(--lb-ease) both;
}

.hero-text {
    animation: lbHeroIn 1s var(--lb-ease) 0.12s both;
}

.hero-actions {
    animation: lbHeroIn 1s var(--lb-ease) 0.24s both;
}

.hero-visual {
    animation: lbHeroMedia 1.15s var(--lb-ease) 0.18s both;
}

.hero-visual img {
    animation: lbFloat 5.5s ease-in-out 1.2s infinite;
}

.hero-visual::after {
    animation: lbPulseGlow 4s ease-in-out 1.4s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(4px);
    transition:
        opacity 0.85s var(--lb-ease),
        transform 0.85s var(--lb-ease),
        filter 0.85s var(--lb-ease);
    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-left {
    transform: translateX(-48px) scale(0.97);
}

.reveal-left.is-visible {
    transform: translateX(0) scale(1);
}

.reveal-right {
    transform: translateX(48px) scale(0.97);
}

.reveal-right.is-visible {
    transform: translateX(0) scale(1);
}

.reveal-scale {
    transform: scale(0.88);
}

.reveal-scale.is-visible {
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.2s; }
.reveal-delay-4 { transition-delay: 0.28s; }
.reveal-delay-5 { transition-delay: 0.36s; }
.reveal-delay-6 { transition-delay: 0.44s; }

.section-label {
    position: relative;
}

.section-label.is-visible::after {
    animation: lbUnderline 0.7s var(--lb-ease) 0.15s both;
}

.stat-number {
    transition: transform 0.35s var(--lb-ease);
}

.stat-item.is-visible .stat-number {
    animation: lbPopIn 0.55s var(--lb-ease) both;
}

.process-number {
    transition: transform 0.35s var(--lb-ease), box-shadow 0.35s var(--lb-ease);
}

.process-step.is-visible .process-number {
    animation: lbPopIn 0.55s var(--lb-ease) 0.1s both;
}

.process-step:hover .process-number {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(35, 45, 110, 0.25);
}

.cta-banner-inner {
    position: relative;
    overflow: hidden;
}

.cta-banner-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
    transform: translateX(-120%);
    pointer-events: none;
}

.cta-banner-inner.is-visible::after {
    animation: lbShine 1.4s var(--lb-ease) 0.35s both;
}

.service-card img {
    transition: transform 0.7s var(--lb-ease);
}

.service-card:hover img {
    transform: scale(1.06);
}

.testimonial-card {
    transition: transform 0.4s var(--lb-ease), box-shadow 0.4s var(--lb-ease);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lb-shadow-lg);
}

.why-card {
    transition: transform 0.4s var(--lb-ease);
}

.why-card:hover {
    transform: translateY(-6px);
}

.about-gallery .img-main,
.about-gallery .img-accent {
    transition: transform 0.6s var(--lb-ease), box-shadow 0.6s var(--lb-ease);
}

.about-gallery:hover .img-main {
    transform: translateY(-6px);
}

.about-gallery:hover .img-accent {
    transform: translateY(4px) rotate(-1deg);
}

@keyframes lbHeroIn {
    from {
        opacity: 0;
        transform: translateY(36px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes lbHeroMedia {
    from {
        opacity: 0;
        transform: translateY(48px) scale(0.94) rotate(1deg);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0);
        filter: blur(0);
    }
}

@keyframes lbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes lbPulseGlow {
    0%, 100% { opacity: 0.28; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.06); }
}

@keyframes lbPopIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    70% {
        opacity: 1;
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes lbShine {
    to { transform: translateX(120%); }
}

@keyframes lbUnderline {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 2.5rem;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-visual img,
    .hero-visual::after {
        animation: none !important;
    }

    .btn:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .why-card:hover {
        transform: none;
    }
}

.section-label {
    display: inline-block;
    color: var(--lb-lavender-dark);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.section-label::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lb-lavender), var(--lb-sky));
    opacity: 0;
}

.section-label.is-visible::after,
.reveal.is-visible.section-label::after {
    width: 2.5rem;
    opacity: 1;
    transition: width 0.7s var(--lb-ease) 0.15s, opacity 0.5s var(--lb-ease) 0.15s;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--lb-muted);
    font-size: 1.05rem;
    max-width: 38rem;
}

/* Buttons */
.btn {
    --bs-btn-font-weight: 600;
    border-radius: 999px;
    padding: 0.7rem 1.45rem;
    font-size: 0.95rem;
}

.btn-primary {
    --bs-btn-bg: var(--lb-navy);
    --bs-btn-border-color: var(--lb-navy);
    --bs-btn-hover-bg: var(--lb-navy-deep);
    --bs-btn-hover-border-color: var(--lb-navy-deep);
    --bs-btn-active-bg: var(--lb-navy-deep);
    --bs-btn-active-border-color: var(--lb-navy-deep);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    box-shadow: 0 8px 20px rgba(35, 45, 110, 0.2);
}

.btn-soft {
    background: var(--lb-soft);
    color: var(--lb-navy);
    border: 1px solid transparent;
}

.btn-soft:hover {
    background: #e8dff5;
    color: var(--lb-navy-deep);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-light-pill {
    background: #fff;
    color: var(--lb-navy);
    border: none;
}

.btn-light-pill:hover {
    background: var(--lb-soft);
    color: var(--lb-navy-deep);
}

/* Top bar */
.topbar {
    background: var(--lb-navy-deep);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    padding: 0.45rem 0;
}

.topbar a {
    color: rgba(255, 255, 255, 0.9);
}

.topbar a:hover {
    color: #fff;
}

.topbar .lang-switch a {
    opacity: 0.7;
    font-weight: 600;
    margin-left: 0.35rem;
}

.topbar .lang-switch a.active,
.topbar .lang-switch a:hover {
    opacity: 1;
    color: var(--lb-sky);
}

/* Navbar */
.navbar-lilla {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--lb-border);
    padding: 0.65rem 0;
}

.navbar-lilla .navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-lilla .nav-link {
    color: var(--lb-text);
    font-weight: 600;
    padding: 0.5rem 0.9rem !important;
}

.navbar-lilla .nav-link:hover,
.navbar-lilla .nav-link.active {
    color: var(--lb-lavender-dark);
}

.navbar-toggler {
    border: none;
    padding: 0.35rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero */
.hero {
    position: relative;
    padding: 4.5rem 0 7rem;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(243, 238, 249, 0.55) 100%),
        url("../images/herobg.png") center/cover no-repeat;
    overflow: visible;
}

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 1.1rem;
    max-width: 16ch;
}

.hero-text {
    color: var(--lb-muted);
    font-size: 1.1rem;
    max-width: 36rem;
    margin-bottom: 1.75rem;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: calc(var(--lb-radius) + 6px);
    box-shadow: var(--lb-shadow-lg);
    width: 100%;
    object-fit: cover;
    min-height: 320px;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: auto -12px -12px auto;
    width: 42%;
    height: 42%;
    background: linear-gradient(135deg, var(--lb-lavender), var(--lb-sky));
    border-radius: var(--lb-radius);
    z-index: -1;
    opacity: 0.35;
    transform-origin: center;
}

/* Service cards overlapping hero */
.service-preview {
    margin-top: -4.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1rem;
}

.service-card {
    background: var(--lb-white);
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow);
    padding: 1.5rem 1.35rem;
    height: 100%;
    overflow: hidden;
    transition: transform 0.45s var(--lb-ease), box-shadow 0.45s var(--lb-ease);
}

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

.service-icon,
.why-icon {
    transition: transform 0.35s var(--lb-ease), background-color 0.35s var(--lb-ease), border-color 0.35s var(--lb-ease);
}

.service-card:hover .service-icon,
.why-card:hover .why-icon {
    transform: scale(1.06);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lb-soft);
    color: var(--lb-lavender-dark);
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.service-icon .bi,
.why-icon .bi,
.about-list .bi,
.contact-details .bi,
.topbar .bi,
.site-footer .bi,
.social-links .bi {
    font-family: bootstrap-icons !important;
    font-style: normal;
    speak: never;
    display: inline-block;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.service-card p {
    color: var(--lb-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card .more-link {
    color: var(--lb-lavender-dark);
    font-weight: 700;
    font-size: 0.92rem;
}

.service-card .more-link:hover {
    color: var(--lb-navy);
}

/* About */
.about-section {
    padding: 5rem 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.about-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--lb-text);
}

.about-list i {
    color: var(--lb-lavender-dark);
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.about-gallery {
    position: relative;
    min-height: 420px;
}

.about-gallery img {
    border-radius: var(--lb-radius);
    box-shadow: var(--lb-shadow);
    object-fit: cover;
}

.about-gallery .img-main {
    width: 78%;
    height: 340px;
    margin-left: auto;
    display: block;
}

.about-gallery .img-accent {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48%;
    height: 220px;
    border: 5px solid #fff;
}

/* CTA banner */
.cta-banner {
    padding: 1.5rem 0 4rem;
}

.cta-banner-inner {
    background:
        linear-gradient(120deg, rgba(35, 45, 110, 0.94), rgba(125, 95, 173, 0.9)),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    border-radius: calc(var(--lb-radius) + 4px);
    padding: 2.75rem 2.25rem;
    color: #fff;
    box-shadow: var(--lb-shadow-lg);
}

.cta-banner-inner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.5rem;
}

.cta-banner-inner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 34rem;
}

/* Why us */
.why-section {
    padding: 4.5rem 0 3rem;
}

.why-card {
    text-align: center;
    padding: 1.25rem 1rem;
    height: 100%;
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(155, 120, 197, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-lavender-dark);
    font-size: 1.7rem;
    margin-bottom: 1.1rem;
    background: #fff;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--lb-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats */
.stats-section {
    background: var(--lb-soft-blue);
    padding: 3rem 0;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--lb-navy);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-label {
    color: var(--lb-muted);
    font-weight: 500;
}

/* Process */
.process-section {
    position: relative;
    padding: 5rem 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 238, 249, 0.92)),
        url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.process-step {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    box-shadow: var(--lb-shadow);
}

.process-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--lb-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
}

.process-step p {
    color: var(--lb-muted);
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--lb-border);
    border-radius: var(--lb-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--lb-shadow);
}

.testimonial-stars {
    color: #f5b301;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.testimonial-card p {
    color: var(--lb-muted);
    margin-bottom: 1.1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--lb-navy);
}

/* Contact */
.contact-section {
    background:
        radial-gradient(circle at top right, rgba(155, 120, 197, 0.14), transparent 40%),
        radial-gradient(circle at bottom left, rgba(140, 204, 241, 0.18), transparent 42%),
        linear-gradient(180deg, #f7f4fb 0%, #eef4fb 100%);
    padding: 5rem 0;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(155, 120, 197, 0.18);
    color: var(--lb-lavender-dark);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(35, 45, 110, 0.06);
}

.contact-shell {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(35, 45, 110, 0.1);
    border: 1px solid rgba(35, 45, 110, 0.06);
}

.contact-info-panel {
    position: relative;
    height: 100%;
    padding: 2rem;
    background:
        linear-gradient(155deg, rgba(35, 45, 110, 0.98) 0%, rgba(90, 70, 150, 0.96) 55%, rgba(125, 95, 173, 0.95) 100%);
    color: #fff;
    overflow: hidden;
}

.contact-info-panel__glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 204, 241, 0.35), transparent 70%);
    top: -60px;
    right: -40px;
    pointer-events: none;
}

.contact-person-card {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
}

.contact-person-card__media {
    position: relative;
    flex-shrink: 0;
}

.contact-person-card .avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
}

.contact-person-card .avatar--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12));
    color: #fff;
    font-size: 2rem;
}

.contact-person-card .status-dot {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ade80;
    border: 2px solid #fff;
}

.contact-person-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.contact-person-card__name {
    font-family: var(--lb-font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.contact-person-card__role {
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-tiles {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.75rem;
}

.contact-tile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: background-color 0.25s var(--lb-ease), transform 0.25s var(--lb-ease), border-color 0.25s var(--lb-ease);
}

a.contact-tile:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateX(3px);
    color: #fff;
}

.contact-tile__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.contact-tile__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.contact-tile__label {
    font-size: 0.75rem;
    opacity: 0.75;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-tile__value {
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-word;
}

.contact-tile__arrow {
    opacity: 0.55;
    font-size: 0.9rem;
}

.contact-quick-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.contact-quick-actions .btn {
    justify-content: center;
}

.contact-quick-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.contact-form-card {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 2.25rem 2rem;
    height: 100%;
    box-shadow: none;
}

.contact-form-card__header {
    margin-bottom: 1.5rem;
}

.contact-form-card__header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.contact-form-card__header p {
    color: var(--lb-muted);
    margin: 0;
    font-size: 0.98rem;
}

.input-icon {
    position: relative;
}

.input-icon > i {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lb-lavender-dark);
    opacity: 0.75;
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 2;
}

.input-icon--textarea > i {
    top: 1rem;
    transform: none;
}

.input-icon .form-control {
    padding-left: 2.65rem;
}

.form-control {
    border-radius: 12px;
    border: 1px solid rgba(35, 45, 110, 0.1);
    background: #f8f9fc;
    padding: 0.85rem 1rem;
    min-height: 48px;
    transition: border-color 0.25s var(--lb-ease), box-shadow 0.25s var(--lb-ease), background-color 0.25s var(--lb-ease);
}

.form-control::placeholder {
    color: #9aa3b5;
}

.form-control:hover {
    background: #fff;
    border-color: rgba(125, 95, 173, 0.28);
}

.form-control:focus {
    background: #fff;
    border-color: var(--lb-lavender);
    box-shadow: 0 0 0 0.2rem rgba(155, 120, 197, 0.16);
}

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

.form-label {
    font-weight: 600;
    color: var(--lb-navy);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 52px;
    font-size: 1rem;
}

.contact-submit i {
    transition: transform 0.25s var(--lb-ease);
}

.contact-submit:hover i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    .contact-shell {
        border-radius: 20px;
    }

    .contact-form-card {
        padding: 1.75rem 1.35rem 2rem;
    }

    .contact-info-panel {
        padding: 1.5rem;
    }
}

/* Footer */
.site-footer {
    background: var(--lb-soft-blue);
    padding-top: 4rem;
}

.site-footer .footer-logo {
    height: 46px;
    width: auto;
    margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
    color: var(--lb-muted);
}

.site-footer a:hover {
    color: var(--lb-navy);
}

.site-footer h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.55rem;
}

.footer-bottom {
    border-top: 1px solid rgba(35, 45, 110, 0.08);
    margin-top: 2.5rem;
    padding: 1.15rem 0;
    font-size: 0.9rem;
}

.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--lb-navy);
    margin-right: 0.4rem;
    box-shadow: 0 2px 8px rgba(35, 45, 110, 0.08);
}

.social-links a:hover {
    background: var(--lb-navy);
    color: #fff;
}

/* Legal pages */
.page-hero {
    background: linear-gradient(135deg, var(--lb-soft), var(--lb-soft-blue));
    padding: 3.5rem 0 2.5rem;
}

.legal-content {
    padding: 3rem 0 5rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--lb-muted);
}

.legal-box {
    background: var(--lb-soft);
    border-radius: var(--lb-radius);
    padding: 1.5rem;
    margin: 1.25rem 0;
}

/* Utilities */
.bg-soft {
    background: var(--lb-soft);
}

.text-muted-lb {
    color: var(--lb-muted) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 3rem 0 6rem;
        text-align: center;
    }

    .hero-title {
        max-width: none;
        margin-inline: auto;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .about-gallery {
        min-height: auto;
        margin-top: 2.5rem;
    }

    .about-gallery .img-main {
        width: 100%;
        height: 280px;
        margin: 0;
    }

    .about-gallery .img-accent {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 1rem;
        border: none;
    }

    .cta-banner-inner {
        text-align: center;
    }

    .cta-banner-inner .d-flex {
        justify-content: center;
    }

    .navbar-lilla .navbar-collapse {
        background: #fff;
        border-radius: var(--lb-radius);
        padding: 1rem;
        margin-top: 0.75rem;
        box-shadow: var(--lb-shadow);
    }

    .navbar-lilla .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .service-preview {
        margin-top: -3rem;
    }

    .contact-form-card,
    .cta-banner-inner {
        padding: 1.5rem;
    }

    .topbar .topbar-contact span + span {
        display: none;
    }
}
