:root {
    --pink: #f8e1e7;
    --green: #d6f5e3;
    --white: #fff;
    --text: #3a3a3a;
    --soft-green: #eafaf1;
    --soft-pink: #fbeff3;
    --hover: #f3d6e3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    background: var(--soft-pink);
    color: var(--text);
    min-height: 100vh;
    text-align: center;
}

/* Sticky Navbar */
nav {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(220, 180, 220, 0.08);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    transition: background 0.3s;
}

nav ul {
    display: flex;
    gap: 1rem;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--hover);
    color: #b85c8c;
    transform: scale(1.08);
}

/* Section Styles */
section {
    padding: 1.5rem 0.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0;
    margin-bottom: 0;
    min-height: unset;
}

.home h1 {
    font-size: 2.7rem;
    color: #b85c8c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.home p {
    font-size: 1.3rem;
    color: #5e5e5e;
    margin-bottom: 2rem;
}

.home .cta-btn {
    background: linear-gradient(90deg, var(--pink), var(--green));
    color: #b85c8c;
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(220, 180, 220, 0.13);
    transition: background 0.3s, transform 0.2s;
}

.home .cta-btn:hover {
    background: var(--hover);
    color: #fff;
    transform: scale(1.06);
}

/* About Us */
.about {
    background: var(--soft-green);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(180, 220, 180, 0.08);
    margin-bottom: 2rem;
    text-align: center;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.about h2 {
    color: #7bb274;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Services */
.services {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
    margin-bottom: 2rem;
}

.services h2 {
    color: #b85c8c;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--soft-green);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(180, 220, 180, 0.10);
    padding: 2rem 1.5rem;
    width: 270px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Override width for grid layout if needed, but usually grid handles it */
.services-grid .service-card {
    width: auto;
    background: var(--white);
    /* index.html specific override */
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(180, 220, 180, 0.18);
    background: var(--hover);
}

/* index.html specific hover override */
.services-grid .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 24px rgba(220, 180, 220, 0.18);
    rotate: 0deg;
}

.service-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    fill: #b85c8c;
    transition: fill 0.3s;
}

.service-card:hover svg {
    fill: #7bb274;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #7bb274;
}

/* index.html specific h3 override */
.services-grid .service-card h3 {
    font-size: 1.5rem;
    color: #b85c8c;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* index.html specific p override */
.services-grid .service-card p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .cta-btn {
    background: linear-gradient(90deg, var(--pink), var(--green));
    color: #b85c8c;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.service-card .cta-btn:hover {
    background: var(--hover);
    color: #fff;
    transform: scale(1.05);
}

/* Contact Us */
.contact {
    background: var(--soft-pink);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
    margin-bottom: 2rem;
}

.contact h2 {
    color: #b85c8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Pinterest Gallery (Profile) */
.pinterest {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
    margin-bottom: 2rem;
}

.pinterest .profile-wrapper {
    /* container only; no font overrides */
    max-width: 1100px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--white);
    color: #7bb274;
    text-align: center;
    padding: 1.5rem 1rem 1rem 1rem;
    font-size: 1rem;
    border-top: 1px solid #e3c6f7;
}

/* Responsive */
@media (max-width: 900px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0.5rem 2rem 0.5rem;
    }
}

@media (max-width: 600px) {
    nav ul {
        gap: 0.3rem;
    }

    nav ul li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }

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

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

    .service-card {
        width: 95%;
        padding: 1.2rem 0.7rem;
    }

    .services-grid .service-card {
        padding: 2rem 1.5rem;
    }

    .services-grid .service-card h3 {
        font-size: 1.3rem;
    }

    /* Mobile: Single line headers and reduced gaps */
    .about h2,
    .contact h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .about {
        margin-bottom: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact {
        margin-bottom: 1rem;
    }

    .about-section {
        margin-bottom: 0.5rem;
    }

    .about-header h3 {
        font-size: 1rem;
    }

    .contact-info {
        margin-top: 1rem;
        padding: 1rem;
    }

    .contact-info p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 1rem 0.2rem;
    }

    .back-to-top {
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Flower Petal Animation */
.petal {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    will-change: transform, opacity;
    opacity: 0.85;
    animation: fall 5s linear forwards;
}

@keyframes fall {
    0% {
        opacity: 0.85;
        transform: translateY(0) scale(1) rotate(0deg);
    }

    60% {
        opacity: 0.85;
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) scale(0.7) rotate(45deg);
    }
}

/* Rose N Petals Image Zoom Animation */
.rose-image-popup {
    position: fixed;
    left: 20px;
    top: 20px;
    transform: scale(0.1);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    animation: rose-zoom 3s ease-in-out forwards;
}

@keyframes rose-zoom {
    0% {
        opacity: 0;
        transform: scale(0.1);
    }

    20% {
        opacity: 1;
        transform: scale(0.3);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-bounce 2s infinite;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 15px;
    gap: 8px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.whatsapp-btn .whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    animation: text-fade-in 0.3s ease;
}

@keyframes whatsapp-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-green);
    border-radius: 12px;
    text-align: center;
}

