/* ============================================================
   site.css — client-facing component library, utilities,
   animations, and image-handling helpers.
   Consolidated from components.css + utilities.css +
   animations.css + images.css (previously 4 separate files
   always loaded together on every client page).
   ============================================================ */

/* ---- components.css ---- */
/* ============================================
   ROSE SEWING STUDIO - DESIGN SYSTEM
   Professional Edition v2.0
   ============================================ */

:root {
    /* Color Palette - Brand Colors */
    --primary: #6a4bc3;
    --primary-light: #8567d9;
    --primary-dark: #4f369b;
    --primary-alpha: rgba(106, 75, 195, 0.1);
    --primary-alpha-heavy: rgba(106, 75, 195, 0.6);
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

    /* Semantic Colors */
    --success: #10b981;
    --success-dark: #059669;
    --success-alpha: rgba(16, 185, 129, 0.1);

    --warning: #f59e0b;
    --warning-dark: #d97706;
    --warning-alpha: rgba(245, 158, 11, 0.1);

    --danger: #ef4444;
    --danger-dark: #dc2626;
    --danger-alpha: rgba(239, 68, 68, 0.1);

    --info: #3b82f6;
    --info-alpha: rgba(59, 130, 246, 0.1);

    /* Grayscale */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;

    /* Shadows & Effects */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --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);
    --shadow-warm: 0 8px 30px rgba(106, 75, 195, 0.15);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --glass-bg: rgba(31, 41, 55, 0.85);
        --glass-border: rgba(55, 65, 81, 0.3);
        --gray-50: #111827;
        --gray-100: #1f2937;
        --gray-200: #374151;
        --gray-300: #4b5563;
        --gray-600: #9ca3af;
        --gray-700: #d1d5db;
        --gray-800: #e5e7eb;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #fef9f0 0%, #fff5e6 100%);
    min-height: 100vh;
}

/* ------------------------------
   Buttons
------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

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

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background: var(--gray-300);
    transform: translateY(-2px);
}
/* ------------------------------
   Service Image & Hover Effects
------------------------------ */
.service-image-wrapper {
    position: relative;
    width: 100%;
    background: var(--gray-100);
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 220px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.08);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-alpha-heavy);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-base);
    cursor: pointer;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.image-overlay i {
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.image-overlay span {
    font-size: 0.875rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform var(--transition-base) 0.05s;
}

.service-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.service-image-wrapper:hover .image-overlay i,
.service-image-wrapper:hover .image-overlay span {
    transform: translateY(0);
}

/* Shine Effect */.service-image-wrapper:hover .image-shine {
    left: 100%;
}

/* Image Counter Badge */
.image-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
}

/* ------------------------------
   Lazy Loading & Image Visibility
------------------------------ */.lazy-image.loaded,
.lazy-image.image-loaded {
    opacity: 1;
}

/* Shimmer Loading Effect */@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Broken Image Fallback */
.service-image.error,
img.error {
    position: relative;
    min-height: 200px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image.error::after,
img.error::after {
    content: '🧵';
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gray-400);
}

/* Fallback Container */.image-fallback i {
    font-size: 3rem;
}

.image-fallback span {
    font-size: 0.75rem;
}

/* ------------------------------
   Cards
------------------------------ */
.card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-img-top {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    background: var(--gray-100);
}

.card-body {
    padding: 1.25rem;
    flex: 1;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ------------------------------
   Glass Effect
------------------------------ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

/* ------------------------------
   Responsive Design
------------------------------ */
@media (max-width: 768px) {
    .service-image-wrapper {
        min-height: 180px;
    }

    .card-img-top,
    .service-image {
        min-height: 180px;
    }

    .image-overlay i {
        font-size: 1.5rem;
    }

    .image-overlay span {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .service-image-wrapper {
        min-height: 160px;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* ------------------------------
   Utility Classes
------------------------------ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--gray-500); }

.bg-primary { background: var(--primary-gradient); }
.bg-light { background: var(--gray-100); }
.bg-white { background: white; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Flex Utilities */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

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

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Staggered Animation for Cards */
.stagger-children > * {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.3s; }

/* ------------------------------
   Accessibility - Reduced Motion
------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .service-image-wrapper:hover .service-image {
        transform: none;
    }

    .image-overlay {
        display: none;
    }
}

/* ------------------------------
   Print Styles
------------------------------ */
@media print {
    .btn,
    .image-overlay,
    .glass {
        display: none;
    }

    .service-image-wrapper {
        break-inside: avoid;
    }

    body {
        background: white;
    }
}

/* Portfolio Image Modal */
.portfolio-image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1050;
    display: flex;
    opacity: 0;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}
.portfolio-image-modal.active { opacity: 1; pointer-events: auto; }
.portfolio-modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    animation: zoomIn 0.3s ease;
}
.portfolio-modal-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}
@media (max-width: 600px) {
    .portfolio-modal-image { max-width: 100%; max-height: 100%; }
}
@keyframes zoomIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
.portfolio-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: none;
    border: none;
}
.portfolio-modal-close:hover { transform: rotate(90deg); }
/* ---- utilities.css ---- */
/* ============================================
   UTILITIES.CSS - Helper & Utility Classes
   Version: 2.0 - Refactored
   ============================================ */

