/* FreshSpace Cleaning - Custom Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #333; background: #fff; }

.grid-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.grid-x { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
.grid-margin-x { margin-left: -15px; margin-right: -15px; }
.grid-margin-x > .cell { margin-left: 15px; margin-right: 15px; }

.cell { padding: 0 15px; }
.small-12 { width: 100%; }
.small-6 { width: 50%; }
.small-4 { width: 33.333%; }

@media screen and (min-width: 640px) {
    .medium-12 { width: 100%; }
    .medium-9 { width: 75%; }
    .medium-6 { width: 50%; }
    .medium-4 { width: 30.333%; }
    .medium-3 { width: 25%; }
    .medium-2 { width: 16.666%; }
}

@media screen and (min-width: 1024px) {
    .large-5 { width: 41.666%; }
    .large-4 { width: 30.333%; }
    .large-3 { width: 22%; }
}

#wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.main { flex: 1; }

/* Header */
.header { background: #fff; border-bottom: 1px solid #eee; }
.header_logo a { font-size: 1.5rem; font-weight: 700; color: #000; text-decoration: none; }
.header_logo a:hover { color: #da532c; }

.navi { display: flex; justify-content: flex-end; align-items: center; }
.navi ul { list-style: none; display: flex; gap: 30px; margin: 0; }
.navi a { color: #000; text-decoration: none; font-weight: 500; transition: color 0.3s; }
.navi a:hover { color: #da532c; }

.menu-sp { display: none; cursor: pointer; font-size: 1.5rem; }

@media screen and (max-width: 639px) {
    .navi ul { display: none; }
    .menu-sp { display: block; }
}

/* Mobile Menu */
.menuCanvas { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: #fff; box-shadow: -2px 0 10px rgba(0,0,0,0.1); transition: right 0.3s; z-index: 1000; }
.menuCanvas.active { right: 0; }
.menuCanvas__item { padding: 20px; }
.menu-close { text-align: right; font-size: 2rem; cursor: pointer; margin-bottom: 20px; }
.menu-close:before { content: "×"; }
.menuList { list-style: none; }
.menuList li { margin: 15px 0; }
.menuList a { color: #000; text-decoration: none; font-size: 1.1rem; }

/* Hero Section */
.hero-section { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 100px;
    position: relative;
    color: #fff;
    text-align: center;
}

.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.3); }

.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; font-weight: 700; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.95; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-secondary, .btn-primary-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary { background: #da532c; color: #fff; }
.btn-primary:hover { background: #c44825; transform: translateY(-2px); }

.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #667eea; }

.btn-primary-large { background: #da532c; color: #fff; font-size: 1.1rem; padding: 18px 40px; }
.btn-primary-large:hover { background: #c44825; transform: translateY(-2px); }

@media screen and (max-width: 639px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* Features Section */
.features-section { padding: 80px 0; background: #f9f9f9; }

.feature-box { text-align: center; padding: 30px 20px; }
.feature-icon { 
    width: 80px; 
    height: 80px; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.feature-box h3 { font-size: 1.3rem; margin-bottom: 15px; color: #000; }
.feature-box p { color: #666; line-height: 1.7; }

/* About Section */
.about-section { padding: 80px 0; }
.about-content { padding: 40px; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; color: #000; }
.about-content p { margin-bottom: 25px; color: #666; line-height: 1.8; }

.check-list { list-style: none; margin-top: 30px; }
.check-list li { 
    padding: 12px 0; 
    color: #333;
    font-size: 1.05rem;
}
.check-list i { color: #da532c; margin-right: 12px; font-size: 1.1rem; }

/* Services Grid */
.services-grid { padding: 80px 0; background: #f9f9f9; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; color: #000; }
.section-header p { font-size: 1.2rem; color: #666; }

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: #000; }
.service-card p { color: #666; margin-bottom: 20px; line-height: 1.7; }

.service-link { 
    color: #da532c; 
    text-decoration: none; 
    font-weight: 600;
    transition: color 0.3s;
}
.service-link:hover { color: #c44825; }

/* CTA Section */
.cta-section { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.cta-content p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.95; }

/* Contact Info Grid */
.brandBox { padding: 80px 0; }

.contact-info-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.contact-item i {
    font-size: 3rem;
    color: #da532c;
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer { background: #2c3e50; color: #fff; padding: 40px 0 20px; margin-top: 0; }
.totop { text-align: center; margin-bottom: 30px; cursor: pointer; }
.totop span { display: inline-block; padding: 10px 20px; background: #da532c; color: #fff; border-radius: 5px; transition: background 0.3s; }
.totop span:hover { background: #c44825; }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    flex: 1;
}

.footer_link { 
    list-style: none; 
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0;
}

.footer_link li { margin: 0; }
.footer_link a { color: #fff; text-decoration: none; transition: color 0.3s; }
.footer_link a:hover { color: #da532c; }

.footer-copy {
    text-align: right;
}

.copy { 
    text-align: right; 
    font-size: 0.9rem; 
    color: #bbb; 
    margin: 0;
}

@media screen and (max-width: 639px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer_link {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-copy {
        text-align: center;
    }
    
    .copy {
        text-align: center;
    }
}

/* Form Elements */
input, select, textarea { font-family: inherit; font-size: inherit; }
label { display: block; margin-bottom: 5px; font-weight: 500; }

.lazyload { opacity: 0; transition: opacity 0.3s; }
.lazyloaded { opacity: 1; }


/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-page-section {
    padding: 80px 0;
}

.contact-info-box, .contact-form-box {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    height: 100%;
}

.contact-info-box h2, .contact-form-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.info-item {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: #da532c;
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #000;
}

.info-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    background: #da532c;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #c44825;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #000;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Services Detail Page */
.services-detail-section {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail.reverse .grid-x {
    flex-direction: row-reverse;
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #000;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #333;
}

.service-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #da532c;
    font-weight: bold;
    font-size: 1.2rem;
}

@media screen and (max-width: 639px) {
    .service-detail.reverse .grid-x {
        flex-direction: column;
    }
    
    .service-img {
        height: 250px;
    }
    
    .service-detail-content {
        padding: 20px;
    }
    
    .contact-info-box, .contact-form-box {
        padding: 25px;
    }
}


/* Policy Pages */
.policy-content {
    padding: 60px 0;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #000;
}

.policy-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #333;
}

.policy-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Thank You Page */
.thankyou-content {
    padding: 80px 0;
}

.thankyou-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.thankyou-box i {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 30px;
}

.thankyou-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.thankyou-box p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}


/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-card {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-number {
    font-size: 3rem;
    font-weight: 700;
    color: #da532c;
    margin-bottom: 20px;
    opacity: 0.3;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #fff;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #000;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

@media screen and (max-width: 639px) {
    .why-card, .testimonial-card {
        margin-bottom: 20px;
    }
    
    .process-step {
        margin-bottom: 40px;
    }
}