.contact-info h3 {
    color: #7bb274;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info strong {
    color: #b85c8c;
}

/* Collapsible About Sections */
.about-section {
    margin-bottom: 1rem;
    border: 1px solid #e3c6f7;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.about-header {
    background: var(--soft-green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.about-header:hover {
    background: var(--hover);
}

.about-header h3 {
    color: #7bb274;
    font-size: 1.1rem;
    margin: 0;
}

.about-toggle {
    font-size: 1.2rem;
    color: #b85c8c;
    transition: transform 0.3s;
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.about-content.active {
    max-height: 300px;
    padding: 1rem 1.5rem;
}

.about-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.about-section.active .about-toggle {
    transform: rotate(180deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: #b85c8c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hover);
    transform: translateY(-50%) scale(1.1);
}

/* Coverage Areas */
.coverage {
    background: var(--soft-pink);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
    margin-bottom: 2rem;
}

.coverage h2 {
    color: #b85c8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.coverage-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-green);
    border-radius: 12px;
    text-align: center;
}

.coverage-info h3 {
    color: #7bb274;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coverage-info p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}


.whatsapp-btn .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.whatsapp-btn .whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    animation: text-fade-in 0.3s ease;
}

@keyframes whatsapp-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes text-fade-in {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-green);
    border-radius: 12px;
    text-align: center;
}

.contact-info h3 {
    color: #7bb274;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info strong {
    color: #b85c8c;
}

/* Collapsible About Sections */
.about-section {
    margin-bottom: 1rem;
    border: 1px solid #e3c6f7;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.about-header {
    background: var(--soft-green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.about-header:hover {
    background: var(--hover);
}

.about-header h3 {
    color: #7bb274;
    font-size: 1.1rem;
    margin: 0;
}

.about-toggle {
    font-size: 1.2rem;
    color: #b85c8c;
    transition: transform 0.3s;
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.about-content.active {
    max-height: 300px;
    padding: 1rem 1.5rem;
}

.about-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.about-section.active .about-toggle {
    transform: rotate(180deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: #b85c8c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hover);
    transform: translateY(-50%) scale(1.1);
}

/* Coverage Areas */
.coverage {
    background: var(--soft-pink);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
    margin-bottom: 2rem;
}

.coverage h2 {
    color: #b85c8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.coverage-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-green);
    border-radius: 12px;
    text-align: center;
}

.coverage-info h3 {
    color: #7bb274;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coverage-info p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.coverage-info strong {
    color: #b85c8c;
}

/* See More Services Button */
.see-more-container {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.see-more-btn {
    background: linear-gradient(90deg, var(--pink), var(--green));
    color: #b85c8c;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(220, 180, 220, 0.13);
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: var(--hover);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(220, 180, 220, 0.2);
}

.hidden {
    display: none !important;
}

/* See More Button Styles */
.see-more-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.see-more-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 92, 140, 0.3);
}

.see-more-btn:hover {
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info strong {
    color: #b85c8c;
}

/* Collapsible About Sections */
.about-section {
    margin-bottom: 1rem;
    border: 1px solid #e3c6f7;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.about-header {
    background: var(--soft-green);
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.about-header:hover {
    background: var(--hover);
}

.about-header h3 {
    color: #7bb274;
    font-size: 1.1rem;
    margin: 0;
}

.about-toggle {
    font-size: 1.2rem;
    color: #b85c8c;
    transition: transform 0.3s;
}

.about-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.about-content.active {
    max-height: 300px;
    padding: 1rem 1.5rem;
}

.about-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.about-section.active .about-toggle {
    transform: rotate(180deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: #b85c8c;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--hover);
    transform: translateY(-50%) scale(1.1);
}

/* Coverage Areas */
.coverage {
    background: var(--soft-pink);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(220, 180, 220, 0.08);
    margin-bottom: 2rem;
}

.coverage h2 {
    color: #b85c8c;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.coverage-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--soft-green);
    border-radius: 12px;
    text-align: center;
}

.coverage-info h3 {
    color: #7bb274;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.coverage-info p {
    margin-bottom: 0.8rem;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.5;
}

.coverage-info strong {
    color: #b85c8c;
}

/* See More Services Button */
.see-more-container {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.see-more-btn {
    background: linear-gradient(90deg, var(--pink), var(--green));
    color: #b85c8c;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(220, 180, 220, 0.13);
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: var(--hover);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 12px rgba(220, 180, 220, 0.2);
}

/* Utility Class */
.hidden {
    display: none !important;
}

/* Slideshow Styles */
#bouquet-slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mySlides {
    display: none;
    width: 100%;
    height: 500px;
    justify-content: center;
    align-items: center;
    background: #000;
}

.mySlides img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Slideshow Navigation */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.prev {
    left: 15px;
    /* Keep on left edge */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Mobile Responsive */
@media only screen and (max-width: 600px) {
    .mySlides {
        height: 300px;
    }

    .prev,
    .next {
        font-size: 11px
    }
}