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

body {
font-family: 'Comic Neue', 'Fredoka One', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
color: #2d3748;
overflow-x: hidden;
}

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

/* Header */
header {
background: #CC5500; 
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.5rem;
font-weight: 700;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
cursor: pointer;
}

.logo-icon {
width: 50px;
height: 50px;
background: #CC5500; 
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
border: 3px solid rgba(255, 255, 255, 0.8);
position: relative;
overflow: hidden;
}

.logo-icon::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: #CC5500; 
border-radius: 50%;
z-index: -1;
animation: logoGlow 3s ease-in-out infinite;
}

.logo-text {
display: flex;
flex-direction: column;
line-height: 1.1;
}

.logo-main {
font-size: 1.6rem;
font-weight: 800;
background: linear-gradient(45deg, #fff, #f0f8ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: none;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.logo-tagline {
font-size: 0.7rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.9);
text-transform: uppercase;
letter-spacing: 1px;
margin-top: -2px;
}

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

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
cursor: pointer;
}

.nav-links a:hover {
transform: translateY(-2px);
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
background: #CC5500; 
color: white;
padding: 120px 0 80px;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: none;
}

.hero-decorations {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow: hidden;
pointer-events: none;
}

.floating-element {
position: absolute;
font-size: 2.5rem;
opacity: 0.25;
animation: floatRandom 6s ease-in-out infinite;
z-index: 10;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.floating-text {
position: absolute;
background: rgba(255, 255, 255, 0.15);
border-radius: 15px;
padding: 8px 12px;
font-weight: 700;
font-size: 1.5rem;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
opacity: 0.3;
animation: floatRandom 8s ease-in-out infinite;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.2);
z-index: 10;
}

.floating-notebook {
position: absolute;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 10px;
font-weight: 700;
font-size: 1.2rem;
color: #4A90E2;
opacity: 0.25;
animation: floatRandom 7s ease-in-out infinite;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-left: 4px solid #FF6B9D;
z-index: 10;
}

.floating-element:nth-child(1) { top: 25%; right: 10%; animation-delay: 1s; }
.floating-element:nth-child(2) { bottom: 30%; left: 12%; animation-delay: 2s; }
.floating-text:nth-child(7) { top: 35%; left: 25%; animation-delay: 1.5s; }
.floating-text:nth-child(8) { top: 35%; right: 25%; animation-delay: 2.5s; }
.floating-text:nth-child(9) { bottom: 35%; left: 30%; animation-delay: 3.5s; }
.floating-text:nth-child(10) { bottom: 20%; right: 30%; animation-delay: 4.5s; }
.floating-notebook:nth-child(11) { top: 30%; left: 75%; animation-delay: 2s; }
.floating-notebook:nth-child(12) { top: 30%; right: 70%; animation-delay: 3s; }
.floating-notebook:nth-child(13) { bottom: 40%; left: 20%; animation-delay: 1s; }

.hero-content {
position: relative;
z-index: 2;
}

.hero .tagline {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 1rem;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
animation: fadeInUp 1s ease-out;
}

.hero h1 {
font-size: 4rem;
font-weight: 800;
margin-bottom: 1rem;
color: white;
text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .subtitle {
font-size: 1.5rem;
margin-bottom: 1rem;
color: white;
font-weight: 600;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .grade-range {
font-size: 1.3rem;
margin-bottom: 2rem;
color: white;
font-weight: 600;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(45deg, #8B4513, #D2691E);
color: white;
padding: 18px 35px;
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.2rem;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
animation: fadeInUp 1s ease-out 0.8s both;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
cursor: pointer;
}

.cta-button:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5);
}

/* Services Section */
.services {
padding: 80px 0;
background: #F4E4BC;
}

.section-title {
text-align: center;
font-size: 3rem;
font-weight: 700;
margin-bottom: 1rem;
color: #8B4513;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
text-align: center;
font-size: 1.3rem;
margin-bottom: 3rem;
color: #8B4513;
font-weight: 600;
}

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

.service-card {
background: white;
padding: 2.5rem 2rem;
border-radius: 25px;
text-align: center;
transition: all 0.3s ease;
border: 3px solid transparent;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: #CC5500;
}

.service-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
border-color: #CC5500;
}

.service-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}

.service-card h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: #8B4513;
}

.service-card p {
color: #8B4513;
line-height: 1.7;
font-size: 1.1rem;
}

/* About Section */
.about {
padding: 80px 0;
background: #F9F3E9;
}

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

.about-text h2 {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: #8B4513;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-text p {
color: #8B4513;
margin-bottom: 1.5rem;
font-size: 1.1rem;
line-height: 1.7;
}

