* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url("herosection.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 1.5s ease-out;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    font-size: 6.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-content p {
    font-size: 2.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
    animation-delay: 1.5s;
}

.header-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

/* Services Section */
.services {
    background-color: #3b82f6;
    padding: 100px 0;
    color: white;
}

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

.services h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.brand {
    color: #1e3a8a;
    font-weight: bold;
}

.blue-text {
    color: #3b82f6;
}

.services-list {
    list-style: none;
    margin: 2rem 0;
}

.services-list li {
    font-size: 1.5rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.services-list li::before {
    content: "•";
    margin-right: 10px;
    color: #00ffcc;
    font-size: 1.8rem;
}

.services-list li:hover {
    transform: translateX(10px);
    color: #00ffcc;
}

/* Service Images */
.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.service-image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

.service-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    filter: brightness(0.9);
}

.service-images img:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

/* Pricing Section */
.pricing {
    background-color: white;
    padding: 80px 0;
    color: #1e3a8a;
}

.pricing-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.pricing-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
}

.price-card {
    background-color: #1e3a8a;
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

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

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.4;
}

.price-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
}

/* Cleaning Services Section */
.cleaning-services-wrapper {
    background-color: #3b82f6;
    width: 100%;
    padding: 4rem 0;
}

.cleaning-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.leather-cleaning,
.upholstery-cleaning {
    background-color: #3b82f6;
    color: white;
    padding: 60px 0;
}

.price-list-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.price-list-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 8px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-name {
    font-weight: 300;
    letter-spacing: 1px;
}

.item-price {
    font-weight: 500;
    color: #fff;
}

.price-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* Contact Section */
.contact {
    background-color: white;
    padding: 60px 0;
    color: #1e3a8a;
}

.contact-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.2);
    color: #1e3a8a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-item {
    font-size: 1.5rem;
    padding: 15px;
    background: #1e3a8a;
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.contact-item span {
    margin-left: 10px;
}

.contact-item a {
    margin-left: 10px;
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: #3b82f6;
    padding: 20px 0;
    color: white;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.copyright {
    font-size: 1rem;
    opacity: 0.8;
}

.copyright a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.fade-in-stagger.appear {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .cleaning-services-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .service-images {
        gap: 15px;
    }

    .service-images img {
        height: 250px;
    }

    .pricing-cards {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-images {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto;
    }

    .service-images img {
        height: 300px;
    }

    .services-container {
        padding: 0 20px;
    }

    .services h1 {
        font-size: 2.8rem;
    }

    .services h2 {
        font-size: 1.8rem;
    }

    .services-list li {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .header-container {
        width: 95%;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-list-title {
        font-size: 2.2rem;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }
    
    .price-item {
        font-size: 1.1rem;
        padding: 8px 0;
    }
    
    .pricing {
        padding: 40px 0;
    }

    .pricing-container {
        width: 95%;
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .services h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-images {
        gap: 15px;
        margin: 20px auto;
    }

    .service-images img {
        height: 200px;
    }

    .services h1 {
        font-size: 2.2rem;
    }

    .services h2 {
        font-size: 1.5rem;
    }

    .services-list {
        margin: 1.5rem 0;
    }

    .services-list li {
        font-size: 1.1rem;
        margin: 0.8rem 0;
    }

    .services-container {
        width: 95%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 30px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .nav a {
        font-size: 10px;
    }
    
    .contact-item {
        font-size: 1.2rem;
        padding: 12px;
    }
    
    .price-list-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .price-list-container {
        padding: 20px 15px;
        width: 95%;
    }
    
    .price-item {
        font-size: 0.95rem;
        padding: 6px 0;
    }
    
    .item-name {
        font-size: 0.95rem;
    }
    
    .item-price {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .pricing-cards {
        gap: 15px;
    }

    .price-card {
        padding: 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-card li {
        font-size: 1rem;
    }
    
    .cleaning-services-container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 390px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-list li {
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .contact-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .price-list-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .price-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .service-images img {
        height: 180px;
    }

    .services h1 {
        font-size: 2rem;
    }

    .services h2 {
        font-size: 1.3rem;
    }

    .services-list li {
        font-size: 1rem;
        margin: 0.6rem 0;
    }
}

.cleaning-services-wrapper,
.pricing,
.services,
.contact,
.footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}