/* ============================================================
   alphacrysentium.com - Home Organization Services
   Color Palette: Soft white, natural wood, sage green
   Typography: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

:root {
    --sage: #7a9a7e;
    --sage-dark: #5f7d63;
    --sage-light: #e8f0e9;
    --sage-muted: #b5cdb8;
    --wood: #c4a882;
    --wood-dark: #8b7355;
    --wood-light: #f0e6d6;
    --cream: #faf8f5;
    --cream-dark: #f2ede6;
    --white: #ffffff;
    --text-primary: #2d3228;
    --text-secondary: #5a6356;
    --text-muted: #8a9186;
    --border: #e4e0da;
    --border-light: #f0ece6;
    --shadow: rgba(45, 50, 40, 0.08);
    --shadow-md: rgba(45, 50, 40, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-primary);
}

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

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

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

::selection {
    background-color: var(--sage-light);
    color: var(--text-primary);
}

/* ---- Geometric Grid Pattern Background ---- */
.bg-cream {
    background-color: var(--cream);
    background-image:
        linear-gradient(rgba(122,154,126,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,154,126,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ---- Buttons ---- */
.btn-sage {
    background-color: var(--sage);
    color: var(--white);
    border: 2px solid var(--sage);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-sage:hover, .btn-sage:focus {
    background-color: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122,154,126,0.3);
}

.btn-outline-sage {
    background-color: transparent;
    color: var(--sage);
    border: 2px solid var(--sage);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-sage:hover, .btn-outline-sage:focus {
    background-color: var(--sage);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light {
    border-width: 2px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---- Navbar ---- */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background-color: transparent;
    z-index: 1040;
}

.navbar.scrolled {
    background-color: rgba(250,248,245,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px var(--shadow);
    padding: 0.6rem 0;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
}

.navbar .nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0.75rem !important;
    transition: var(--transition);
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background-color: var(--sage);
    border-radius: 1px;
}

.navbar-toggler {
    min-width: 44px;
    min-height: 44px;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 50%, var(--wood-light) 100%);
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(122,154,126,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,154,126,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(250,248,245,0.5) 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background-color: var(--sage-light);
    color: var(--sage-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 500px;
}

/* Before/After Slider */
.before-after-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-md);
    user-select: none;
    touch-action: none;
}

.ba-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
}

.ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before-clip {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.ba-before-clip .ba-before {
    width: 200%;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: ew-resize;
}

.ba-handle-line {
    width: 2px;
    flex: 1;
    background-color: var(--white);
    opacity: 0.8;
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: var(--sage-dark);
    font-size: 1rem;
}

.ba-labels {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: var(--cream);
}

.ba-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

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

.section-badge {
    display: inline-block;
    background-color: var(--sage-light);
    color: var(--sage-dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.section-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--sage-light) 100%);
    padding: 8rem 0 4rem;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(122,154,126,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,154,126,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-header-compact {
    padding: 7rem 0 3rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Cards ---- */
.rounded-card {
    border-radius: var(--radius);
}

.shadow-soft {
    box-shadow: 0 4px 20px var(--shadow);
}

/* Service Cards */
.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-md);
    border-color: var(--sage-muted);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--sage-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--sage-dark);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-link:hover {
    gap: 0.6rem;
}

/* ---- Showcase Cards ---- */
.showcase-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(45,50,40,0.7));
    color: var(--white);
}

.showcase-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0.25rem 0 0;
    color: var(--white);
}

/* ---- Testimonials ---- */
.testimonial-card {
    max-width: 700px;
    text-align: center;
    padding: 2rem;
}

.testimonial-quote {
    color: var(--sage-muted);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--sage-light);
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background-color: var(--white);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.carousel-btn:hover {
    border-color: var(--sage);
    color: var(--sage-dark);
}

.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border);
    border: 0;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--sage);
}

/* ---- Philosophy Stats ---- */
.philosophy-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage-dark);
    line-height: 1.1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ---- CTA Section ---- */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(250,248,245,0.92), rgba(232,240,233,0.9));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.cta-simple {
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--cream) 100%);
}

.cta-simple .cta-overlay {
    display: none;
}

/* ---- Service Features ---- */
.service-features .feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-item i {
    color: var(--sage);
    font-size: 1.25rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---- Pricing Cards ---- */
.price-card {
    background-color: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.price-card.featured {
    background-color: var(--sage-light);
    border-color: var(--sage-muted);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-detail {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ---- Process Steps ---- */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage-muted);
    margin-bottom: 0.75rem;
}

.process-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.process-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ---- Certification Cards ---- */
.cert-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.cert-icon {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.cert-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cert-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ---- Method Cards ---- */
.method-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.method-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
}

.method-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--sage-muted);
    margin-bottom: 0.5rem;
}

.method-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.method-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Sustainability ---- */
.sustainability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sustainability-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sustainability-list li i {
    color: var(--sage);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.eco-stat {
    padding: 1rem;
}

.eco-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.eco-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ---- Transformation Cards ---- */
.transform-card {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.transform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--shadow-md);
}

.transform-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.transform-info {
    padding: 1.5rem;
}

