:root {
    --primary: #ffd6e0;
    --primary-text: #ff85a1;
    --secondary: #c1f0fb;
    --secondary-text: #48cae4;
    --accent: #dee2ff;
    --bg: #fffbff;
    --text: #594d5b;
    --white: #ffffff;
    --border: rgba(255, 133, 161, 0.1);
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Background Clouds */
.cloud-bg {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.c1 {
    width: 600px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.c2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    text-decoration: none;
}

.logo span {
    color: var(--secondary-text);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.7rem 2.5rem;
    border-radius: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-text);
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-text);
}

/* Buttons */
.pastel-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-text);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 214, 224, 0.5);
}

.pastel-btn:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 15px 35px rgba(255, 214, 224, 0.8);
}

.pastel-btn.active {
    background: var(--primary);
}

.pastel-btn.sm {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
}

.pastel-btn.outline {
    background: transparent;
    border: 2.5px solid var(--primary);
    box-shadow: none;
}

.pastel-btn.full {
    width: 100%;
    text-align: center;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.bubble-label {
    display: inline-block;
    background: var(--accent);
    color: #838ab8;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.hero h1 span {
    color: var(--primary-text);
}

.hero p {
    font-size: 1.4rem;
    max-width: 600px;
    color: #8c7f91;
    margin-bottom: 4rem;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.icon-btn {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    transform: scale(1.2) rotate(15deg);
}

.hero-img-box {
    position: relative;
}

.img-frame {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.main-img {
    width: 100%;
    border-radius: 3rem;
}

.mini-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.m1 {
    top: -20px;
    right: -20px;
    color: var(--primary-text);
    animation: float 4s infinite alternate;
}

.m2 {
    bottom: -20px;
    left: -20px;
    color: var(--secondary-text);
    animation: float 4s infinite alternate-reverse;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

/* Sections */
section {
    padding: 10rem 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 5rem;
}

.section-title.centered {
    text-align: center;
}

.section-title span {
    color: var(--primary-text);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-bubble {
    padding: 4rem 2.5rem;
    background: var(--white);
    border-radius: 3rem;
    text-align: center;
    transition: var(--transition);
}

.service-bubble i {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.s1 i {
    color: var(--primary-text);
}

.s2 i {
    color: var(--secondary-text);
}

.s3 i {
    color: #838ab8;
}

.service-bubble h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-bubble:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(255, 214, 224, 0.2);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-item {
    cursor: pointer;
}

.project-img {
    height: 350px;
    border-radius: 3rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.p1 {
    background: var(--primary);
}

.p2 {
    background: var(--secondary);
}

.p3 {
    background: var(--accent);
}

.project-item:hover .project-img {
    border-radius: 5rem;
    transform: scale(0.95);
    opacity: 0.8;
}

.project-meta h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.project-meta p {
    font-weight: 700;
    font-size: 0.8rem;
    color: #b7adb9;
    letter-spacing: 1.5px;
}

/* Gallery Slider */
.cloud-section {
    background: var(--accent);
    color: var(--white);
    border-radius: 10rem 0 10rem 0;
    margin: 0 2rem;
}

/* Gallery Carousel v2 */
.gallery-slider-v2 {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    background: white;
    padding: 2rem;
    border-radius: 4rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.gallery-track-v2 {
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
}

.gallery-slide-v2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    display: none;
    transition: all 0.8s ease;
}

.gallery-slide-v2.active {
    opacity: 1;
    display: block;
}

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

.gallery-nav-v2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn-v2 {
    background: var(--primary);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.nav-btn-v2:hover {
    transform: scale(1.1);
    background: #ffadb4;
}

/* Process Card */
.process-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

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

.step-icon {
    width: 70px;
    height: 70px;
    background: #FFB7B2;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pricing-bubble {
    padding: 5rem 3rem;
    background: var(--white);
    border-radius: 4rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-bubble.main {
    background: var(--primary);
    transform: scale(1.05);
}

.pricing-bubble h4 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    color: var(--primary-text);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.7rem;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    margin: 2rem 0;
}

.price span {
    font-size: 1rem;
    opacity: 0.6;
}

.pricing-bubble ul {
    list-style: none;
    margin-bottom: 4rem;
}

.pricing-bubble li {
    padding: 1rem 0;
    font-weight: 600;
    color: #8c7f91;
}

.main li {
    color: var(--text);
}

/* Testimonial */
.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary);
    padding: 6rem;
    border-radius: 6rem 6rem 20rem 6rem;
    text-align: center;
}

.quote {
    font-size: 2.22rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3rem;
    font-style: italic;
}

.author-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.5;
}

.author-name {
    font-weight: 700;
    color: var(--secondary-text);
}

/* Contact */
.title-huge {
    font-size: 7rem;
    font-weight: 700;
    line-height: 0.9;
    text-align: center;
    margin-bottom: 6rem;
}

.title-huge span {
    color: var(--primary-text);
}

.pastel-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1.8rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 2.5rem;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 8rem;
}

.social-links a {
    font-size: 2.5rem;
    color: var(--primary-text);
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.3) rotate(-15deg);
}

/* Footer */
.footer {
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.footer p {
    font-weight: 600;
    color: #b7adb9;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(255, 214, 224, 0.4);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 5rem;
    width: 80%;
    max-width: 700px;
    border-radius: 5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--primary-text);
    border: none;
    background: transparent;
    cursor: pointer;
}

.coupon {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: var(--accent);
    border: 3px dashed var(--white);
    border-radius: 2rem;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    color: var(--white);
}

/* Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 2005;
    padding: 4rem;
    transition: var(--transition);
}

.drawer.active {
    right: 0;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 6rem;
}

.drawer-links a {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-text);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

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

    .hero-img-box {
        display: none;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .gallery-track {
        flex-direction: column;
    }

    .gallery-card {
        min-width: 100%;
    }

    .title-huge {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* New Standard Sections Styles */
.py-section { padding: 8rem 0; }
.section-header { margin-bottom: 5rem; text-align: center; }
.section-header h2 { font-size: 3.5rem; color: var(--text); }
.badge { background: var(--secondary); color: var(--secondary-text); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 1rem; display: inline-block; }

/* Trusted By */
.trust-container { padding: 4rem 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-subtitle { text-align: center; font-weight: 700; color: #b7adb9; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 3rem; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 5rem; flex-wrap: wrap; opacity: 0.6; }
.trust-logo { height: 40px; filter: grayscale(1); transition: var(--transition); }
.trust-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.service-card { background: var(--white); padding: 4rem 3rem; border-radius: 4rem; text-align: center; transition: var(--transition); box-shadow: 0 20px 40px rgba(0,0,0,0.02); }
.service-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(255, 214, 224, 0.2); }
.service-icon { width: 80px; height: 80px; border-radius: 2.5rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 2.5rem; }
.service-icon.pink-bg { background: var(--primary); color: var(--primary-text); }
.service-icon.blue-bg { background: var(--secondary); color: var(--secondary-text); }
.service-icon.yellow-bg { background: #fdf2b1; color: #e6b800; }

/* Benefits */
.benefits-bg { background: var(--secondary); padding: 10rem 0; border-radius: 0 10rem 0 10rem; }
.benefits-stack { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }
.benefit-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.benefit-item .check { width: 35px; height: 35px; border-radius: 50%; background: var(--white); color: var(--secondary-text); display: flex; align-items: center; justify-content: center; font-weight: 900; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.floating-img { width: 100%; box-shadow: 0 40px 80px rgba(0,0,0,0.1); animation: float 6s infinite ease-in-out; }
.rounded-5 { border-radius: 5rem; }

/* Products */
.products-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.product-item { background: var(--white); border-radius: 4rem; overflow: hidden; transition: var(--transition); box-shadow: 0 20px 40px rgba(0,0,0,0.02); }
.product-item:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
.product-item img { width: 100%; height: 300px; object-fit: cover; }
.product-item .price { font-size: 2rem; color: var(--primary-text); margin: 1rem 0; }

/* Gallery Masonry */
.gallery-container { padding: 10rem 0; }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-masonry img { width: 100%; border-radius: 3rem; transition: var(--transition); cursor: zoom-in; }
.gallery-masonry img:hover { transform: scale(1.03); z-index: 2; }

/* Process */
.process-steps { display: flex; justify-content: space-between; align-items: center; margin-top: 6rem; position: relative; }
.step { text-align: center; flex: 1; }
.step-num { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: var(--primary-text); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 2rem; border: 4px solid var(--white); box-shadow: 0 10px 20px rgba(255, 214, 224, 0.4); }
.step-icon { font-size: 2rem; color: var(--primary); opacity: 0.3; }

/* Contact Card */
.contact-card { background: var(--accent); color: white; padding: 10rem 4rem; border-radius: 10rem; }
.email-link { color: white; font-size: 3rem; text-decoration: none; font-weight: 700; display: block; margin: 2rem 0 5rem; }
.social-row { display: flex; justify-content: center; gap: 3rem; }
.social-row a { color: white; text-decoration: none; font-weight: 600; opacity: 0.8; transition: var(--transition); }
.social-row a:hover { opacity: 1; transform: translateY(-5px); }

/* Utility */
.mb-6 { margin-bottom: 2.5rem; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.gap-12 { gap: 4rem; }