:root {
    --color-primary: #ff6b6b; /* Pastel Red */
    --color-secondary: #54a0ff; /* Pastel Blue */
    --color-accent: #feca57; /* Pastel Yellow */
    --color-success: #1dd1a1; /* Pastel Green */
    --color-dark: #222f3e;
    --color-text: #576574;
    --color-bg: #fdfdfd;
    --font-main: 'Nunito', sans-serif;
    --font-display: 'Fredoka', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-bounce {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-highlight {
    background-color: var(--color-success);
    color: white;
    box-shadow: 0 5px 15px rgba(29, 209, 161, 0.4);
}

/* Navbar */
.navbar {
    padding: 20px 0;
}

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

.logo {
    font-size: 1.8rem;
    font-family: var(--font-display);
    color: var(--color-primary);
    font-weight: 600;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.nav-links a:hover {
    color: var(--color-secondary);
}

/* Hero */
.hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.blob-img {
    width: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 20px 20px 0px var(--color-accent);
    animation: morph 8s ease-in-out infinite;
    object-fit: cover;
    height: 400px;
}

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

/* Bubbles */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.b1 {
    width: 200px;
    height: 200px;
    background: var(--color-secondary);
    top: -50px;
    left: -50px;
}

.b2 {
    width: 150px;
    height: 150px;
    background: var(--color-primary);
    top: 20%;
    right: 10%;
}

.b3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    bottom: -50px;
    right: -100px;
}

/* Services */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

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

.c1:hover { border-color: var(--color-primary); }
.c2:hover { border-color: var(--color-secondary); }
.c3:hover { border-color: var(--color-success); }
.c4:hover { border-color: var(--color-accent); }

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Wave */
.wave-divider {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    transform: rotate(180deg);
}

.wave-divider .shape-fill {
    fill: var(--color-secondary);
}

.bg-color {
    background-color: var(--color-secondary);
    color: white;
}

.text-white {
    color: white !important;
}

/* Gallery Blobs */
.gallery-blobs {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.blob-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 5px solid white;
}

.b-left img {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.b-right img {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

/* Contact */
.contact-box {
    background: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 3px dashed var(--color-dark);
    max-width: 600px;
}

.contact-details {
    font-size: 1.2rem;
    margin: 30px 0;
}

.footer {
    text-align: center;
    padding: 40px;
    background: var(--color-dark);
    color: white;
    font-family: var(--font-display);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image-wrapper {
        width: 100%;
    }

    .blob-img {
        height: 300px;
        width: 300px;
    }
}
