/* ------------------------------
   GLOBAL BASE
------------------------------ */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

a {
    color: #1966a4;
    text-decoration: none;
    transition: 0.3s ease;
}
a:hover {
    color: #3091DF;
    text-decoration: underline;
}

button, .btn {
    background-color: #1966a4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}
button:hover, .btn:hover {
    background-color: #3091DF;
}

/* ------------------------------
   HEADINGS + PARAGRAPHS
------------------------------ */
h1, h2, h3, h4, h5, h6 {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 15px;
    color: #1966a4;
    font-weight: 700;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }

p {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 15px;
	color: #555 ;
}

/* ------------------------------
   MAIN NAVBAR
------------------------------ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1966a4;
    padding: 10px 20px;
    color: #fff;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-left strong {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.nav-left .phone {
    font-weight: bold;
    color: #fff;
}

.nav-mobile {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-right {
    display: flex;
    gap: 20px;
}
.nav-right a {
    color: #fff;
    font-weight: bold;
}

.hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
}

.hero .cta-buttons .btn {
    margin: 10px;
}

.hero .image-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.rounded-image {
    width: 250px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ------------------------------
   ABOUT
------------------------------ */
.about {
    padding: 50px 20px;
    background: #f1f1f1;
    text-align: center;
}

/* ------------------------------
   SERVICES
------------------------------ */
.services .service-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.service-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* ------------------------------
   TESTIMONIALS
------------------------------ */
.testimonials {
    background: #1966a4;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}
.testimonials blockquote {
    margin: 20px auto;
    max-width: 700px;
}

.testimonials p {
	color: #fff;
}

/* ------------------------------
   HOW IT WORKS
------------------------------ */
.how-it-works .steps {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.step {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ------------------------------
   TABLES / FORMS
------------------------------ */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
}
table th {
    padding: 12px;
    background: #1966a4;
    color: #fff;
}
table td {
    padding: 12px;
    border: 1px solid #ddd;
}

form {
    max-width: 600px;
    margin: 20px auto;
    padding: 28px;
    background: #fff;
    border-radius: 8px;
}

/* ------------------------------
   FOOTER FIX (DESKTOP)
------------------------------ */

#footer {
    background: #333;
    padding: 40px 0;
    color: #fff;
}

#footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* SOCIAL ICONS */
#social-media {
    margin-bottom: 25px;
}

#social-media a {
    display: inline-block;
    margin: 0 12px;
}

#social-media img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* QUICK LINKS */
#quick-links {
    margin-bottom: 25px;
}

#quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#quick-links ul li {
    display: inline-block;
    margin: 0 15px;
}

#quick-links a {
    color: #fff;
    font-size: 17px;
}

#quick-links a:hover {
    text-decoration: underline;
}

/* COPYRIGHT */
#copyright {
    font-size: 15px;
    opacity: 0.85;
    margin-top: 15px;
}

/* ABOUT PAGE */
.about-us {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.about-us section {
    margin-bottom: 50px;
}

.about-us h1, 
.about-us h2 {
    text-align: center;
    color: #1966a4;
}

.about-us p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    text-align: center;
}
/* ------------------------------
   B2B PAGE
------------------------------ */
.b2b-services-page {
    padding: 20px;
    background: #f9f9f9;
}

/* Hero Banner */
.hero-banner {
    text-align: center;
    padding: 60px 20px;
    background: url('/assets/img/hero-b2b.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}
.hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero-banner p {
    font-size: 1.2rem;
    color: #555;
}

/* Services Grid */
.services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.service {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service h2 {
    margin-bottom: 10px;
    color: #1966a4;
}
.service p {
    margin-bottom: 10px;
    color: #555;
}

/* Carousel */
.carousel {
    text-align: center;
    margin-top: 50px;
}
.carousel-container {
    display: flex;
    overflow: hidden;
    gap: 15px;
    justify-content: center;
    animation: slide-b2b 15s infinite linear;
}
.carousel-slide {
    min-width: 300px;
    max-width: 300px;
}
.carousel-slide img {
    width: 100%;
    border-radius: 10px;
}

/* Auto-slide animation */
@keyframes slide-b2b {
    0% { transform: translateX(0); }
    25% { transform: translateX(-25%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}
/* ------------------------------
   COOKIE POLICY PAGE
------------------------------ */
.cookie-policy {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.cookie-policy h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.cookie-policy hr {
    margin: 30px 0;
    border: none;
    border-bottom: 1px solid #ddd;
}

.cookie-policy ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.cookie-policy li {
    margin-bottom: 6px;
}
/* ------------------------------
   MRLAUNDRY+ PAGE
------------------------------ */


.mlp-container {
    max-width: 1050px;
    margin: 20px auto;
    padding: 20px;
}

.mlp-section {
    margin-top: 60px;
    text-align: center;
}

.mlp-section h2 {
    color: #0d2c54;
    margin-bottom: 15px;
}

.mlp-section p {
    font-size: 18px;
    opacity: 0.9;
}

.mlp-buttons {
    margin-top: 30px;
}

.mlp-buttons a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: #1966a4;
}

.mlp-buttons a.secondary {
    background: #0d2c54;
}

/* GRID DESKTOP */
.mlp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* CARD */
.mlp-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    text-align: center;
}

.mlp-card h3 {
    margin-bottom: 10px;
    color: #0d2c54;
}

.mlp-badge {
    font-weight: bold;
    font-size: 17px;
    color: #1966a4;
    margin-bottom: 15px;
}
/* ------------------------------
   OUR SERVICES PAGE (DESKTOP)
------------------------------ */

.services-page {
    padding: 20px;
    background: #f9f9f9;
}

.services-page .hero-banner {
    text-align: center;
    padding: 60px 20px;
    background: url('/assets/img/services/hero-services.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.services-page .hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service img {
    width: 130px;
    height: auto;
    margin-bottom: 15px;
}

.service h2 {
    color: #1966a4;
    margin-bottom: 10px;
}
/* ------------------------------
   PRIVACY POLICY PAGE (DESKTOP)
------------------------------ */

.privacy-policy {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.privacy-policy h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.privacy-policy hr {
    margin: 30px 0;
    border: none;
    border-bottom: 1px solid #ddd;
}

.privacy-policy ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-policy li {
    margin-bottom: 6px;
}
/* ------------------------------
   TERMS OF USE PAGE (DESKTOP)
------------------------------ */

.terms-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.terms-page h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.terms-page hr {
    margin: 30px 0;
    border: none;
    border-bottom: 1px solid #ddd;
}

.terms-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.terms-page li {
    margin-bottom: 6px;
}
