:root {
    /* Pastel Color Palette */
    --pastel-pink: #FFD1DC;
    --pastel-blue: #AEC6CF;
    --pastel-green: #6B9E96;
    --pastel-yellow: #F4D03F;
    --pastel-purple: #B39EB5;
    --pastel-orange: #FFB347;

    --text-dark: #4A4A4A;
    --text-light: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --radius-lg: 20px;
    --radius-md: 12px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

p {
    font-family: var(--font-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: center;
}

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

.section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--pastel-green);
    color: white;
    border: 2px solid var(--pastel-green);
}

.btn-secondary {
    background-color: var(--pastel-pink);
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pastel-purple);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pastel-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f7ff 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer {
    background: #FFE4E9;
    color: #666;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.hero-text h1 span {
    color: var(--pastel-blue);
    display: block;
}

.hero-image {
    position: relative;
}

.hero-blob {
    position: absolute;
    z-index: -1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-bounce 10s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--pastel-pink);
    opacity: 0.3;
    top: -50px;
    right: -50px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--pastel-yellow);
    opacity: 0.4;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

/* Services Preview */
.services-preview {
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title span {
    color: var(--pastel-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

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

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: calc(100% + 5rem);
}

.blog-post-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    object-fit: cover;
}

.school-card {
    border: 2px dashed var(--pastel-blue);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    background: white;
}

.school-card-icon {
    font-size: 2.5rem;
    color: var(--pastel-green);
    min-width: 50px;
}

.school-card h3 {
    color: var(--pastel-blue);
    margin-bottom: 0.5rem;
}

.school-card ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* Boho Shapes & Animations */
.hero {
    position: relative;
    overflow: hidden;
}

.boho-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.3;
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    fill: var(--pastel-pink);
}

.shape-2 {
    top: 60%;
    right: 8%;
    width: 100px;
    fill: var(--pastel-blue);
}

.shape-3 {
    top: 30%;
    right: 15%;
    width: 80px;
    fill: var(--pastel-yellow);
}

.shape-4 {
    bottom: 15%;
    left: 10%;
    width: 90px;
    fill: var(--pastel-green);
}

.shape-5 {
    top: 45%;
    left: 3%;
    width: 110px;
    fill: var(--pastel-purple);
}

.shape-6 {
    top: 20%;
    right: 5%;
    width: 95px;
    fill: var(--pastel-orange);
}

.shape-7 {
    bottom: 25%;
    right: 12%;
    width: 85px;
    fill: var(--pastel-yellow);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Background Shapes */
.section-bg-shape {
    position: relative;
    overflow: hidden;
}

.section-bg-shape::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.section-bg-shape.shape-left::before {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pastel-pink);
}

.section-bg-shape.shape-right::before {
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pastel-blue);
}

.section-bg-shape>* {
    position: relative;
    z-index: 1;
}

.card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--pastel-blue);
}

.card:nth-child(2)::before {
    background: var(--pastel-pink);
}

.card:nth-child(3)::before {
    background: var(--pastel-green);
}

.card:nth-child(4)::before {
    background: var(--pastel-yellow);
}

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

h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 12'%3E%3Cpath d='M0,7 Q25,3 50,7 T100,7 T150,7 T200,7 T250,7 T300,7 T350,7 T400,7 T450,7 T500,7' stroke='%23FFD1DC' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 500px 12px;
    opacity: 0.6;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 50%;
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.card-icon:hover {
    transform: scale(1.1) rotate(5deg);
    animation: bounce 0.6s ease;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.15) rotate(5deg);
    }
}

/* About Section */
.about-section {
    background: #fff9f0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Footer */
.footer {
    background: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f5f5f5;
    color: #888;
}

/* Animations */
@keyframes blob-bounce {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .nav-links {
        display: none;
        /* Hide for now, will toggle with JS */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* FAQ Styles */
.faq-item.active .faq-answer {
    display: block !important;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08) !important;
}