/* Authentication Pages Styling - Login & Index */

/* Global box-sizing for Auth Pages */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Reset and Base Styles */
html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.auth-page {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Force full width layout without any gaps */
body.auth-page {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    transform: translateX(0);
}

/* Remove all margins and ensure full width */
.auth-page .main-content {
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
}

/* Override Bootstrap container defaults to use full width */
.auth-page .container,
.auth-page .container-fluid {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure sections take full viewport width */
.auth-page .hero-section,
.auth-page .features-section,
.auth-page .cta-section {
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Hide navigation elements on auth pages */
.auth-page .sidebar,
.auth-page .navbar,
.auth-page .sidebar-toggle-btn,
.auth-page .sidebar-backdrop {
    display: none;
}

/* Container overrides for auth pages */
.auth-page .main-content {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

/* Login Page Styles */
.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 2rem;
}

.login-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

.login-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-header {
    text-align: center;
    padding: 3.5rem 3rem 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.login-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.login-logo i {
    color: white;
    font-size: 2rem;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 0;
}

.login-form-container {
    padding: 3rem;
}

.login-input {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem 1.4rem 1.4rem 3.8rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    min-height: 65px;
    font-weight: 500;
}

.login-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    background: white;
}

.form-floating label {
    padding-left: 3.5rem;
    color: #64748b;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-floating label i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.1rem;
}

.login-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border: none;
    border-radius: 16px;
    padding: 1.4rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
    width: 100%;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.login-footer {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 2.5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.help-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

/* Ensure hero section content is properly aligned */
.hero-section .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-highlight {
    background: linear-gradient(135deg, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    opacity: 0.9;
    color: #e0f2fe;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #e0f2fe;
}

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

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.hero-btn-primary .btn-content {
    position: relative;
    z-index: 2;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.hero-btn-secondary .btn-content {
    position: relative;
    z-index: 2;
}

/* Visual Cards */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.visual-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    width: 100%;
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.features-section .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card.featured {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.4);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    position: relative;
}

.cta-section .container {
    width: 100%;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.4rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
    color: #e2e8f0;
}

.cta-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .feature-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .login-card {
        margin: 0;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }
    
    .login-header {
        padding: 3rem 2.5rem 2.5rem;
    }
    
    .login-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 2rem;
    }
    
    .login-logo i {
        font-size: 2.5rem;
    }
    
    .login-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .login-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .login-form-container {
        padding: 2.5rem;
    }
    
    .login-footer {
        padding: 2.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .visual-card {
        flex-direction: column;
        text-align: center;
    }
    
    .visual-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-card.featured {
        transform: none;
    }
    
    .cta-content {
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .shape {
        display: none;
    }
    
    .login-container {
        padding: 0.75rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        min-height: 100vh;
        justify-content: flex-start;
    }
    
    .login-card {
        border-radius: 20px;
    }
    
    .login-header {
        padding: 2.5rem 2rem 2rem;
    }
    
    .login-logo {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
    }
    
    .login-logo i {
        font-size: 2rem;
    }
    
    .login-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .login-form-container {
        padding: 2rem;
    }
    
    .login-input {
        padding: 1.3rem 1.3rem 1.3rem 3.5rem;
        font-size: 1.1rem;
        min-height: 60px;
        border-radius: 14px;
    }
    
    .form-floating label {
        font-size: 1rem;
        padding-left: 3.2rem;
    }
    
    .form-floating label i {
        font-size: 1.2rem;
        left: 1.1rem;
    }
    
    .login-btn {
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
        border-radius: 14px;
    }
    
    .login-footer {
        padding: 2rem;
    }
    
    .help-text {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* Extra small screens (iPhone SE, small phones) */
@media (max-width: 420px) {
    .login-container {
        padding: 0.5rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .login-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .login-logo {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .login-logo i {
        font-size: 1.75rem;
    }
    
    .login-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
    
    .login-form-container {
        padding: 1.5rem;
    }
    
    .login-input {
        padding: 1.1rem 1.1rem 1.1rem 3.2rem;
        font-size: 1rem;
        min-height: 55px;
        border-radius: 12px;
    }
    
    .form-floating label {
        font-size: 0.95rem;
        padding-left: 3rem;
    }
    
    .form-floating label i {
        font-size: 1.1rem;
        left: 1rem;
    }
    
    .login-btn {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .login-footer {
        padding: 1.5rem;
    }
    
    .help-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Floating Furniture Animations */
.floating-furniture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.furniture-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
    animation-duration: 25s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    opacity: 0.15;
}

.chair-1 {
    top: 12%;
    left: 8%;
    animation-name: floatChair1;
    animation-delay: 0s;
    font-size: 3.5rem;
}

.sofa-1 {
    top: 28%;
    right: 12%;
    animation-name: floatSofa1;
    animation-delay: 4s;
    font-size: 4.2rem;
}

.lamp-1 {
    top: 6%;
    right: 15%;
    animation-name: floatLamp1;
    animation-delay: 8s;
    font-size: 3rem;
}

.table-1 {
    top: 45%;
    left: 5%;
    animation-name: floatTable1;
    animation-delay: 2s;
    font-size: 3.8rem;
}

.chair-2 {
    top: 65%;
    right: 8%;
    animation-name: floatChair2;
    animation-delay: 10s;
    font-size: 3.2rem;
}

.bed-1 {
    top: 72%;
    left: 18%;
    animation-name: floatBed1;
    animation-delay: 6s;
    font-size: 3.6rem;
}

.lamp-2 {
    top: 18%;
    left: 42%;
    animation-name: floatLamp2;
    animation-delay: 12s;
    font-size: 2.8rem;
}

.dresser-1 {
    top: 50%;
    right: 30%;
    animation-name: floatDresser1;
    animation-delay: 14s;
    font-size: 3.4rem;
}

.sofa-2 {
    top: 82%;
    right: 35%;
    animation-name: floatSofa2;
    animation-delay: 3s;
    font-size: 3.7rem;
}

.chair-3 {
    top: 32%;
    left: 62%;
    animation-name: floatChair3;
    animation-delay: 7s;
    font-size: 3.1rem;
}

.wardrobe-1 {
    top: 20%;
    left: 22%;
    animation-name: floatWardrobe1;
    animation-delay: 15s;
    font-size: 3.8rem;
}

.desk-1 {
    top: 58%;
    right: 55%;
    animation-name: floatDesk1;
    animation-delay: 18s;
    font-size: 3.3rem;
}

/* Professional floating animations that continuously float without fade effects */
@keyframes floatChair1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(50px, -35px) rotate(10deg); }
    50% { transform: translate(-30px, -65px) rotate(-6deg); }
    75% { transform: translate(70px, -45px) rotate(15deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatSofa1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    20% { transform: translate(-60px, 35px) rotate(4deg); }
    40% { transform: translate(40px, -45px) rotate(-3deg); }
    60% { transform: translate(-40px, -25px) rotate(5deg); }
    80% { transform: translate(50px, 25px) rotate(-4deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatLamp1 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    30% { transform: translate(45px, -50px) rotate(18deg) scale(1.15); }
    60% { transform: translate(-35px, 25px) rotate(-12deg) scale(0.85); }
    100% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
}

@keyframes floatTable1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    25% { transform: translate(55px, -30px) rotate(-5deg); }
    50% { transform: translate(-45px, -55px) rotate(3deg); }
    75% { transform: translate(35px, 20px) rotate(-7deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatChair2 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(-50px, -40px) rotate(-10deg); }
    66% { transform: translate(60px, 30px) rotate(12deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatBed1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    40% { transform: translate(-55px, -35px) rotate(3deg); }
    80% { transform: translate(45px, -60px) rotate(-4deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatLamp2 {
    0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
    50% { transform: translate(-40px, -45px) rotate(-15deg) scale(1.2); }
    100% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
}

@keyframes floatDresser1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    35% { transform: translate(65px, -40px) rotate(6deg); }
    70% { transform: translate(-35px, 25px) rotate(-5deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatSofa2 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    30% { transform: translate(-50px, -50px) rotate(-3deg); }
    70% { transform: translate(40px, -30px) rotate(4deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatChair3 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    40% { transform: translate(-45px, -55px) rotate(14deg); }
    80% { transform: translate(55px, -35px) rotate(-10deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatWardrobe1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    40% { transform: translate(-30px, -40px) rotate(3deg); }
    80% { transform: translate(25px, -20px) rotate(-2deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

@keyframes floatDesk1 {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(40px, -45px) rotate(-6deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

/* Mobile adjustments for furniture */
@media (max-width: 768px) {
    .furniture-item {
        font-size: 2.2rem;
    }
    
    .sofa-1, .table-1, .sofa-2, .wardrobe-1 {
        font-size: 2.8rem;
    }
    
    .chair-1, .chair-2, .chair-3 {
        font-size: 2.5rem;
    }
    
    .bed-1, .dresser-1, .desk-1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 576px) {
    .furniture-item {
        font-size: 1.8rem;
    }
    
    .sofa-1, .table-1, .sofa-2 {
        font-size: 2.2rem;
    }
    
    .chair-1, .chair-2 {
        font-size: 2rem;
    }
    
    /* Hide some items on very small screens to reduce visual clutter */
    .chair-3, .dresser-1, .lamp-2, .wardrobe-1, .desk-1 {
        display: none;
    }
}

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

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

/* Add animations to elements */
.hero-badge { animation: fadeInUp 0.8s ease; }
.hero-title { animation: fadeInUp 0.8s ease 0.2s both; }
.hero-description { animation: fadeInUp 0.8s ease 0.4s both; }
.hero-stats { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-buttons { animation: fadeInUp 0.8s ease 0.8s both; }
.hero-visual { animation: fadeInRight 1s ease 0.5s both; }