/* --- Design System --- */
:root {
    /* Colors */
    color-scheme: light;
    --color-primary: #ff9a9e;
    --color-primary-dark: #e8868c;
    --color-secondary: #a18cd1;
    --color-accent: #fbc2eb;

    --color-bg: #fdfbf7;
    /* Warm white/cream */
    --color-bg-alt: #ffffff;
    --color-text: #4a4a4a;
    --color-text-light: #767676;
    --color-heading: #2d2d2d;

    --color-border: #eee;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-xs);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(232, 134, 140, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 134, 140, 0.6);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-white);
}

.full-width {
    width: 100%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--spacing-sm) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:not(.btn):hover {
    color: var(--color-primary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-heading);
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
    padding-top: calc(var(--spacing-xl) + 60px);
    padding-bottom: var(--spacing-xl);
    background: radial-gradient(circle at top right, #fef6f7, transparent);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
    background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 450px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 80%;
    height: 90%;
    background: linear-gradient(135deg, #fff0f1, #f3e7ff);
    border-radius: 200px 200px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.flower-icon {
    font-size: 8rem;
    opacity: 0.2;
}

.shape {
    position: absolute;
    opacity: 0.6;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--color-accent);
    filter: blur(80px);
    top: -20px;
    right: 20px;
    border-radius: 50%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    filter: blur(100px);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
    opacity: 0.15;
}

/* --- Carousel Styles --- */
.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    /* Modern rounded corners */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.carousel-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 1rem;
    color: var(--color-white);
    font-size: 1.5rem;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-primary);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* --- Services Section --- */
.services {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    /* Responsive auto-fill */
    gap: var(--spacing-md);
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-card {
        padding: var(--spacing-sm);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 1rem;
    }
}

.service-card {
    background: var(--color-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy spring effect */
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    /* Lift up */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: #fff0f1;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Organic shape */
    transition: border-radius 0.4s ease;
}

.service-card:hover .service-icon {
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(5deg);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.service-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Process Section --- */
.process {
    background-color: var(--color-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: repeating-linear-gradient(to right, #ddd 0, #ddd 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-weight: 700;
    color: var(--color-secondary);
    box-shadow: 0 0 0 8px var(--color-bg);
}

/* --- Pricing Section --- */
.pricing {
    background-color: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    align-items: center;
}

.pricing-card {
    background: var(--color-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.pricing-card.featured {
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, #fff5f6, #f8f4ff);
    border: 1px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.pricing-plan {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.pricing-list li span:last-child {
    font-weight: 600;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-secondary), #8e7cc3);
    color: var(--color-white);
}

.contact-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.contact-text {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.info-item p {
    margin: 0;
}

.hours {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container {
    padding: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 154, 158, 0.2);
}

/* --- Footer --- */
.footer {
    background-color: #f8f8f8;
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--color-text-light);
}

.footer-links ul li a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-map-container {
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: var(--spacing-lg);
}

.footer-map-full {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.footer-map-full iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid #e5e5e5;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* --- Responsive Queries --- */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .header .nav-list.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .process-steps::before {
        display: none;
    }

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / 2;
    }

    .footer-links {
        grid-column: 2 / 3;
    }

    .footer-social {
        grid-column: 1 / 2;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .service-card {
        padding: var(--spacing-sm);
    }
}

/* --- Plant Expandable Cards --- */
.plant-card {
    background-color: #bbb;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plant-card:hover,
.plant-card.active {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plant-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6) 50%, transparent);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(calc(100% - 70px));
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
}

.plant-card:hover .plant-card-content,
.plant-card.active .plant-card-content {
    transform: translateY(0);
}

.plant-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    color: var(--color-white);
}

.plant-details {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.plant-card:hover .plant-details,
.plant-card.active .plant-details {
    opacity: 1;
    transform: translateY(0);
}

.plant-desc {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    color: var(--color-white);
}

.plant-metrics {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.metric .icon {
    font-size: 1.2rem;
}