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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #2563eb 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: clamp(60px, 10vw, 70px);
}

.logo img {
    width: clamp(120px, 25vw, 150px);
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #e2e8f0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e2e8f0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('images/Rectangle 2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 clamp(15px, 5vw, 20px);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: clamp(12px, 3vw, 15px) clamp(30px, 5vw, 40px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    min-width: 150px;
}

.cta-button a {
    text-decoration: none;
    color: white;
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* Services Section */
.services {
    padding: clamp(60px, 10vw, 100px) 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #64748b;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.service-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
}

.service-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section Styles */
.contact {
    padding: clamp(60px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.contact-card.branch-office::before {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-header {
    margin-bottom: 2rem;
}

.office-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.office-badge.branch {
    background: #1d4ed8;
}

.contact-header h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.info-icon {
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-icon svg {
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
}

.branch-office .info-icon {
    color: #1d4ed8;
}

.info-text p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.info-text strong {
    color: #1e293b;
}

/* Quick Contact Form */
.quick-contact {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 5vw, 3rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.quick-contact h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.8rem, 2vw, 1rem);
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(10px, 2vw, 15px);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: clamp(0.85rem, 2vw, 1rem);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    padding: clamp(12px, 2.5vw, 15px) clamp(20px, 4vw, 30px);
    border-radius: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

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

/* How It Works Section */
.how-it-works {
    padding: clamp(60px, 10vw, 100px) 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.step {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem) 1rem;
}

.step-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
}

.step h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: clamp(60px, 10vw, 100px) 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #1e293b;
}

.checkmark {
    background: #10b981;
    color: white;
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: bold;
}

.laundry-image {
    height: clamp(250px, 40vw, 400px);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.laundry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: clamp(40px, 8vw, 60px) 0 clamp(15px, 3vw, 20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #2563eb;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.footer-section a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Responsive Design */
@media (max-width: 900px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .laundry-image {
        height: clamp(200px, 35vw, 300px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: clamp(60px, 10vw, 70px);
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item a {
        color: #1e293b;
        font-size: 1rem;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        background-attachment: scroll;
        height: clamp(80vh, 100vw, 90vh);
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .service-card {
        padding: clamp(1.2rem, 3vw, 1.5rem);
    }

    .contact-card {
        padding: clamp(1.2rem, 3vw, 1.5rem);
    }

    .quick-contact {
        padding: clamp(1.2rem, 3vw, 1.5rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-icon {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: clamp(50px, 8vw, 60px);
    }

    .logo img {
        width: clamp(60px, 12vw, 80px);
    }

    .hero {
        height: clamp(70vh, 90vw, 80vh);
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .cta-button {
        padding: clamp(10px, 2.5vw, 12px) clamp(20px, 4vw, 30px);
        min-width: 120px;
    }

    .services {
        padding: clamp(40px, 8vw, 60px) 0;
    }

    .contact {
        padding: clamp(40px, 8vw, 60px) 0;
    }

    .how-it-works {
        padding: clamp(40px, 8vw, 60px) 0;
    }

    .why-choose-us {
        padding: clamp(40px, 8vw, 60px) 0;
    }

    .footer {
        padding: clamp(30px, 6vw, 40px) 0 clamp(10px, 2vw, 15px);
    }
}

/* Success/Error Messages */
.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}