.tutor-info {
background: #CC5500;
padding: 2rem;
border-radius: 20px;
color: white;
text-align: center;
margin-top: 2rem;
}

.tutor-name {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.5rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tutor-title {
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 1rem;
}

.specialties {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
margin-top: 1.5rem;
}

.specialty-tag {
background: rgba(255, 255, 255, 0.2);
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 600;
}

.about-image {
position: relative;
}

.about-image-placeholder {
width: 100%;
height: 400px;
background: #CC5500;
border-radius: 25px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
text-align: center;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
position: relative;
overflow: hidden;
}

.about-image-placeholder::before {
content: '👩‍🏫📚✨';
font-size: 3rem;
margin-bottom: 1rem;
}

/* Contact Section */
.contact {
padding: 80px 0;
background: #CC5500;
color: white;
}

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

.contact-form {
background: rgba(255, 255, 255, 0.15);
padding: 2.5rem;
border-radius: 25px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
font-size: 2rem;
margin-bottom: 1.5rem;
text-align: center;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 15px;
border: none;
border-radius: 15px;
background: rgba(255, 255, 255, 0.9);
font-size: 1rem;
transition: all 0.3s ease;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
}

.submit-btn {
background: linear-gradient(45deg, #8B4513, #D2691E);
color: white;
padding: 15px 30px;
border: none;
border-radius: 25px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
font-size: 1.1rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(139, 69, 19, 0.4);
}

.contact-info h3 {
font-size: 2.5rem;
margin-bottom: 2rem;
text-align: center;
font-weight: 700;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-item {
display: flex;
align-items: center;
gap: 1.5rem;
margin-bottom: 2rem;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.15);
border-radius: 20px;
backdrop-filter: blur(5px);
transition: all 0.3s ease;
}

.contact-item:hover {
transform: translateX(10px);
background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
font-size: 2rem;
opacity: 0.9;
}

.contact-details {
flex: 1;
}

.contact-details strong {
display: block;
font-size: 1.2rem;
margin-bottom: 0.3rem;
font-weight: 700;
}

.phone-number {
font-size: 2rem;
font-weight: 800;
text-align: center;
background: rgba(255, 255, 255, 0.2);
padding: 1.5rem;
border-radius: 20px;
margin: 2rem 0;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.website-url {
text-align: center;
font-size: 1.3rem;
font-weight: 600;
margin-top: 1rem;
}

.email {
text-align: center;
font-size: 1.5rem;
font-weight: 600;
margin: 1rem 0;
}

/* Testimonials Section */
.testimonials {
padding: 80px 0;
background: #F4E4BC;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.testimonial-card {
background: white;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
position: relative;
border-left: 5px solid #CC5500;
}

.testimonial-text {
font-style: italic;
color: #8B4513;
margin-bottom: 1rem;
font-size: 1.1rem;
line-height: 1.6;
}

.testimonial-author {
font-weight: 700;
color: #8B4513;
}

/* FAQ Section */
.faq {
padding: 80px 0;
background: #F4E4BC;
}

.faq-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 3rem;
}

.faq-item {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
background: #CC5500;
color: white;
padding: 1.5rem;
font-weight: 700;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.faq-question:hover {
background: #A0410D;
}

.faq-answer {
padding: 1.5rem;
color: #8B4513;
line-height: 1.6;
border-top: 2px solid #CC5500;
}

/* Availability Section */
.availability {
padding: 60px 0;
background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
color: white;
text-align: center;
}

.availability-content {
max-width: 600px;
margin: 0 auto;
}

.availability h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.availability p {
font-size: 1.2rem;
margin-bottom: 1.5rem;
}

.availability-cta {
background: rgba(255, 255, 255, 0.2);
color: white;
padding: 15px 30px;
border: 2px solid white;
border-radius: 25px;
font-weight: 700;
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
cursor: pointer;
}

.availability-cta:hover {
background: white;
color: #8B4513;
transform: translateY(-2px);
}

/* Footer */
footer {
background: #2D3748;
color: white;
text-align: center;
padding: 2rem 0;
}

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

@keyframes floatRandom {
0%, 100% {
transform: translateY(0px) rotate(0deg);
}
25% {
transform: translateY(-15px) rotate(5deg);
}
50% {
transform: translateY(-8px) rotate(-3deg);
}
75% {
transform: translateY(-12px) rotate(2deg);
}
}

/* Responsive */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.logo-text {
display: none;
}
.logo-icon {
width: 55px;
height: 40px;
}
.hero h1 {
font-size: 2.5rem;
}
.hero .tagline {
font-size: 1.3rem;
}
.about-content,
.contact-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.section-title {
font-size: 2.2rem;
}
.faq-container {
grid-template-columns: 1fr;
}
}