/* 
   CUCIMURA LAUNDRY KEMANGGISAN - STYLE
   Fresh, Friendly, Student-Focused
*/

:root {
    --primary: #00a8e8;       /* Bright Cyan */
    --primary-dark: #007ea7;
    --accent: #ffcc00;        /* Bright Yellow */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f4fbff;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 168, 232, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--accent);
}

.accent {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 204, 0, 0.3);
    z-index: -1;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary-lg {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.2);
}

.btn-primary-lg:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.3);
}

.btn-secondary-lg {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 36px;
    font-size: 1rem;
    margin-left: 12px;
}

.btn-secondary-lg:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* NAVBAR */
.navbar {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo .location {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* HERO SECTION */
.hero {
    padding: 80px 0 120px;
    background: radial-gradient(circle at 80% 20%, #e0f4ff 0%, #ffffff 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
}

.img-hero {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 168, 232, 0.15);
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: 40px;
    background: var(--accent);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.experience-card .count {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
}

.experience-card .label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* FEATURES */
.about {
    padding-bottom: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* SERVICES */
.services {
    background-color: var(--bg-light);
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-card .price {
    display: inline-block;
    background-color: var(--accent);
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.8rem;
}

/* GALLERY */
.gallery {
    padding: 120px 0;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px;
    gap: 20px;
}

.mosaic-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.mosaic-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* LOCATION SECTION */
.location {
    padding-bottom: 120px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.address {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--primary-dark);
}

.contact-box {
    margin-bottom: 40px;
}

.contact-box p {
    margin-bottom: 16px;
}

.img-final {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* FOOTER */
.footer {
    padding: 80px 0 40px;
    background-color: var(--bg-light);
}

.footer-inner {
    text-align: center;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.footer-brand p {
    font-weight: 700;
    color: var(--text-light);
}

/* FLOAT WA */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.float-wa:hover {
    transform: translateY(-5px);
}

.float-wa img {
    width: 25px;
    height: 25px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p { margin: 0 auto 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .location-content { grid-template-columns: 1fr; gap: 40px; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .btn-secondary-lg { margin-left: 0; margin-top: 12px; display: block; }
    .features-grid { grid-template-columns: 1fr; }
}
