:root {
    --color-leaf: #4CAF50;
    --color-leaf-transparent: rgba(76, 175, 80, 0.15);
    --color-pink: #F8BBD0;
    --color-pink-transparent: rgba(248, 187, 208, 0.2);
    --color-white: #FFFFFF;
    --color-charcoal: #333333;
    --color-charcoal-light: #555555;
    --color-background: #f0f5f1;
    --color-accent: #FF9E80;

    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Quicksand', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-charcoal);
    line-height: 1.6;
    background-color: var(--color-background);
    background-image:
            radial-gradient(circle at 100% 0%, var(--color-pink-transparent) 0%, transparent 50%),
            radial-gradient(circle at 0% 100%, var(--color-leaf-transparent) 0%, transparent 50%);
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--color-leaf);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-charcoal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-leaf);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-leaf);
    border: 1px solid var(--color-leaf);
}

.btn-outline:hover {
    background-color: var(--color-leaf);
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-leaf);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.header {
    position: relative;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: all var(--transition-fast);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-left: var(--space-sm);
}

.logo-symbol {
    font-size: 2rem;
    color: var(--color-leaf);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-charcoal);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: var(--space-lg);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-leaf);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-xl);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--color-charcoal-light);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-content {
    padding: var(--space-lg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.about-section {
    position: relative;
    overflow: hidden;
}


@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.about-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text {
    padding-right: var(--space-lg);
}

.about-img {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.testimonials {
    position: relative;
    overflow: hidden;
}


@keyframes morphing2 {
    0% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    25% {
        border-radius: 42% 58% 25% 75% / 46% 76% 24% 54%;
    }
    50% {
        border-radius: 50% 50% 67% 33% / 27% 55% 45% 73%;
    }
    75% {
        border-radius: 67% 33% 42% 58% / 68% 63% 37% 32%;
    }
    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.testimonial-slider {
    position: relative;
    z-index: 1;
    padding: var(--space-lg) 0;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: 0 var(--space-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-md);
    position: relative;
    padding: var(--space-md) 0;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: var(--font-primary);
    font-size: 4rem;
    color: var(--color-leaf-transparent);
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: 0;
    left: 0;
}

.testimonial-text::after {
    bottom: -20px;
    right: 0;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-charcoal);
}

.contact {
    position: relative;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-leaf);
    margin-right: var(--space-md);
}

.contact-text {
    flex: 1;
}

.contact-form {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-leaf);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.form-checkbox input {
    margin-top: 5px;
    margin-right: var(--space-sm);
}

.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-lg) 0;
    margin-top: var(--space-xl);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-white);
}

.footer-nav {
    display: flex;
    gap: var(--space-md);
}

.footer-nav-item {
    margin-left: var(--space-md);
}

.footer-nav-link {
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-nav-link:hover {
    opacity: 1;
    color: var(--color-white);
}

.copyright {
    text-align: center;
    margin-top: var(--space-md);
    opacity: 0.6;
    font-size: 0.875rem;
}

.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.privacy-banner.show {
    transform: translateY(0);
}

.privacy-text {
    flex: 1;
    margin-right: var(--space-md);
}

.privacy-actions {
    display: flex;
}

.privacy-btn {
    margin-left: var(--space-sm);
}

.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-leaf-transparent);
    overflow: hidden;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-charcoal-light);
    max-width: 800px;
    margin: 0 auto;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.product-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-leaf);
    margin-bottom: var(--space-md);
}

.product-description {
    margin-bottom: var(--space-md);
    flex: 1;
}

.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

.thank-you-content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--color-leaf);
    margin-bottom: var(--space-lg);
}

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

.error-content {
    max-width: 600px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.error-code {
    font-size: 6rem;
    font-weight: 700;
    color: var(--color-leaf);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.error-message {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.policy-content {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-lg);
}

.policy-section {
    margin-bottom: var(--space-xl);
}

.policy-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.policy-text {
    margin-bottom: var(--space-md);
}

.policy-list {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.policy-list li {
    margin-bottom: var(--space-sm);
}

.home-button {
    display: inline-flex;
    align-items: center;
    margin-top: var(--space-lg);
}

.animation-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.animation-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {


    html {
        font-size: 15px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-text {
        padding-right: 0;
    }

    .about-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        padding: var(--space-xl);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform var(--transition-medium);
        z-index: 100;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-item {
        margin-left: 0;
        margin-bottom: var(--space-md);
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        height: 60vh;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        margin-top: var(--space-md);
    }
}

@media (max-width: 576px) {
    .thank-you-action{
        flex-direction: column;
    }

    .btn-outline{
        margin-top: var(--space-sm);
    }

    .container {
        width: 95%;
        padding: 0 var(--space-sm);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: var(--space-lg);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .about-img {
        height: 300px;
    }

    .contact-info,
    .contact-form {
        padding: var(--space-lg);
    }

    .policy-content {
        padding: var(--space-lg);
    }

    .privacy-banner {
        flex-direction: column;
    }

    .privacy-text {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 375px) {
    html {
        font-size: 13px;
    }
}

.nav-open{
    overflow: hidden;
}

.responsive-table{
    overflow-x: auto;
}