.transform-tag {
    display: inline-block;
    background-color: var(--sage-light);
    color: var(--sage-dark);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.transform-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.transform-story {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.transform-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.transform-meta i {
    margin-right: 0.25rem;
}

/* Filter Buttons */
.btn-filter {
    background-color: var(--cream);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
    transition: var(--transition);
    min-height: 44px;
}

.btn-filter:hover, .btn-filter.active {
    background-color: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

/* ---- Guide Cards ---- */
.guide-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.guide-card:hover {
    box-shadow: 0 8px 24px var(--shadow);
}

.guide-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--sage-muted);
    margin-bottom: 0.75rem;
}

.guide-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.guide-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Seasonal Cards ---- */
.season-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.season-header {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.season-header i {
    font-size: 1.3rem;
}

.season-header h3 {
    font-size: 1.15rem;
    margin: 0;
}

.spring .season-header { background-color: #f0e8ef; color: #8b5e83; }
.summer .season-header { background-color: #e8f0e0; color: #5a7a3e; }
.autumn .season-header { background-color: #f5ede0; color: #a0724c; }
.winter .season-header { background-color: #e8edf5; color: #5a6e8a; }

.checklist {
    list-style: none;
    padding: 1rem 1.5rem 1.5rem;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.check-box {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Tip Cards ---- */
.tip-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.tip-icon {
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.tip-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.tip-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Accordion ---- */
.accordion-button {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: none !important;
    font-weight: 500;
    color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
    background-color: var(--sage-light);
    color: var(--sage-dark);
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 1rem 1.25rem;
}

/* ---- Contact ---- */
.form-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
    min-height: 44px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122,154,126,0.15);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.success-card {
    background-color: var(--sage-light);
    border: 1px solid var(--sage-muted);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.success-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.success-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.info-card {
    background-color: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.info-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.social-icon-lg {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icon-lg:hover {
    background-color: var(--sage);
    color: var(--white);
}

.corporate-list {
    list-style: none;
    padding: 0;
}

.corporate-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.corporate-list li i {
    color: var(--sage);
}

/* ---- Assessment Tool ---- */
.assessment-progress {
    max-width: 700px;
    margin: 0 auto;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cream);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background-color: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.step-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 70px;
}

.progress-step.active .step-label {
    color: var(--sage-dark);
    font-weight: 500;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--border);
    margin: 0 0.25rem;
    margin-bottom: 1.2rem;
    max-width: 60px;
}

.assessment-step {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.assessment-step.active {
    display: block;
    opacity: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Room Selection Buttons */
.room-btn {
    width: 100%;
    padding: 1.5rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 100px;
}

.room-btn i {
    font-size: 1.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.room-btn span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.room-btn:hover {
    border-color: var(--sage-muted);
    background-color: var(--sage-light);
}

.room-btn.selected {
    border-color: var(--sage);
    background-color: var(--sage-light);
}

.room-btn.selected i {
    color: var(--sage-dark);
}

/* Clutter Level Selector */
.clutter-room {
    background-color: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.clutter-room h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.clutter-scale {
    display: flex;
    gap: 0.5rem;
}

.clutter-level {
    flex: 1;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background-color: var(--white);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    min-height: 44px;
}

.clutter-level span {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.clutter-level small {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.clutter-level:hover {
    border-color: var(--sage-muted);
}

.clutter-level.selected {
    border-color: var(--sage);
    background-color: var(--sage-light);
}

/* Pain Point Buttons */
.pain-btn {
    width: 100%;
    padding: 1.25rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background-color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-height: 80px;
}

.pain-btn i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.pain-btn span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.pain-btn:hover {
    border-color: var(--sage-muted);
    background-color: var(--sage-light);
}

.pain-btn.selected {
    border-color: var(--sage);
    background-color: var(--sage-light);
}

.pain-btn.selected i {
    color: var(--sage-dark);
}

/* Upload Area */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: var(--cream);
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--sage);
    background-color: var(--sage-light);
}

.upload-icon {
    font-size: 3rem;
    color: var(--sage-muted);
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.photo-thumb {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 2px solid var(--border-light);
}

/* Results */
.result-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.result-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background-color: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--sage-dark);
    flex-shrink: 0;
}

.result-card-body {
    flex: 1;
}

.result-card-body h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.result-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.result-card-meta {
    text-align: right;
    flex-shrink: 0;
}

.result-card-meta .time {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.result-card-meta .price {
    display: block;
    font-size: 0.85rem;
    color: var(--sage-dark);
    font-weight: 600;
}

.summary-card {
    background-color: var(--sage-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.summary-card i {
    font-size: 1.5rem;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.summary-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.summary-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--sage-dark);
}

.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---- Legal Content ---- */
.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
}

.legal-content ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

/* ---- Footer ---- */
.site-footer {
    background-color: var(--text-primary);
    color: rgba(255,255,255,0.7);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
}

.social-icon:hover {
    background-color: var(--sage);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-attribution {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-attribution:hover {
    color: rgba(255,255,255,0.7);
}

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 1050;
}

.cookie-link {
    color: var(--sage-dark);
    text-decoration: underline;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: var(--sage);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1030;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(122,154,126,0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--sage-dark);
    transform: translateY(-2px);
}

/* ---- Fade-in Animation ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Floating Animation ---- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 3.5rem 0;
    }

    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

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

    .navbar-collapse {
        background-color: var(--white);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 8px 24px var(--shadow);
    }

    .navbar .nav-link.active::after {
        display: none;
    }

    .form-card {
        padding: 1.5rem;
    }
}

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

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

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

    .before-after-slider {
        margin: 0 -0.75rem;
        border-radius: var(--radius);
    }

    .ba-image-wrapper {
        aspect-ratio: 4/3;
    }

    .clutter-scale {
        flex-wrap: wrap;
    }

    .clutter-level {
        flex: 0 0 calc(20% - 0.4rem);
    }

    .result-card {
        flex-direction: column;
        text-align: center;
    }

    .result-card-meta {
        text-align: center;
    }

    .progress-steps {
        gap: 0;
    }

    .step-label {
        font-size: 0.6rem;
        max-width: 55px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .progress-line {
        max-width: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 80px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    body {
        font-size: 16px;
    }

    .clutter-level {
        flex: 0 0 calc(33.333% - 0.34rem);
    }
}
