    /* Custom styles to complement Tailwind */
    
    * {
        scroll-behavior: smooth;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Thin lines decoration */
    .thin-line {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(120, 40, 72, 0.2), transparent);
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #fdf4f6;
    }
    ::-webkit-scrollbar-thumb {
        background: #b82848;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #9a1d3b;
    }

    /* Selection color */
    ::selection {
        background: #f9d0d9;
        color: #6b1a31;
    }

    /* Mobile menu transitions */
    .mobile-link {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    #mobile-menu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobile-link:nth-child(3) { transition-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }

    /* Image hover zoom */
    .img-zoom {
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .img-zoom:hover {
        transform: scale(1.03);
    }

    /* Service card hover lift */
    .service-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-card:hover {
        transform: translateY(-4px);
    }

    /* 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);
    }

    /* Stagger children */
    .stagger-children > * {
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
    .stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
    .stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
    .stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
    .stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
    .stagger-children.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Input focus animation */
    input:focus, textarea:focus, select:focus {
        border-color: #b82848;
        box-shadow: 0 0 0 3px rgba(184, 40, 72, 0.1);
    }

    /* Nav active state */
    nav.scrolled {
        box-shadow: 0 1px 20px rgba(107, 26, 49, 0.08);
    }

    /* Button ripple effect */
    .btn-ripple {
        position: relative;
        overflow: hidden;
    }
    .btn-ripple::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }
    .btn-ripple:active::after {
        width: 200px;
        height: 200px;
    }
