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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    position: relative;
}

.logo-icon::before {
    content: '✨';
    font-size: 28px;
    color: #ec94c1;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 400;
}

.logo-text h1 .brand {
    color: #ec94c1;
    font-weight: 600;
}

.logo-text h1 .pressing {
    color: #a8b5d4;
    font-weight: 300;
}

.logo-text p {
    font-size: 12px;
    color: #666;
    margin-top: -2px;
}

nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 15px;
}

nav a:first-child {
    background: linear-gradient(135deg, #ec94c1, #d8a0c4);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 148, 193, 0.3);
}

nav a:hover {
    background: rgba(236, 148, 193, 0.1);
}

nav a:first-child:hover {
    background: linear-gradient(135deg, #d884b0, #c890b3);
    box-shadow: 0 6px 20px rgba(236, 148, 193, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #ffc5d9 0%, 
        #f8d4e6 20%, 
        #b8e5f5 50%, 
        #d4e8f5 70%, 
        #ffc5d9 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background-image: url('assets/hero-pressing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Laundry Background Image Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 197, 217, 0.6), rgba(184, 229, 245, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ffc5d9" width="1200" height="800"/></svg>');
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

/* Animated Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #b8e5f5, transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ffc5d9, transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #d4e8f5, transparent);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
    text-align: center;
}

/* Glassmorphism Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge::before {
    content: '✨';
    font-size: 20px;
}

.badge span {
    color: #333;
    font-size: 16px;
}

/* Main Heading */
h2 {
    font-size: 80px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
}

h2 .light {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
}

h2 .dark {
    color: #2d3436;
    font-weight: 600;
}

.subtitle {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.7);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    color: #666;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    color: #333;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

/* Responsive Design */
@media (max-width: 968px) {
    header {
        padding: 15px 30px;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        border-radius: 20px 0 0 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 15px;
    }

    nav.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    h2 {
        font-size: 50px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .hero-content {
        padding: 60px 30px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 15px 20px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 11px;
    }

    h2 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .badge {
        padding: 12px 25px;
    }

    .badge span {
        font-size: 14px;
    }

    .features {
        padding: 0 20px;
    }

    .feature-card {
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }
}

/* Services Section Styles */
.services-section {
    padding: 100px 50px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 50px;
    background: #f5f5f5;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-title {
    font-size: 56px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
}

.why-choose-subtitle {
    font-size: 18px;
    color: #999;
    margin-bottom: 80px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.why-number {
    font-size: 64px;
    font-weight: 300;
    color: #ec94c1;
    margin-bottom: 20px;
}

.why-number.why-blue {
    color: #87ceeb;
}

.why-number.why-light-blue {
    color: #b8dff0;
}

.why-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.why-description {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
}

/* Responsive Why Choose */
@media (max-width: 968px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-title {
        font-size: 42px;
    }

    .why-choose-section {
        padding: 70px 30px;
    }
}

@media (max-width: 640px) {
    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .why-card {
        padding: 45px 30px;
    }

    .why-number {
        font-size: 52px;
    }

    .why-choose-section {
        padding: 60px 20px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ec94c1, #a8b5d4);
    padding: 100px 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 15s infinite ease-in-out;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-cta-primary {
    background: white;
    color: #ec94c1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 30px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

    .cta-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }
}

/* Footer Styles */
.footer {
    background: #f8f9fa;
    padding: 80px 50px 40px;
    border-top: 1px solid #e9ecef;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 400;
}

.footer-logo .brand {
    color: #ec94c1;
    font-weight: 600;
}

.footer-logo .pressing {
    color: #c0c0c0;
    font-weight: 300;
}

.footer-description {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #888;
    font-size: 15px;
}

.footer-contact li svg {
    color: #ec94c1;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-hours {
    color: #888;
}

.hours-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.hours-main svg {
    color: #ec94c1;
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-note {
    font-size: 14px;
    color: #ec94c1;
    font-weight: 500;
    margin-top: 10px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column {
        text-align: left;
    }
}

.services-section {
    padding: 100px 50px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-title {
    font-size: 72px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-nos {
    color: #ec94c1;
    font-weight: 300;
}

.title-services {
    color: #a8b5d4;
    font-weight: 300;
}

.services-subtitle {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.service-image {
    position: relative;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background-size: cover !important;
    background-position: center !important;
}

.service-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05) 60%, transparent 100%);
    z-index: 1;
}

.service-icon-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec94c1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-name {
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.service-content {
    padding: 30px 25px;
}

.service-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.service-included {
    font-size: 12px;
    font-weight: 600;
    color: #ec94c1;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

.service-list li {
    font-size: 15px;
    color: #888;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #ec94c1;
    font-size: 12px;
}

/* Responsive Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 30px;
    }

    .services-title {
        font-size: 48px;
    }

    .services-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-image {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 50px 20px;
    }

    .services-title {
        font-size: 36px;
    }

    .service-name {
        font-size: 24px;
    }

    .service-content {
        padding: 25px 20px;
    }
}