/* Import Playful Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #9333EA;
    --primary-pink: #EC4899;
    --primary-cyan: #06B6D4;
    --primary-yellow: #F59E0B;
    --primary-green: #10B981;
    --primary-orange: #F97316;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --bg-white: #FFFFFF;
}

body {
    font-family: 'Quicksand', 'Comic Sans MS', cursive, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
}

/* Animated Background Gradient */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Particles Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: none;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 12px 48px rgba(147, 51, 234, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 24px;
    font-family: 'Fredoka', cursive;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.logo img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 12px rgba(147, 51, 234, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mascot-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mascot {
    width: 240px;
    height: 240px;
    background: white;
    border-radius: 50%;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(147, 51, 234, 0.3),
        0 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 0 20px rgba(147, 51, 234, 0.1);
    margin-bottom: 30px;
    animation: mascotFloat 3s ease-in-out infinite, mascotGlow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mascot:hover {
    transform: scale(1.1) rotate(5deg);
    animation: mascotSpin 0.6s ease;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes mascotGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(147, 51, 234, 0.1); }
    50% { box-shadow: 0 25px 80px rgba(236, 72, 153, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.6), 0 0 0 30px rgba(236, 72, 153, 0.15); }
}

@keyframes mascotSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1.1); }
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
    animation: comingSoonPulse 2s ease-in-out infinite;
    font-family: 'Fredoka', cursive;
}

@keyframes comingSoonPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(236, 72, 153, 0.5); }
}

.coming-soon svg {
    animation: starRotate 4s linear infinite;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
    font-family: 'Fredoka', cursive;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleFadeIn 1.2s ease 0.3s backwards;
}

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

.highlight {
    background: linear-gradient(135deg, #FFD700, #FF6B9D, #C084FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: highlightShine 3s ease-in-out infinite;
}

@keyframes highlightShine {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 107, 157, 0.5)); }
}

.hero-description {
    font-size: 22px;
    color: white;
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.4s ease 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.email-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1.6s ease 0.9s backwards;
}

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

.email-input {
    flex: 1;
    padding: 20px 28px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 17px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: var(--text-dark);
}

.email-input:focus {
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3), 0 12px 32px rgba(147, 51, 234, 0.3);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: var(--text-gray);
    font-weight: 500;
}

.notify-btn {
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    font-family: 'Fredoka', cursive;
    position: relative;
    overflow: hidden;
}

.notify-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;
}

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

.notify-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5);
}

.notify-btn:active {
    transform: scale(1.02) translateY(0);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px 35px;
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(147, 51, 234, 0.3),
        0 0 0 2px rgba(147, 51, 234, 0.3);
}

.feature-card:nth-child(1):hover {
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.3), 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.feature-card:nth-child(2):hover {
    box-shadow: 0 30px 80px rgba(6, 182, 212, 0.3), 0 0 0 2px rgba(6, 182, 212, 0.3);
}

.feature-card:nth-child(3):hover {
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.3), 0 0 0 2px rgba(245, 158, 11, 0.3);
}

.feature-card:nth-child(4):hover {
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.3), 0 0 0 2px rgba(236, 72, 153, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    animation: sparkle 0.6s ease;
}

@keyframes sparkle {
    0%, 100% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1) rotate(180deg); }
}

.feature-icon.shield {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.feature-icon.users {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    color: white;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.feature-icon.star {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: white;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.feature-icon.no-ads {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: white;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary-purple);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeIn 2s ease 1.2s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 32px;
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 40px rgba(147, 51, 234, 0.3);
}

.badge svg {
    transition: transform 0.3s;
}

.badge:hover svg {
    transform: rotate(360deg);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 70px 0 30px;
    border-top: none;
    position: relative;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink), var(--primary-cyan), var(--primary-yellow), var(--primary-green));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 12px;
    font-weight: 500;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.contact-email:hover {
    transform: translateX(5px);
}

.address {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.address svg {
    flex-shrink: 0;
    margin-top: 4px;
}

/* Content Pages */
.content-page {
    padding: 100px 0;
    min-height: 60vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    margin: 40px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.content-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 50px;
    font-weight: 600;
}

.content-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
}

.content-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
}

.content-page p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 16px;
}

.content-page ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.content-page ul li {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 10px;
    font-weight: 500;
}

.content-page strong {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    padding: 35px;
    border-radius: 24px;
    margin-top: 35px;
    border: 2px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.1);
}

.contact-box p {
    margin-bottom: 12px;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
    background: transparent;
}

.contact-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    font-family: 'Fredoka', cursive;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
    text-align: center;
    color: white;
    font-size: 20px;
    margin-bottom: 70px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px 35px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(147, 51, 234, 0.3);
}

.contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(360deg);
}

.contact-icon.company {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.contact-icon.email {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.contact-icon.hours {
    background: linear-gradient(135deg, #F59E0B, #FBBF24);
    color: white;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.contact-icon.location {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: white;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 500;
}

.company-detail {
    font-size: 15px;
}

.email-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.email-link:hover {
    color: var(--primary-pink);
    transform: scale(1.05);
}

.response-time {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.2);
    border: 2px solid rgba(147, 51, 234, 0.2);
}

.response-time p {
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 600;
    font-size: 17px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .email-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .content-page h1,
    .contact-section h1 {
        font-size: 36px;
    }
    
    .content-page h2 {
        font-size: 26px;
    }
    
    .mascot {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .mascot {
        width: 150px;
        height: 150px;
    }
    
    .feature-card,
    .contact-card {
        padding: 35px 25px;
    }
}

/* Special Confetti Effect (Optional - can be added via JS) */
@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}