/* NightShift Laundry - Service Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #e0e7ff;
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23fff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.1;
}

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

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* background: linear-gradient(45deg, #fff, #e0e7ff);
    background-clip: text; */
	color: #111;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px; 
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    /* background: linear-gradient(45deg, #ff6b6b, #ee5a24); */
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.cta-primary:hover, .cta-primary:focus, .cta-primary:active, .cta-primary:visited {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
	color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Local Info Section */
.local-info {
    padding: 80px 0;
    background: #f8fafc;
}

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

.local-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.local-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.local-card p {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.local-highlights {
    list-style: none;
    padding: 0;
}

.local-highlights li {
    color: #667eea;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
	font-size: 1.2rem;
}

.local-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: white;
}

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

.detail-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    background: white;
}

.detail-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
    display: block;
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.detail-card p {
    color: #718096;
    line-height: 1.6;
}

/* Coverage Areas */
.coverage-areas {
    padding: 80px 0;
    background: #f8fafc;
}

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

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.area-card h4 {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.area-card p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Footer */
footer {
    background: #1a202c;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
	list-style: none;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-text {
    color: #718096;
    font-size: 0.9rem;
}

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

.local-card,
.detail-card,
.area-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .local-grid,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .local-info,
    .service-details,
    .coverage-areas,
    .cta-section {
        padding: 60px 0;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .cta-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .local-card,
    .detail-card {
        padding: 1.5rem;
    }
    
    .area-card {
        padding: 1rem;
    }
}

/* Print styles */
@media print {
    header {
        position: static;
        background: #1a202c !important;
    }
    
    .hero,
    .cta-section {
        background: #f8fafc !important;
        color: #1a202c !important;
    }
    
    .hero h1,
    .cta-section h2 {
        color: #1a202c !important;
    }
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
}

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

/* Header */
header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
}

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

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	background: linear-gradient(45deg, #fff, #e0e7ff);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.concept-1 .logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	line-height: 1.3rem;
}

.concept-1 .moon-icon {
	font-size: 2rem;
	filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.concept-1 .night-text {
	background: linear-gradient(45deg, #ffd700, #fff);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.concept-1 .shift-text {
	color: #e0e7ff;
}

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

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.nav-links a:hover {
	color: #e0e7ff;
	transform: translateY(-2px);
}

.cta-button {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover, .cta-button:focus, .cta-button:active, .cta-button:visited {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
	color: white;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	/* background: linear-gradient(91.62deg, #E8B764 2.52%, #E6A433 75.52%); */
	color: #FFF;
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23fff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
	background-size: cover;
	opacity: 0.1;
}

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

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	/* background: linear-gradient(45deg, #fff, #e0e7ff);
	background-clip: text; */
	color: #fff;
	/* -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.cta-primary {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 16px 32px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.cta-secondary {
	background: rgba(255, 255, 255, 0.8);
	color: #000;
	padding: 16px 32px;
	border: 2px solid rgba(255, 255, 255, 1);
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.cta-primary:hover, .cta-primary:focus, .cta-primary:active, .cta-primary:visited {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
	color: white !important;
}

.cta-secondary:hover, .cta-secondary:active, .cta-secondary:focus, .cta-secondary:visited {
	background: rgba(255, 255, 255, 0.6);
	transform: translateY(-3px);
	color: #111;
	text-decoration: none;
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	margin-top: 3rem;
}

.hero-feature {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: #f8fafc;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1a202c;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #718096;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.pricing .section-subtitle {
	color: #FFF;	
}

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

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	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 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: #667eea;
}

.service-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #1a202c;
}

.service-card p {
	color: #718096;
	line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
	padding: 80px 0;
	background: white;
}

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

.why-choose-item {
	text-align: center;
	padding: 1.5rem;
}

.why-choose-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
}

.why-choose-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #1a202c;
}

.why-choose-item p {
	color: #718096;
}

/* Pricing Section */
.pricing {
	padding: 80px 0;
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
}

.pricing-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 3rem;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

.pricing-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.pricing-amount {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.pricing-unit {
	font-size: 1.1rem;
	opacity: 0.8;
	margin-bottom: 2rem;
}

.pricing-features {
	list-style: none;
	margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.5rem 0;
	opacity: 0.9;
}

.pricing-features li::before {
	content: "✓";
	color: #48bb78;
	font-weight: bold;
	margin-right: 0.5rem;
}

/* Coverage Area */
.coverage {
	padding: 80px 0;
	background: #f8fafc;
}

.coverage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
	text-align: center;
}

.coverage-item {
	background: white;
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
}

.coverage-item h3 {
	color: #667eea;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.coverage-item p {
	color: #718096;
	font-size: 0.9rem;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-align: center;
}

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

.form-group {
	margin-bottom: 1.5rem;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	/* border: none; */
	border-radius: 10px;
	font-size: 1rem;
	background: rgba(250, 250, 250, 1);
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	background: white;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.submit-btn {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 16px 32px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

/* Footer */
footer {
	background: #1a202c;
	color: white;
	padding: 3rem 0 1rem;
	text-align: center;
}

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

.footer-section h3 {
	margin-bottom: 1rem;
	color: #667eea;
}

.footer-section p,
.footer-section a {
	color: #a0aec0;
	text-decoration: none;
	line-height: 1.8;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid #2d3748;
	padding-top: 1rem;
	color: #718096;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}
	
	.concept-1 .logo-text {
		font-size: 1.0rem;
		font-weight: 800;
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.3rem;
	}
	
	.concept-1 .moon-icon {
		font-size: 1.4rem;
		filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
	}
	
	.cta-button {
		font-size: 14px;
		padding: 10px 20px;
	}
	
	.hero-features {
		gap: 1rem;
	}
	
	.hero-feature {
		padding: 1rem;
		min-width: 250px;
	}
	
	.hero-cta {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-primary,
	.cta-secondary {
		width: 100%;
		max-width: 300px;
	}
	.section-title {
		line-height: 2.6rem;
	}
}

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

.service-card,
.why-choose-item,
.coverage-item {
	animation: fadeInUp 0.6s ease forwards;
}

/* Schema Markup Styles */
.schema-hidden {
	display: none;
}
.text-white {
	color: #FFF;
}
.service-areas {
	list-style: none;
}
.service-areas li {
	display: inline-grid;
	font-size: .8rem;
	padding: .3rem .5rem;
}

.fa-solid {
	font-size: 35px;
	line-height: 70px;
	color: #754EA7;
}
#adoptDucks {
	border: 1px solid #CCC;
	padding: 2rem;
	border-radius: 12px;
}