/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bright, Uplifting Colours - "Brighten Your Day" Palette */
    --primary: #FF6B9D;        /* Vibrant Pink - Joyful, energetic */
    --secondary: #4ECDC4;      /* Bright Teal - Fresh, optimistic */
    --accent: #FFD93D;         /* Sunny Yellow - Cheerful, warm */
    --purple: #A78BFA;         /* Soft Purple - Creative, calming */
    --orange: #FF9770;         /* Warm Orange - Friendly, welcoming */
    --dark: #2D3748;           /* Deep charcoal for text */
    --light: #FFF8F0;          /* Warm cream background */
    --white: #FFFFFF;
    --text: #4A5568;
    --border: #FDE2E4;         /* Soft pink border */
    --success: #6BCF7F;
    --warning: #FFB84D;
    --gradient-pink: linear-gradient(135deg, #FF6B9D 0%, #FF8FAB 100%);
    --gradient-teal: linear-gradient(135deg, #4ECDC4 0%, #6EDDD6 100%);
    --gradient-yellow: linear-gradient(135deg, #FFD93D 0%, #FFE566 100%);
    --gradient-purple: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
    --gradient-rainbow: linear-gradient(135deg, #FF6B9D 0%, #4ECDC4 50%, #FFD93D 100%);
    --shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
    --shadow-lg: 0 10px 40px rgba(255, 107, 157, 0.25);
    --radius: 16px;            /* More rounded for friendly feel */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--light);  /* Warm cream instead of stark white */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

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

section {
    padding: 80px 0;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 3px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-primary-small, .btn-primary-large {
    background: var(--gradient-pink);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn-primary-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-primary-large { padding: 18px 40px; font-size: 1.1rem; }

.btn-primary:hover, .btn-primary-small:hover, .btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary, .btn-secondary-large {
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-secondary-large { padding: 18px 40px; font-size: 1.1rem; }

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: var(--gradient-rainbow);
    color: var(--white);
    padding: 100px 0 150px;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.hero-image .image-placeholder {
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 60px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255,255,255,0.4);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

/* ==================== CARDS & GRIDS ==================== */
.scenarios-grid, .services-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.scenario-card, .service-card, .why-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.scenario-card:hover, .service-card:hover, .why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:nth-child(1) .service-icon { background: var(--gradient-pink); }
.service-card:nth-child(2) .service-icon { background: var(--gradient-teal); }
.service-card:nth-child(3) .service-icon { background: var(--gradient-yellow); color: var(--dark) !important; }
.service-card:nth-child(4) .service-icon { background: var(--gradient-purple); }

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-stars, .stars {
    color: #FFA500;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-author, .author {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.author-image, .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

/* ==================== FAQ ==================== */
.faq-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-cat-btn {
    padding: 12px 24px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.faq-cat-btn.active, .faq-cat-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 1000px;
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-info-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.contact-info-card.highlight {
    background: var(--gradient-rainbow);
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-info-card.highlight h3 {
    color: var(--white);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    transform: translateY(-5px) rotate(360deg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ==================== IMAGE PLACEHOLDERS ==================== */
.image-placeholder {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1), rgba(255, 217, 61, 0.1));
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 60px 30px;
    text-align: center;
    color: var(--text);
    transition: var(--transition);
}

.image-placeholder:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

/* ==================== EXTRA FUN TOUCHES ==================== */

/* Add subtle animations to sections */
section {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Colorful scenario icons */
.scenario-card:nth-child(1) .scenario-icon { 
    filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
}
.scenario-card:nth-child(2) .scenario-icon { 
    filter: drop-shadow(0 4px 8px rgba(78, 205, 196, 0.3));
}
.scenario-card:nth-child(3) .scenario-icon { 
    filter: drop-shadow(0 4px 8px rgba(255, 217, 61, 0.3));
}

/* Colorful hover on cards */
.scenario-card:hover {
    border-top: 4px solid var(--primary);
}
.service-card:hover {
    border-top: 4px solid var(--secondary);
}
.testimonial-card:hover {
    border-left: 4px solid var(--accent);
}

/* Fun link hover effects */
a:not(.btn-primary):not(.btn-secondary):not(.btn-outline):hover {
    color: var(--primary);
}

/* Bright focused inputs */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

/* Colorful social icons on hover */
.social-links a:nth-child(1):hover { background: var(--primary); color: var(--white); }
.social-links a:nth-child(2):hover { background: var(--secondary); color: var(--white); }
.social-links a:nth-child(3):hover { background: var(--accent); color: var(--dark); }
.social-links a:nth-child(4):hover { background: var(--purple); color: var(--white); }

/* Add playful pulse to featured service card */
.service-card.featured {
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

/* Bright success checkmarks */
.check-list i {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .mobile-menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active { left: 0; }
    
    .hero-content, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons { flex-direction: column; }
    
    section { padding: 50px 0; }
}