/* ------------------------------
   Spacing (Margin & Padding)
------------------------------ */
/* Margin */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }
.m-auto { margin: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-auto { margin-top: auto; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-auto { margin-bottom: auto; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: var(--space-1); }
.ml-2 { margin-left: var(--space-2); }
.ml-3 { margin-left: var(--space-3); }
.ml-4 { margin-left: var(--space-4); }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: var(--space-1); }
.mr-2 { margin-right: var(--space-2); }
.mr-3 { margin-right: var(--space-3); }
.mr-4 { margin-right: var(--space-4); }
.mr-auto { margin-right: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-1); }
.pt-2 { padding-top: var(--space-2); }
.pt-3 { padding-top: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-1); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-5 { padding-bottom: var(--space-5); }

.px-1 { padding-left: var(--space-1); padding-right: var(--space-1); }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }

/* ------------------------------
   Display & Flex
------------------------------ */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.d-grid { display: grid; }

.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-center { align-items: center; }
.align-stretch { align-items: stretch; }

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

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

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Font Weights */
.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }

/* Text Colors */
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-muted { color: var(--gray-600); }
.text-white { color: white; }

/* ------------------------------
   Background Utilities
------------------------------ */
.bg-white { background: white; }
.bg-transparent { background: transparent; }
.bg-primary { background: var(--primary); }
.bg-primary-alpha { background: var(--primary-alpha); }
.bg-success { background: var(--success); }
.bg-danger { background: var(--danger); }
.bg-warning { background: var(--warning); }
.bg-gray-100 { background: var(--gray-100); }
.bg-gray-200 { background: var(--gray-200); }

/* ------------------------------
   Border & Radius
------------------------------ */
.border { border: 1px solid var(--gray-200); }
.border-top { border-top: 1px solid var(--gray-200); }
.border-bottom { border-bottom: 1px solid var(--gray-200); }
.border-none { border: none; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* ------------------------------
   Shadows
------------------------------ */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ------------------------------
   Position
------------------------------ */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

/* ------------------------------
   Sizing
------------------------------ */
.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ------------------------------
   Cursor
------------------------------ */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

/* ------------------------------
   Overflow
------------------------------ */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* ------------------------------
   Opacity
------------------------------ */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ------------------------------
   Z-Index
------------------------------ */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ------------------------------
   Responsive Utilities
------------------------------ */
@media (max-width: 768px) {
    .hide-mobile { display: none; }
    .text-center-mobile { text-align: center; }
    .flex-column-mobile { flex-direction: column; }
}

@media (min-width: 769px) {
    .hide-desktop { display: none; }
}

/* ------------------------------
   Print Utilities
------------------------------ */
@media print {
    .no-print { display: none !important; }
}
/* ---- animations.css ---- */
/* ============================================
   ANIMATIONS.CSS - Keyframes & Motion Effects
   Version: 2.0 - Refactored
   ============================================ */

/* ------------------------------
   Keyframes
------------------------------ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: var(--primary); }
    100% { transform: scale(1); }
}

@keyframes placeholderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ------------------------------
   Animation Classes
------------------------------ */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}
.stat-updated {
    animation: pulse 0.4s ease;
}

/* Atelier Animations */
@keyframes unfurl {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes runningStitch {
    0% { border-color: transparent; }
    50% { border-color: #c5867d; }
    100% { border-color: transparent; }
}
/* Staggered Children */
.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.3s; }
/* ---- images.css ---- */
/* Ensure the placeholder icon disappears once the image loads */
.service-image-wrapper {
    position: relative;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
}

/* Hide the icon when the image inside is visible */
.service-image-wrapper img {
    position: relative;
    z-index: 2; /* Sits above the icon */
    background: white; /* Prevents icon bleed-through */
}

.service-image-wrapper::before {
    content: "\f030"; /* Camera icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #dee2e6;
    position: absolute;
    z-index: 1; /* Sits behind the image */
}

/* ---- Extracted from one-off inline styles ---- */
.text-accent-rose { color: #c5867d; }
.badge-accent-rose { background: rgba(197, 134, 125, 0.1); color: #c5867d; }
.tracked-wide { letter-spacing: 0.05em; }
.leading-relaxed { line-height: 1.6; }
.progress-track { height: 12px; border-radius: 20px; background: #e9ecef; }
.progress-track-sm { height: 10px; border-radius: 10px; }
.progress-bar-rounded { border-radius: 10px; }
.label-tracked-xs { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.text-2xs { font-size: 0.75rem; }
.modal-image { max-width: 90%; max-height: 90%; border-radius: 10px; box-shadow: 0 0 50px rgba(0, 0, 0, 0.5); }
.service-image-wrapper { position: relative; overflow: hidden; background: #f8f9fa; border-radius: 12px; }
.service-image-wrapper.h-small { height: 50px; }
.service-image-wrapper.h-medium { height: 220px; }
.service-image-wrapper.h-large { height: 300px; }
.service-image-wrapper.h-thumbnail { height: 80px; }
.service-image-cover { width: 100%; height: 100%; object-fit: cover; }
.service-image-placeholder {
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.service-image-placeholder.h-small { height: 50px; }
.service-image-placeholder.h-medium { height: 220px; }
.service-image-placeholder.h-large { height: 300px; }
.service-image-placeholder.h-thumbnail { height: 80px; }
.address-suggestions {
    z-index: 1050;
    display: none;
    max-height: 240px;
    overflow-y: auto;
}
.container-md-narrow { max-width: 720px; }
.card-img-placeholder { height: 200px; }
.fab-back-to-top { width: 50px; height: 50px; }
.fab-position { z-index: 100; }