:root {
    --primary-blue: #00AEEF;
    --secondary-orange: #F7941D;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #F9F9F9;
    --white: #FFFFFF;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange {
    color: var(--secondary-orange);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0099d1;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #ddd;
    margin-left: 10px;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-orange {
    background-color: var(--secondary-orange);
    color: var(--white);
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 85px;
    width: auto;
    transition: max-height 0.3s ease;
}

@media (max-width: 600px) {
    .logo img {
        max-height: 60px;
    }
}

.nav a {
    margin: 0 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.nav a:hover {
    color: var(--primary-blue);
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: var(--primary-blue);
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease-out;
    cursor: pointer;
}

.hero-image img:hover {
    animation: wiggle 0.5s ease-in-out infinite;
}

@keyframes wiggle {
    0% {
        transform: rotate(0deg) scale(1.02);
    }

    25% {
        transform: rotate(2deg) scale(1.02);
    }

    50% {
        transform: rotate(0deg) scale(1.02);
    }

    75% {
        transform: rotate(-2deg) scale(1.02);
    }

    100% {
        transform: rotate(0deg) scale(1.02);
    }
}

.hero-image {
    position: relative;
    z-index: 1;
}

.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sparkle {
    position: absolute;
    background: white;
    /* Clean 4-pointed star shape */
    clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
    opacity: 0;
    z-index: 10;
    /* Soft, elegant glow */
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 8px rgba(0, 174, 239, 0.4));
    animation: sparkle-anim linear infinite;
}

@keyframes sparkle-anim {
    0% {
        transform: scale(0) translate(0, 0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) translate(-10px, -10px) rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: scale(0) translate(-20px, -20px) rotate(360deg);
        opacity: 0;
    }
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: transparent;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.icon-dusting {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.icon-hoovering {
    bottom: 15%;
    right: 90%;
    /* Positioned to the left */
    animation-delay: 1.5s;
}

.icon-ironing {
    top: 5%;
    right: 5%;
    animation-delay: 3s;
}

.icon-washing {
    bottom: 10%;
    right: 0;
    animation-delay: 4.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Services */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

@media (max-width: 768px) {

    .services,
    .why-choose-us,
    .testimonials,
    .faq,
    .contact {
        padding: 40px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info {
    padding: 25px;
    position: relative;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-orange);
    /* Or white with shadow */
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: absolute;
    top: -25px;
    right: 25px;
    box-shadow: 0 5px 15px rgba(247, 148, 29, 0.3);
}

.service-info h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-info a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.features-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-center-image {
    flex: 1.5;
    text-align: center;
    padding: 0 20px;
}

.feature-center-image img {
    width: 100%;
    max-width: 400px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-column.left .feature-item {
    flex-direction: row-reverse;
    text-align: right;
    justify-content: flex-start;
}

.feature-column.right .feature-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .feature-column.left .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .feature-item {
        gap: 15px;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #fff4e6;
    /* Light orange bg */
    color: var(--secondary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary-orange);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* Feedback */
.feedback {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0087c2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.stars {
    color: #FFC107;
    font-size: 0.8rem;
}

.quote-icon {
    margin-left: auto;
    font-size: 2rem;
    opacity: 0.3;
}


/* Process */
.process {
    padding: 80px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background-color: #e0f7fa;
    /* Light blue */
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

/* Connectors - pseudo elements to draw lines */
.step-connector {
    display: none;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0faff 100%);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0087c2 100%);
    color: var(--white);
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.05rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.social-links {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-5px);
}

.contact-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form {
    padding: 50px;
    background: var(--white);
}

.form-group-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    /* Fixed spacing issue */
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.1);
}

.form-group:focus-within label {
    color: var(--primary-blue);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.2);
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.3);
}

/* Latest News */
.latest-news {
    padding: 80px 0;
    background-color: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.news-content a {
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content a:hover {
    gap: 12px;
}

/* Newsletter */
.newsletter-container {
    margin-top: 80px;
    background-color: var(--primary-blue);
    /* Or gradient */
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-image {
    flex: 1;
    /* Image overlaps out of container usually */
    margin-right: -40px;
}

.newsletter-image img {
    max-width: 100%;
    border-radius: 10px;
}

.newsletter-content {
    flex: 1;
    padding-left: 40px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px;
    border-radius: 30px;
    border: none;
    flex: 1;
}


/* Footer */
.footer {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.footer-links a:hover {
    padding-left: 5px;
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 900px) {

    .hero-container,
    .features-layout,
    .contact-wrapper,
    .newsletter-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        display: flex;
        gap: 30px;
    }

    .hero-container {
        text-align: center;
        padding-top: 10px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        margin: 0 auto 25px;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-image img {
        max-width: 250px;
        margin: 0 auto;
    }

    .feature-column.left .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .feature-column {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .icon-box {
        right: 50%;
        transform: translateX(50%);
        top: -25px;
    }
}

/* Mobile Menu Styles */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
    margin-left: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 600px) {
    .header-actions .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .mobile-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        display: block;
        margin: 15px 0;
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.container-narrow {
    max-width: 800px !important;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft UI shadow */
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.1);
    /* Subtle blue glow on hover */
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-blue);
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    background-color: #f8fbff;
    /* Light blue tint for open ones */
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}