/* MOON LAUNDRY - Components CSS */

/* SERVICE SELECTOR */
.service-selector {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sector-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.sector-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.sector-card h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.sector-card p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
}

.sector-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sector-features span {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* SECTOR CONTENT */
.sector-content {
    min-height: 400px;
}

.sector-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.sector-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sector-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.sector-services {
    padding: 4rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price {
    font-weight: bold;
    color: #059669;
    font-size: 1.125rem;
}

.turnaround {
    color: #6b7280;
    font-size: 0.875rem;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    position: relative;
    padding-left: 1rem;
}

.features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* SUBSECTORS */
.sector-subsectors {
    padding: 4rem 0;
}

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

.subsector-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.subsector-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.subsector-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subsector-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.subsector-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* SUBSECTOR DETAIL */
.subsector-detail {
    padding: 4rem 0;
}

.subsector-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subsector-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.subsector-benefits {
    background: #f8fafc;
    padding: 3rem 0;
    margin: 3rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefits-list li {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 2.5rem;
}

.benefits-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
}

/* SERVICES LIST */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-item .price {
    display: block;
    font-weight: bold;
    color: #059669;
    font-size: 1.125rem;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* LOADING */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    font-size: 1.125rem;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .selector-grid,
    .services-grid,
    .subsectors-grid,
    .benefits-grid,
    .services-list {
        grid-template-columns: 1fr;
    }

    .sector-hero h1 {
        font-size: 2rem;
    }

    .benefit-icon,
    .sector-icon {
        font-size: 2.5rem;
    }
}

/* SECTOR PLACEHOLDER */
.sector-placeholder {
    padding: 4rem 0;
    background: #f8fafc;
}

.placeholder-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-content h2 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* CONTRACT INFO */
.contract-info {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contract-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contract-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contract-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contract-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.contract-label {
    font-weight: 500;
}

.contract-value {
    font-weight: 600;
    color: #fbbf24;
}

/* SECTOR DETAIL */
.sector-detail {
    padding: 4rem 0;
}

.sector-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.sector-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-info h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sector-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
}

.volume-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.volume-label {
    font-weight: 500;
    color: #374151;
}

.volume-value {
    font-weight: 600;
    color: #3b82f6;
}

/* SECTOR PROBLEMS */
.sector-problems {
    margin-bottom: 3rem;
}

.sector-problems h2 {
    text-align: center;
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 8px;
    border-left: 4px solid #ef4444;
}

.problem-item span:last-child {
    color: #374151;
}

/* SECTOR SOLUTION */
.sector-solution {
    margin-bottom: 3rem;
    text-align: center;
}

.sector-solution h2 {
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.sector-solution p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* SECTOR ROI */
.sector-roi {
    margin-bottom: 3rem;
}

.sector-roi h2 {
    text-align: center;
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.roi-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.roi-item.highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.roi-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.roi-item.highlight .roi-label {
    color: rgba(255, 255, 255, 0.9);
}

.roi-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

/* RENTING ADVANTAGES */
.renting-advantages {
    margin-bottom: 3rem;
}

.renting-advantages h2 {
    text-align: center;
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.advantage-item span:last-child {
    color: #374151;
}

/* RENTING INCLUDES */
.renting-includes {
    margin-bottom: 3rem;
}

.renting-includes h2 {
    text-align: center;
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.include-item span:last-child {
    color: #374151;
}

/* SECTOR FEATURES */
.sector-features {
    margin-bottom: 3rem;
}

.sector-features h2 {
    text-align: center;
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.feature-item span:last-child {
    color: #374151;
}

/* SECTOR CASE STUDY */
.sector-casestudy {
    margin-bottom: 3rem;
    text-align: center;
}

.sector-casestudy h2 {
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.casestudy-quote {
    font-style: italic;
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

/* SECTOR CTA */
.sector-cta {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin: 3rem 0;
}

.sector-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sector-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* SERVICE HIGHLIGHTS */
.service-highlights {
    padding: 4rem 0;
    background: #f8fafc;
}

.service-highlights .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: #6b7280;
}

/* SECTORS OVERVIEW */
.sectors-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sector-overview-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sector-overview-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sector-overview-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.sector-overview-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 4rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-2px);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #6b7280;
}

/* COOKIE CONSENT */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-text p {
    margin: 0;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    margin-left: 2rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.cookie-btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.cookie-btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.cookie-btn-secondary {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

.cookie-btn-secondary:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.cookie-btn-outline {
    background: transparent;
    color: #6b7280;
    border-color: #d1d5db;
}

.cookie-btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* SERVICE SELECTOR */
.service-selector-section {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-tab:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.service-tab.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* SECTOR CONTENT */
.sector-content-section {
    padding: 4rem 0;
}

.sector-content {
    max-width: 1200px;
    margin: 0 auto;
}

.sector-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sector-header img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sector-header .subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SECTOR GRID */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sector-problemas,
.sector-solucion,
.sector-roi {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sector-problemas h3,
.sector-solucion h3,
.sector-roi h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sector-problemas ul {
    list-style: none;
    padding: 0;
}

.sector-problemas li {
    padding: 0.5rem 0;
    color: #dc2626;
    border-bottom: 1px solid #fee2e2;
}

.sector-problemas li:last-child {
    border-bottom: none;
}

.sector-solucion p {
    color: #374151;
    line-height: 1.6;
}

.sector-roi p {
    margin: 0.5rem 0;
    color: #374151;
}

.sector-roi .benefit {
    color: #059669;
    font-weight: 700;
    font-size: 1.1rem;
}

/* SECTOR CASE STUDY */
.sector-case-study {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #3b82f6;
}

.sector-case-study h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.sector-case-study p {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
}

/* SECTOR FEATURES */
.sector-features {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.sector-features h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sector-features ul {
    list-style: none;
    padding: 0;
}

.sector-features li {
    padding: 0.5rem 0;
    color: #059669;
    border-bottom: 1px solid #dcfce7;
}

.sector-features li:last-child {
    border-bottom: none;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }

    .service-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    .sector-header h1 {
        font-size: 2rem;
    }

    .sector-header img {
        height: 200px;
    }
}

/* SECTOR SELECTOR */
.sector-selector {
    margin: 2rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.sector-selector h3 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.25rem;
}

#sector-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sector-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sector-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.sector-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

/* SERVICE TABS */
.service-tabs {
    margin: 2rem 0;
    text-align: center;
}

.service-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}