:root {
    --primary: #599837; /* Green from logo */
    --primary-dark: #1b4b24;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #fbfbfb;
}

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

body {
    background-color: #fff;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    color: #888;
    transition: color 0.3s;
}
.nav-links a.active, .nav-links a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

.btn-book-now {
    background: #0d4624;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-book-now:hover {
    background: #09331a;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-bg picture, .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 0;
    }
    .hero-bg {
        position: relative;
        height: auto;
    }
    .hero-bg picture, .hero-bg img {
        height: auto;
        object-fit: contain;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.btn-order {
    display: inline-block;
    background: #3c7050;
    color: white;
    padding: 12px 60px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.btn-order:hover {
    transform: translateY(-2px);
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.icon-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0f5132;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services */
.services-section {
    padding: 80px 5%;
    text-align: center;
    background: #fff;
}

.services-section h2, .why-section h2 {
    color: #124b3b;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 0 0 30px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
}

.img-wrapper {
    position: relative;
    height: 250px;
    margin-bottom: 40px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 4px solid var(--primary);
}

.service-card h3 {
    color: #124b3b;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more {
    color: #3b82f6;
    font-weight: 500;
}

/* Why UClean */
.why-section {
    padding: 80px 5%;
    text-align: center;
    overflow: hidden;
    background: #fbfbfb;
}

.why-circle-container {
    position: relative;
    width: 750px;
    height: 750px;
    margin: 0 auto;
}

.center-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 10;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Adjust layout based on image 3 */
.item-1 { top: 15%; left: -5%; text-align: right; flex-direction: row; }
.item-2 { top: 35%; left: -20%; text-align: right; flex-direction: row; }
.item-10 { top: 55%; left: -20%; text-align: right; flex-direction: row; }
.item-9 { top: 75%; left: -5%; text-align: right; flex-direction: row; }

.item-3 { top: 15%; right: -5%; text-align: left; flex-direction: row-reverse; }
.item-4 { top: 35%; right: -20%; text-align: left; flex-direction: row-reverse; }
.item-5 { top: 55%; right: -20%; text-align: left; flex-direction: row-reverse; }
.item-6 { top: 75%; right: -5%; text-align: left; flex-direction: row-reverse; }

.item-8 { bottom: -2%; left: 15%; text-align: right; flex-direction: row; }
.item-7 { bottom: -2%; right: 15%; text-align: left; flex-direction: row-reverse; }

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #1b4b24 0%, #153c1d 100%);
    padding: 60px 5% 0 5%;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-left {
    width: 50%;
    padding-left: 50px;
}

.offer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.grand-opening {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
}

.grand-opening .outline-text {
    color: #fff;
}

.grand-opening .script {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    color: #fff;
    font-size: 3.5rem;
    text-shadow: none;
    -webkit-text-stroke: 0px #fff;
}

.discount-box {
    display: flex;
    align-items: flex-end;
    margin: 20px 0;
    color: #e6e6e6;
}

.discount-box .number {
    font-size: 10rem;
    font-weight: 900;
    line-height: 0.75;
}

.percent-off {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    padding-bottom: 10px;
}

.percent-off .percent {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
}

.percent-off .off {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.dry-cleaning {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-top: 10px;
}
.dry-cleaning strong {
    font-size: 1.4rem;
}

.tnc {
    transform: rotate(-90deg);
    position: absolute;
    left: -30px;
    top: 50%;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #999;
}

.offer-right {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
}

.free-pickup {
    position: absolute;
    top: 0;
    right: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.sarees-img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.25);
    padding: 15px 40px;
    margin-top: 40px;
    color: #ccc;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.offer-footer .divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.2);
}

.btn-whatsapp {
    background: #8ec63f;
    color: #1b4b24;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 0.3s;
}
.btn-whatsapp:hover {
    transform: scale(1.05);
}

.btn-whatsapp i {
    font-size: 2.2rem;
    color: #fff;
}

.btn-whatsapp .btn-text {
    display: flex;
    flex-direction: column;
}
.btn-lbl { font-size: 0.7rem; letter-spacing: 1px; }
.btn-num { font-size: 1.3rem; }

/* Main Footer */
.main-footer {
    background: #cecece;
}

.footer-top {
    padding: 60px 5%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 100px;
}

.footer-brand h2 {
    color: #8ec63f;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.footer-contact {
    width: 60%;
}

.contact-row {
    display: flex;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.contact-item {
    width: 50%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #333;
}
.contact-item.full-width {
    width: 100%;
}

.contact-item i {
    color: #8ec63f;
    margin-top: 4px;
    font-size: 1.1rem;
}

.footer-bottom {
    background: #599837;
    padding: 40px 5%;
    text-align: center;
    color: white;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-services {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
}
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* --- PC Layout Adjustments --- */
@media (min-width: 769px) {
    .why-section h2 {
        margin-bottom: 10px;
    }
    .why-circle-container {
        margin-top: -70px;
    }
}

/* --- Mobile Responsive Additions --- */
.mobile-menu-icons {
    display: none;
}
.carousel-wrapper {
    position: relative;
}
.carousel-arrow {
    display: none;
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links { display: none; }
    .mobile-menu-icons {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 1.8rem;
    }
    
    /* Services */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .service-card {
        width: 100%;
    }

    /* Why UClean */
    .why-circle-container {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;
        padding: 20px 0;
    }
    .center-img {
        display: none;
    }
    .feature-item {
        position: static;
        width: auto;
        flex-direction: column !important;
        text-align: center !important;
        font-size: 0.8rem;
    }
    .feature-icon {
        margin-bottom: 10px;
        order: -1;
    }
    
    /* Offer Section */
    .offer-section {
        padding: 40px 5% 0;
    }
    .offer-content {
        flex-direction: column;
        text-align: center;
    }
    .offer-left, .offer-right {
        width: 100%;
        padding: 0;
    }
    .offer-left { margin-bottom: 20px; }
    .offer-right {
        flex-direction: column;
        align-items: center;
    }
    .offer-logo {
        margin: 0 auto 20px;
    }
    .discount-box { 
        justify-content: center; 
        margin: 10px 0;
    }
    .discount-box .number { font-size: 7rem; }
    .percent-off .percent { font-size: 3rem; }
    .percent-off .off { font-size: 1.5rem; }
    .tnc {
        position: static;
        transform: none;
        margin-top: 15px;
        display: block;
    }
    .sarees-img {
        border-radius: 12px;
        width: 90%;
        margin-bottom: 15px;
        order: 1;
    }
    .free-pickup {
        position: static;
        transform: none;
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 8px 15px;
        margin-bottom: 15px;
        order: 2;
    }
    .offer-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }
    .offer-footer .divider {
        width: 100%;
        height: 1px;
    }
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-brand h2 {
        font-size: 2rem;
    }
    .footer-contact {
        width: 100%;
    }
    .contact-row {
        flex-direction: column;
        gap: 15px;
    }
    .contact-item {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .footer-services {
        font-size: 1rem;
        line-height: 1.8;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
