@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Comfortaa:wght@300;400;500;600;700&display=swap');

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

:root {
    --blush-pink: #FFE5EC;
    --lavender: #B4A8D9;
    --sky-blue: #80d7f7;
    --cream: #FFF4E6;
    --dusty-purple: #9B7EBD;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--blush-pink) 0%, var(--cream) 50%, var(--blush-pink) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
}
a{
    color: #9B7EBD;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 600;
}

h1 { font-size: 2rem; margin-bottom: 0.8rem; }
h2 { font-size: 1.6rem; margin-bottom: 0.7rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
p { margin-bottom: 0.8rem; font-size: 0.95rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

header {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--dusty-purple) 100%);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(155, 126, 189, 0.15);
    border-radius: 0 0 30px 30px;
    transform-origin: top center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: headerGlow 10s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20%, 20%); }
}

header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 60px;
    border-radius: 50%;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.logo i {
    animation: leafRotate 3s ease-in-out infinite;
}

@keyframes leafRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}




.hero {
    padding: 3rem 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}




.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--dusty-purple);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    background: linear-gradient(135deg, var(--dusty-purple) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}


@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-image-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--lavender) 50%, var(--dusty-purple) 100%);
    background-size: 200% 200%;
    animation: morph 8s ease-in-out infinite, gradientMove 5s ease infinite;
    box-shadow: 0 20px 60px rgba(168, 216, 234, 0.4);
    position: relative;
    overflow: hidden;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 40% 60% 50% 50% / 70% 30% 60% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    75% { border-radius: 50% 50% 40% 60% / 40% 70% 30% 70%; }
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-image-shape::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--lavender) 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 216, 234, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(168, 216, 234, 0.5);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

section {
    padding: 2.5rem 0;
}

.section-title {
    text-align: center;
    color: var(--dusty-purple);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lavender), transparent);
    border-radius: 2px;
}

.about {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 2.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(180, 168, 217, 0.15);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.about:hover {
    box-shadow: 0 12px 48px rgba(180, 168, 217, 0.25);
    transform: translateY(-5px);
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 250px;
}

.about-image-wrapper {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--sky-blue) 100%);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    box-shadow: 0 10px 30px rgba(168, 216, 234, 0.3);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s;
}

.about-image-wrapper:hover::before {
    transform: translateX(100%);
}

.about-image-wrapper:hover {
    border-radius: 30% 70% 50% 50% / 60% 40% 60% 40%;
    transform: scale(1.05) rotate(2deg);
}

.about-text {
    flex: 1.5;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--lavender);
    box-shadow: 0 15px 40px rgba(180, 168, 217, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--dusty-purple);
    margin-bottom: 1rem;
    display: block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.service-card:hover i {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 10px var(--lavender));
}

.service-card h3 {
    color: var(--dusty-purple);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.features {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--sky-blue) 50%, var(--lavender) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    border-radius: 40px;
    padding: 2.5rem;
    margin: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
    transition: all 0.4s ease;
}

.feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.gallery {
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(180, 168, 217, 0.1);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(180, 168, 217, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(180, 168, 217, 0.3);
    border-color: var(--lavender);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
    border-radius: 23px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(180, 168, 217, 0.1) 0%, rgba(155, 126, 189, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 23px;
}

.gallery-item:hover::before {
    opacity: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.8rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.step h3{
    font-size: 18px;
}

.step:hover {
    border-color: var(--lavender);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(180, 168, 217, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--lavender) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(168, 216, 234, 0.3);
}

.step:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 6px 20px rgba(168, 216, 234, 0.5);
}

.testimonials {
  
    background: rgba(255, 244, 230, 0.5);
    border-radius: 40px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.testimonials::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 150px;
    color: var(--lavender);
    opacity: 0.1;
    font-family: Georgia, serif;
}

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

.testimonial {
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(180, 168, 217, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 216, 234, 0.2), transparent);
    transition: left 0.6s;
}

.testimonial:hover::before {
    left: 100%;
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(180, 168, 217, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dusty-purple);
    position: relative;
    z-index: 1;
}

.cta {
    background: linear-gradient(135deg, var(--dusty-purple) 0%, var(--lavender) 50%, var(--sky-blue) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    border-radius: 40px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(155, 126, 189, 0.3);
}

.cta::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.cta .btn {
    background: white;
    color: var(--dusty-purple);
    position: relative;
    z-index: 1;
}

.cta .btn:hover {
    background: var(--cream);
}

.contact-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px 10px 50px 10px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(180, 168, 217, 0.15);
    transition: all 0.5s ease;
}

.contact-section:hover {
    box-shadow: 0 12px 48px rgba(180, 168, 217, 0.25);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--dusty-purple) 100%);
    padding: 2rem;
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--cream);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.4rem;
    color: var(--dusty-purple);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--lavender);
    border-radius: 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dusty-purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(180, 168, 217, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--dusty-purple);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.checkbox-group:hover {
    transform: translateX(5px);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--dusty-purple);
}

.checkbox-group label {
    font-size: 0.85rem;
    cursor: pointer;
}

.map-container {
    margin-top: 2rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(180, 168, 217, 0.15);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 12px 48px rgba(180, 168, 217, 0.25);
    transform: translateY(-5px);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    transition: all 0.4s ease;
}

footer {
    background: linear-gradient(135deg, var(--dusty-purple) 0%, var(--lavender) 100%);
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cream), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cream);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    transform: translateY(-2px);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dusty-purple) 0%, var(--lavender) 100%);
    color: white;
    padding: 1.2rem;
    box-shadow: 0 -4px 20px rgba(155, 126, 189, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.privacy-popup.show {
    transform: translateY(0);
    animation: slideUpBounce 0.6s ease-out;
}

@keyframes slideUpBounce {
    0% { transform: translateY(100%); }
    60% { transform: translateY(-10px); }
    80% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.privacy-popup-text {
    flex: 1;
    font-size: 0.9rem;
    min-width: 250px;
}

.privacy-popup-text a {
    color: var(--cream);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.privacy-popup-text a:hover {
    color: white;
}

.privacy-popup-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-accept,
.btn-decline {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-accept {
    background: var(--cream);
    color: var(--dusty-purple);
}

.btn-accept::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(168, 216, 234, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn-accept:hover::before {
    width: 200px;
    height: 200px;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover,
.btn-decline:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.policy-page {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(180, 168, 217, 0.1);
}

.policy-page h1 {
    color: var(--dusty-purple);
    margin-bottom: 1.5rem;
}

.policy-page h2 {
    color: var(--dusty-purple);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.policy-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(180, 168, 217, 0.2);
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--dusty-purple);
    margin-bottom: 1.5rem;
    animation: checkmarkPop 0.6s ease-out 0.3s both;
}

@keyframes checkmarkPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.thank-you-content h1 {
    color: var(--dusty-purple);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .step h3{
    font-size: 15px;
}
      .hero-text h1{
        font-size: 20px!important;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--lavender) 0%, var(--dusty-purple) 100%);
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
        border-radius: 0;
    }
    
    .main-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 1rem;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .policy-page a{
        font-size: 12px;
    }
    .policy-page h1{
        font-size: 20px;
    }
    .contact-section{
        padding: 5px;
    }
    .contact-info h3{
        font-size: 15px!important;
    }
    .features{
        padding: 0px;
    }
    .section-title{
        font-size: 1.6rem!important;
    }
    .hero-text h1{
        font-size: 20px;
    }
    .logo span{
        display: none;
    }
    .header-content {
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .services-grid,
    .features-grid,
    .process-steps,
    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    section {
        padding: 1.5rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
