/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Header - Optimized for mobile */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(255, 152, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 152, 0, 0.1);
}

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

.logo {
    height: 60px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 152, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

.nav-menu a:hover {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 152, 0, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Enhanced with background image */
.hero {
    margin-top: 80px;
    height: 80vh;
    background: 
        linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(78, 205, 196, 0.8), rgba(69, 183, 209, 0.8), rgba(150, 206, 180, 0.8), rgba(255, 234, 167, 0.8), rgba(221, 160, 221, 0.8)),
        url('images/background.png') center/cover no-repeat;
    background-size: 400% 400%, cover;
    animation: gradientShift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%, center; }
    50% { background-position: 100% 50%, center; }
    100% { background-position: 0% 50%, center; }
}

/* Welcome Section - Enhanced with theme colors */
.welcome {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 152, 0, 0.02) 100%);
    text-align: center;
    position: relative;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722, #ff9800);
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 300;
    position: relative;
}

.welcome h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}

.welcome p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-link {
    display: inline-block;
    margin-top: 2rem;
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ff9800;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-link:hover {
    background: #ff9800;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* Services Section - Enhanced */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid transparent;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff9800, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.service-content p {
    color: #666;
    line-height: 1.8;
}

/* Folded Clothes Section - Enhanced with auto-slideshow */
.folded-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    position: relative;
}

.folded-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722, #ff9800);
}

.folded-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.folded-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}

.folded-image {
    width: 100%;
    max-width: 800px;
    height: 500px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #ff9800, #ff5722) border-box;
}

.folded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.5s ease;
}

.folded-image:hover img {
    transform: scale(1.02);
}

.image-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    inset: -2px;
    padding: 2px;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover::before {
    opacity: 1;
}

.thumbnail:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.thumbnail.active {
    transform: scale(1.2);
    border-color: #ff9800;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.thumbnail.active::before {
    opacity: 1;
}

/* Slideshow controls */
.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slideshow-pause {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.slideshow-pause:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

/* Pricing Section - Enhanced */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.pricing-category {
    margin-bottom: 2rem;
}

.pricing-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    position: relative;
}

.pricing-category h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30%;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    border-radius: 8px;
}

.pricing-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
}

.item-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Contact Section - Enhanced with filled details */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 152, 0, 0.05) 100%);
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #ff9800, #ff5722);
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 2px;
}

.contact-section p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.0rem;
}

.contact-button {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.contact-info {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid transparent;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.2);
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Footer - Enhanced */
footer {
    background: linear-gradient(135deg, #333, #222);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722, #ff9800);
}

.footer-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-address {
    margin: 1rem 0;
    line-height: 1.8;
}

.footer-note {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Header mobile styles */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-top: 2px solid rgba(255, 152, 0, 0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 12px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile menu animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero section mobile */
    .hero {
        height: 60vh;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    /* Welcome section mobile */
    .welcome {
        padding: 60px 0;
    }
    
    .welcome h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .welcome p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Services section mobile */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }
    
    /* Folded section mobile */
    .folded-section {
        padding: 60px 0;
    }

    .folded-section h2 {
        font-size: 1.4rem;
        letter-spacing: 1px;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .folded-image {
        height: 300px;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }

    .image-thumbnails {
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0 1rem;
    }

    .thumbnail {
        width: 45px;
        height: 45px;
    }

    .slideshow-controls {
        padding: 0 1rem;
    }

    .slideshow-pause {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Pricing section mobile */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-table {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .pricing-category h3 {
        font-size: 1.1rem;
    }

    .pricing-item {
        padding: 0.6rem 0;
        flex-wrap: wrap;
    }

    .item-name, .item-price {
        font-size: 0.9rem;
    }

    .pricing-note {
        font-size: 0.9rem;
        margin-top: 1.5rem;
    }
    
    /* Contact section mobile */
    .contact-section {
        padding: 60px 0;
    }

    .contact-section h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .contact-section p {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .contact-button {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 0 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Footer mobile */
    footer {
        padding: 2rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-content h3 {
        font-size: 1.3rem;
    }

    .footer-address {
        font-size: 0.9rem;
    }

    .footer-note {
        font-size: 0.8rem;
        margin-top: 1.5rem;
    }
}

/* Extra small devices (phones, 600px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .welcome h2 {
        font-size: 1.5rem;
    }

    .folded-section h2 {
        font-size: 1.2rem;
    }

    .folded-image {
        height: 250px;
    }

    .thumbnail {
        width: 40px;
        height: 40px;
    }

    .pricing-table {
        padding: 1rem;
    }

    .contact-section h2 {
        font-size: 1.4rem;
    }

    .contact-info {
        gap: 1rem;
    }
}

/* Large screens optimization */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}