* { 
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
}

body {
overflow-x: hidden;
}

img,
video,
iframe {
max-width: 100%;
height: auto;
display: block;
}

a,
button {
-webkit-tap-highlight-color: transparent;
}

* {
overflow-wrap: break-word;
word-wrap: break-word;
}

@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
scroll-behavior: auto !important;
}
}

:root {
--primary: #FF6B8B;
--primary-light: #FFA7BA;
--primary-dark: #FF3D6A;
--secondary: #4ECDC4;
--secondary-light: #8CFFF9;
--accent-yellow: #FFD166;
--accent-blue: #5D9CEC;
--accent-purple: #A66BBE;
--accent-green: #4CD964;
--light: #FFF9F0;
--dark: #333;
--gray: #6c757d;
--light-gray: #F5F5F5;
--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
--border-radius: 16px;
--fun-border-radius: 25px;
}

body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--dark);
background-color: var(--light);
overflow-x: hidden;
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding-left: clamp(16px, 4vw, 24px);
padding-right: clamp(16px, 4vw, 24px);
}

h1,
h2,
h3,
h4 {
font-family: 'Quicksand', sans-serif;
font-weight: 700;
line-height: 1.2;
margin-bottom: 1rem;
}

h1 {
font-size: 3rem;
color: var(--primary);
}

h2 {
font-size: 2.5rem;
color: var(--secondary);
}

h3 {
font-size: 1.8rem;
color: var(--primary);
}

p {
margin-bottom: 1rem;
}

a {
text-decoration: none;
color: inherit;
}

.page-container {
display: none;
animation: fadeIn 0.5s ease;
}

.page-container.active {
display: block;
}

@keyframes fadeIn {
from {
opacity: 0;
}

to {
opacity: 1;
}
}

.navbar {
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
}

.logo i {
font-size: 2.5rem;
margin-right: 10px;
color: var(--accent-yellow);
}

.nav-links {
display: flex;
gap: 30px;
}

.nav-links a {
font-weight: 600;
padding: 8px 15px;
border-radius: 30px;
transition: var(--transition);
position: relative;
color: var(--dark);
}

.nav-links a:hover,
.nav-links a.active {
background-color: var(--primary);
color: white;
transform: translateY(-3px);
}

.nav-links a:hover:after,
.nav-links a.active:after {
content: '';
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid var(--primary);
}

.menu-toggle {
display: none;
background: none;
border: none;
font-size: 1.8rem;
color: var(--primary);
cursor: pointer;
}

.btn-primary {
display: inline-block;
background-color: var(--primary);
color: white;
padding: 15px 35px;
border-radius: 50px;
font-weight: 600;
border: none;
cursor: pointer;
transition: var(--transition);
font-size: 1.1rem;
text-align: center;
box-shadow: 0 4px 8px rgba(255, 107, 139, 0.3);
}

.btn-primary:hover {
background-color: var(--primary-dark);
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(255, 107, 139, 0.4);
}

.btn-secondary {
display: inline-block;
background-color: var(--secondary);
color: white;
padding: 15px 35px;
border-radius: 50px;
font-weight: 600;
border: none;
cursor: pointer;
transition: var(--transition);
font-size: 1.1rem;
text-align: center;
box-shadow: 0 4px 8px rgba(78, 205, 196, 0.3);
}

.btn-secondary:hover {
background-color: #3AB9B0;
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(78, 205, 196, 0.4);
}

.btn-large {
padding: 18px 45px;
font-size: 1.2rem;
}

.hero {
padding: clamp(70px, 10vw, 100px) 0 clamp(40px, 8vw, 60px);
background: linear-gradient(135deg, #FFE8EE 0%, #E6F7F5 100%);
position: relative;
overflow: hidden;
min-height: auto;
display: flex;
align-items: center;
}

.hero:before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'><circle cx='75' cy='75' r='60' fill='%23FF6B8B' fill-opacity='0.08'/><circle cx='30' cy='30' r='20' fill='%234ECDC4' fill-opacity='0.08'/><circle cx='120' cy='120' r='35' fill='%23FFD166' fill-opacity='0.08'/></svg>");
background-size: 300px;
z-index: 0;
}

.hero .container {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: center;
gap: clamp(20px, 5vw, 60px);
position: relative;
z-index: 1;
}
@media (max-width: 992px) {
.hero .container {
grid-template-columns: 1fr;
}

.video-container {
width: 100%;
max-width: 720px;
margin: 0 auto;
}
}
h1 {
font-size: clamp(2.1rem, 4.8vw, 3rem);
}

h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.subtitle {
font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.features-grid,
.testimonials-grid,
.team-grid,
.contact-container,
.directions-container {
min-width: 0;
}

.feature-card,
.testimonial-card,
.team-card,
.map-container,
.form-container,
.day-schedule,
.meal-plan {
min-width: 0;
}

.hero-content {
flex: 1;
}

.hero h1 {
margin-bottom: 25px;
position: relative;
}

.hero h1:after {
content: '';
position: absolute;
bottom: -15px;
left: 0;
width: 100px;
height: 8px;
background-color: var(--accent-yellow);
border-radius: 5px;
}

.subtitle {
font-size: 1.3rem;
color: var(--gray);
margin-bottom: 35px;
max-width: 600px;
}

.hero-highlights {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 40px;
}

.highlight-item {
display: flex;
align-items: center;
background: white;
padding: 12px 20px;
border-radius: 40px;
box-shadow: var(--shadow);
font-weight: 600;
font-size: 1.1rem;
}

.highlight-item i {
color: var(--secondary);
margin-right: 10px;
font-size: 1.2rem;
}

.video-container {
flex: 1;
}

.video-wrapper {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
border-radius: var(--fun-border-radius);
box-shadow: var(--shadow);
border: 10px solid white;
}

.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: calc(var(--fun-border-radius) - 10px);
}

.video-caption {
text-align: center;
margin-top: 15px;
font-style: italic;
color: var(--gray);
font-size: 1rem;
}

.section {
padding: clamp(60px, 8vw, 100px) 0;
}

.section-title {
text-align: center;
margin-bottom: 30px;
position: relative;
}

.section-title:after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 8px;
background-color: var(--accent-yellow);
border-radius: 5px;
}

.section-subtitle {
text-align: center;
color: var(--gray);
margin-bottom: 60px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
font-size: 1.2rem;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
margin-top: 60px;
}

.feature-card {
background: white;
padding: 40px 30px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
text-align: center;
transition: var(--transition);
border-top: 8px solid var(--primary);
position: relative;
overflow: hidden;
}

.feature-card:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 8px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.feature-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
font-size: 3rem;
color: var(--primary);
margin-bottom: 25px;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 107, 139, 0.1);
border-radius: 50%;
margin-left: auto;
margin-right: auto;
}

.testimonials {
background-color: #FFF5F7;
position: relative;
overflow: hidden;
}

.testimonials:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><circle cx='20' cy='20' r='15' fill='%23FF6B8B' fill-opacity='0.05'/><circle cx='180' cy='50' r='25' fill='%234ECDC4' fill-opacity='0.05'/><circle cx='80' cy='180' r='20' fill='%23FFD166' fill-opacity='0.05'/></svg>");
background-size: 400px;
z-index: 0;
}

.testimonials .container {
position: relative;
z-index: 1;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 35px;
margin-top: 60px;
}

.testimonial-card {
background: white;
padding: 35px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
display: flex;
flex-direction: column;
border-left: 8px solid var(--secondary);
}

.testimonial-content {
flex: 1;
position: relative;
margin-bottom: 30px;
}

.testimonial-content i {
color: var(--primary);
opacity: 0.3;
font-size: 2rem;
margin-bottom: 20px;
}

.testimonial-author {
display: flex;
align-items: center;
}

.author-avatar {
font-size: 3.5rem;
color: var(--primary);
margin-right: 20px;
}

.author-info h4 {
margin-bottom: 5px;
}

.author-info p {
color: var(--gray);
font-size: 1rem;
margin-bottom: 0;
}

.about-hero {
padding: 120px 0 80px;
background: linear-gradient(135deg, #E6F7F5 0%, #FFE8EE 100%);
text-align: center;
}

.about-hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
}

.about-hero p {
font-size: 1.4rem;
max-width: 800px;
margin: 0 auto;
color: var(--gray);
}

.mission-vision {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
margin-top: 60px;
}

.mission-card,
.vision-card {
background: white;
padding: 40px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
text-align: center;
}

.mission-card {
border-top: 8px solid var(--primary);
}

.vision-card {
border-top: 8px solid var(--secondary);
}

.mission-card h2,
.vision-card h2 {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
}

.mission-card h2 i,
.vision-card h2 i {
margin-right: 15px;
font-size: 2.5rem;
}

.team-section {
background-color: #F0F9FF;
padding: 100px 0;
}

.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-top: 60px;
}

.team-card {
background: white;
padding: 30px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
text-align: center;
transition: var(--transition);
}

.team-card:hover {
transform: translateY(-10px);
}

.team-avatar {
width: 150px;
height: 150px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
color: white;
font-size: 4rem;
}

.team-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
}

.team-info h3 {
margin-bottom: 10px;
}

.team-info p {
color: var(--gray);
margin-bottom: 15px;
}

.team-social {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
}

.team-social a {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--light-gray);
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
transition: var(--transition);
}

.team-social a:hover {
background-color: var(--primary);
color: white;
}

.schedule-hero {
padding: 120px 0 80px;
background: linear-gradient(135deg, #FFF5E6 0%, #E6F7F5 100%);
text-align: center;
}

.schedule-hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
}

.schedule-hero p {
font-size: 1.4rem;
max-width: 800px;
margin: 0 auto;
color: var(--gray);
}

.schedule-tabs {
display: flex;
justify-content: center;
margin-bottom: 50px;
flex-wrap: wrap;
gap: 10px;
}

.schedule-tab {
padding: 18px 35px;
background: white;
border: 3px solid var(--light-gray);
font-size: 1.2rem;
font-weight: 600;
color: var(--gray);
cursor: pointer;
transition: var(--transition);
position: relative;
border-radius: 50px;
}

.schedule-tab.active {
background-color: var(--primary);
color: white;
border-color: var(--primary);
transform: translateY(-5px);
}

.schedule-tab:hover:not(.active) {
border-color: var(--primary);
color: var(--primary);
}

.schedule-content {
display: none;
}

.schedule-content.active {
display: block;
}

.day-schedule {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 40px;
margin-bottom: 40px;
}

.day-title {
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 3px dashed var(--light-gray);
display: flex;
align-items: center;
}

.day-title i {
margin-right: 15px;
color: var(--secondary);
font-size: 2rem;
}

.schedule-items {
display: grid;
gap: 25px;
}

.schedule-item {
display: flex;
align-items: center;
padding: 20px;
background-color: #FFF9F0;
border-radius: 15px;
transition: var(--transition);
border-left: 5px solid var(--primary);
}

.schedule-item:hover {
transform: translateX(10px);
background-color: #FFF0F5;
}

.schedule-time {
font-weight: 700;
color: var(--primary);
min-width: 150px;
display: flex;
align-items: center;
font-size: 1.2rem;
}

.schedule-time i {
margin-right: 12px;
font-size: 1.3rem;
}

.schedule-activity {
flex: 1;
display: flex;
align-items: center;
}

.activity-icon {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
color: white;
font-size: 1.5rem;
}

.activity-learning {
background-color: var(--accent-blue);
}

.activity-meal {
background-color: var(--secondary);
}

.activity-play {
background-color: var(--primary);
}

.activity-nap {
background-color: var(--accent-purple);
}

.activity-creative {
background-color: var(--accent-purple);
}

.activity-outdoor {
background-color: var(--accent-green);
}

.meals-hero {
padding: 120px 0 80px;
background: linear-gradient(135deg, #F0FFF4 0%, #FFF5E6 100%);
text-align: center;
}

.meals-hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
}

.meals-hero p {
font-size: 1.4rem;
max-width: 800px;
margin: 0 auto;
color: var(--gray);
}

.meal-plan {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 40px;
margin-bottom: 40px;
}

.meal-day {
margin-bottom: 35px;
padding-bottom: 25px;
border-bottom: 3px dashed var(--light-gray);
}

.meal-day:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.meal-day-title {
margin-bottom: 20px;
display: flex;
align-items: center;
font-size: 1.8rem;
}

.meal-day-title i {
margin-right: 15px;
color: var(--secondary);
font-size: 2rem;
}

.meal-items {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}

.meal-item {
display: flex;
align-items: center;
padding: 15px 20px;
background-color: rgba(78, 205, 196, 0.1);
border-radius: 12px;
font-size: 1.1rem;
}

.meal-item i {
color: var(--secondary);
margin-right: 15px;
font-size: 1.3rem;
}

.nutrition-note {
background-color: rgba(255, 107, 139, 0.1);
padding: 25px;
border-radius: 12px;
margin-top: 30px;
display: flex;
align-items: flex-start;
}

.nutrition-note i {
color: var(--primary);
margin-right: 15px;
margin-top: 5px;
font-size: 2rem;
}

.nutrition-note h4 {
margin-bottom: 10px;
}

.contact-hero {
padding: 120px 0 80px;
background: linear-gradient(135deg, #FFE8EE 0%, #E6F7F5 100%);
text-align: center;
}

.contact-hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
}

.contact-hero p {
font-size: 1.4rem;
max-width: 800px;
margin: 0 auto;
color: var(--gray);
}

.contact-section {
padding: 100px 0;
}

.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 50px;
}

.map-container {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
overflow: hidden;
height: 500px;
position: relative;
}

.map-wrapper {
width: 100%;
height: 100%;
position: relative;
}

.map-wrapper iframe {
width: 100%;
height: 100%;
border: none;
}

.map-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
padding: 20px;
border-top: 5px solid var(--primary);
}

.map-overlay h3 {
margin-bottom: 10px;
color: var(--primary);
}

.map-overlay p {
margin-bottom: 5px;
display: flex;
align-items: center;
}

.map-overlay i {
color: var(--secondary);
margin-right: 10px;
width: 20px;
}

.form-container {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 40px;
}

.form-container h2 {
margin-bottom: 25px;
color: var(--secondary);
}

.form-container p {
margin-bottom: 35px;
color: var(--gray);
font-size: 1.1rem;
}

.form-info {
background-color: rgba(255, 107, 139, 0.1);
padding: 25px;
border-radius: 12px;
margin-bottom: 35px;
}

.form-info h4 {
margin-bottom: 15px;
display: flex;
align-items: center;
font-size: 1.3rem;
color: var(--primary);
}

.form-info h4 i {
margin-right: 12px;
}

.form-info ul {
list-style: none;
padding-left: 0;
}

.form-info li {
margin-bottom: 12px;
padding-left: 30px;
position: relative;
font-size: 1.1rem;
}

.form-info li:before {
content: '✓';
color: var(--primary);
position: absolute;
left: 0;
font-weight: bold;
font-size: 1.2rem;
}

.google-form-btn {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #4285f4;
color: white;
padding: 18px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 1.2rem;
transition: var(--transition);
border: none;
cursor: pointer;
text-decoration: none;
box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
width: 100%;
margin-top: 20px;
}

.google-form-btn:hover {
background-color: #3367d6;
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(66, 133, 244, 0.4);
color: white;
}

.google-form-btn i {
margin-right: 15px;
font-size: 1.5rem;
}

.manual-redirect {
margin-top: 25px;
font-size: 1rem;
color: var(--gray);
text-align: center;
}

.manual-redirect a {
color: var(--primary);
text-decoration: underline;
font-weight: 600;
}

.contact-info-sidebar {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 40px;
margin-top: 40px;
grid-column: 1 / -1;
}

.contact-info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.contact-info-item {
text-align: center;
padding: 25px;
background-color: rgba(78, 205, 196, 0.1);
border-radius: 12px;
transition: var(--transition);
}

.contact-info-item:hover {
transform: translateY(-5px);
background-color: rgba(255, 107, 139, 0.1);
}

.contact-info-item i {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 20px;
}

.contact-info-item h3 {
margin-bottom: 15px;
}

.directions-section {
background-color: #FFF5F7;
padding: 80px 0;
margin-top: 50px;
}

.directions-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.directions-content h2 {
margin-bottom: 25px;
}

.transport-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 30px;
}

.transport-option {
background: white;
padding: 20px;
border-radius: 12px;
text-align: center;
box-shadow: var(--shadow);
}

.transport-option i {
font-size: 2rem;
color: var(--primary);
margin-bottom: 15px;
}

.footer {
background-color: var(--dark);
color: white;
padding: 80px 0 30px;
}

.footer-content {
display: flex;
justify-content: space-between;
margin-bottom: 50px;
flex-wrap: wrap;
gap: 40px;
}

.footer-info h3 {
color: white;
display: flex;
align-items: center;
margin-bottom: 25px;
font-size: 1.8rem;
}

.footer-info h3 i {
margin-right: 15px;
font-size: 2.2rem;
color: var(--secondary);
}

.contact-info p {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
font-size: 1.1rem;
}

.contact-info i {
margin-right: 15px;
width: 25px;
margin-top: 5px;
color: var(--secondary);
}

.footer-links {
display: flex;
flex-direction: column;
}

.footer-links h4 {
color: white;
margin-bottom: 25px;
font-size: 1.5rem;
}

.footer-links a {
margin-bottom: 15px;
transition: var(--transition);
font-size: 1.1rem;
}

.footer-links a:hover {
color: var(--secondary);
transform: translateX(5px);
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 2px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.7);
font-size: 1rem;
}

.reveal {
opacity: 0;
transform: translate3d(0, 24px, 0);
transition: opacity 0.6s ease, transform 0.6s ease;
will-change: opacity, transform;
}

.reveal.active {
opacity: 1;
transform: translate3d(0, 0, 0);
}

.floating-shapes {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
z-index: 0;
overflow: hidden;
}

.shape {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}

.shape-1 {
width: 120px;
height: 120px;
background-color: var(--primary);
top: 10%;
left: 5%;
}

.shape-2 {
width: 180px;
height: 180px;
background-color: var(--secondary);
bottom: 20%;
right: 10%;
}

.shape-3 {
width: 100px;
height: 100px;
background-color: var(--accent-yellow);
top: 40%;
right: 15%;
}

.fun-elements {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
}

.fun-button {
width: 70px;
height: 70px;
border-radius: 50%;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
cursor: pointer;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
transition: var(--transition);
}

.fun-button:hover {
transform: scale(1.15) rotate(10deg);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.fun-panel {
position: absolute;
bottom: 85px;
right: 0;
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
padding: 25px;
width: 280px;
display: none;
}

.fun-panel.active {
display: block;
animation: slideUp 0.3s ease;
}

@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}

to {
opacity: 1;
transform: translateY(0);
}
}

.fun-option {
display: flex;
align-items: center;
padding: 15px 0;
cursor: pointer;
transition: var(--transition);
border-bottom: 2px solid var(--light-gray);
}

.fun-option:last-child {
border-bottom: none;
}

.fun-option:hover {
color: var(--primary);
transform: translateX(5px);
}

.fun-option i {
margin-right: 15px;
font-size: 1.5rem;
width: 35px;
text-align: center;
}

@media (max-width: 992px) {
.hero .container {
flex-direction: column;
}

.footer-content {
flex-direction: column;
}

.schedule-tabs {
flex-direction: column;
align-items: center;
}

.schedule-tab {
width: 100%;
max-width: 400px;
text-align: center;
}

.contact-container {
grid-template-columns: 1fr;
}

.directions-container {
grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

.nav-links {
display: none;
position: absolute;
top: 80px;
left: 0;
width: 100%;
background: white;
flex-direction: column;
padding: 25px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
z-index: 100;
}

.nav-links.active {
display: flex;
}

.menu-toggle {
display: block;
}

.hero-highlights {
flex-direction: column;
}

.meal-items {
grid-template-columns: 1fr;
}

.schedule-item {
flex-direction: column;
align-items: flex-start;
}

.schedule-time {
margin-bottom: 15px;
}

.map-container {
height: 400px;
}

.contact-info-grid {
grid-template-columns: 1fr;
}
}        

.image-collage {
flex: 1;
}

.collage-container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 15px;
height: 100%;
max-height: 400px;
}

.collage-main {
position: relative;
border-radius: var(--fun-border-radius);
overflow: hidden;
box-shadow: var(--shadow);
}

.collage-main .image-wrapper {
width: 100%;
height: 100%;
}

.collage-main .placeholder-image {
width: 100%;
height: 100%;
border-radius: var(--fun-border-radius);
}

.collage-side {
display: flex;
flex-direction: column;
gap: 15px;
}

.side-image {
flex: 1;
border-radius: var(--border-radius);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
padding: 20px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
}

.side-image:hover {
transform: translateY(-5px);
}

.side-image i {
margin-bottom: 10px;
font-size: 2.5rem;
}

.side-image p {
font-size: 1rem;
font-weight: 600;
margin: 0;
}

.image-caption {
text-align: center;
margin-top: 15px;
font-style: italic;
color: var(--gray);
font-size: 1rem;
}

.visit-section {
background: linear-gradient(135deg, #E6F7F5 0%, #FFF5F7 100%);
padding: 80px 0;
}

.visit-container {
background: white;
border-radius: var(--border-radius);
padding: 50px;
box-shadow: var(--shadow);
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: center;
}

.visit-content h2 {
color: var(--primary);
margin-bottom: 20px;
}

.visit-content p {
font-size: 1.2rem;
margin-bottom: 25px;
color: var(--gray);
}

.visit-highlights {
display: flex;
flex-direction: column;
gap: 15px;
}

.visit-highlight {
display: flex;
align-items: center;
gap: 15px;
}

.visit-highlight i {
color: var(--secondary);
font-size: 1.2rem;
width: 24px;
}

.visit-action {
text-align: center;
}

.visit-action .btn-large {
width: 100%;
margin-bottom: 15px;
}

.visit-note {
font-size: 0.9rem;
color: var(--gray);
font-style: italic;
}

.gallery-section {
padding: 80px 0;
background-color: #FFF9F0;
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 40px;
}

.gallery-item {
text-align: center;
}

.gallery-placeholder {
width: 100%;
height: 200px;
border-radius: var(--border-radius);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
margin-bottom: 15px;
box-shadow: var(--shadow);
transition: var(--transition);
}

.gallery-placeholder:hover {
transform: translateY(-10px);
}

.gallery-placeholder i {
font-size: 3rem;
margin-bottom: 10px;
}

.gallery-item p {
font-weight: 600;
color: var(--dark);
}

.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
margin-top: 40px;
}

.value-card {
background: white;
padding: 35px 25px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
text-align: center;
transition: var(--transition);
border-top: 8px solid var(--secondary);
}

.value-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
font-size: 2.5rem;
color: var(--secondary);
margin-bottom: 20px;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(78, 205, 196, 0.1);
border-radius: 50%;
margin-left: auto;
margin-right: auto;
}

@media (max-width: 992px) {
.collage-container {
grid-template-columns: 1fr;
max-height: none;
}

.visit-container {
grid-template-columns: 1fr;
text-align: center;
}

.visit-highlights {
align-items: center;
}
}

@media (max-width: 768px) {
.image-collage {
margin-top: 40px;
}

.visit-container {
padding: 30px;
}

.gallery-grid {
grid-template-columns: 1fr;
}
}

.real-photos-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
margin-top: 40px;
margin-bottom: 40px;
}

.real-photo-item {
text-align: center;
transition: var(--transition);
}

.real-photo-item:hover {
transform: translateY(-10px);
}

.real-photo-item img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
border: 5px solid white;
transition: var(--transition);
}

.real-photo-item img:hover {
transform: scale(1.03);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.real-photo-item p {
margin-top: 15px;
font-weight: 600;
color: var(--dark);
font-size: 1.1rem;
}

.more-photos-placeholder {
width: 100%;
height: 220px;
border-radius: var(--border-radius);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: white;
background: linear-gradient(135deg, var(--primary), var(--secondary));
box-shadow: var(--shadow);
border: 5px solid white;
transition: var(--transition);
}

.more-photos-placeholder:hover {
transform: scale(1.03);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.more-photos-placeholder i {
font-size: 3.5rem;
margin-bottom: 10px;
}

.more-photos-placeholder span {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 5px;
}

.more-photos-placeholder p {
font-size: 1rem;
opacity: 0.9;
}

.gallery-icon {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 15px;
width: 70px;
height: 70px;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 107, 139, 0.1);
border-radius: 50%;
margin-left: auto;
margin-right: auto;
}

.gallery-item h4 {
margin-bottom: 10px;
color: var(--secondary);
}

.gallery-item p {
color: var(--gray);
font-size: 1rem;
}

@media (max-width: 768px) {
.real-photos-grid {
grid-template-columns: 1fr;
}

.real-photo-item img {
height: 200px;
}

.more-photos-placeholder {
height: 200px;
}
}

@media (max-width: 480px) {
.real-photo-item img {
height: 180px;
}

.more-photos-placeholder {
height: 180px;
}
}

.lightbox {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
backdrop-filter: blur(5px);
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.lightbox.active {
display: flex;
opacity: 1;
}

.lightbox-content {
max-width: 90%;
max-height: 80%;
position: relative;
animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

#lightboxImage {
max-width: 100%;
max-height: 70vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
color: white;
text-align: center;
padding: 20px;
font-size: 1.2rem;
background: rgba(0, 0, 0, 0.7);
border-radius: 0 0 8px 8px;
margin-top: -4px;
display: flex;
justify-content: space-between;
align-items: center;
}

.lightbox-counter {
font-size: 0.9rem;
color: #ccc;
background: rgba(255, 255, 255, 0.1);
padding: 5px 15px;
border-radius: 20px;
}

.lightbox-close {
position: absolute;
top: 20px;
right: 30px;
color: white;
font-size: 40px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
z-index: 2001;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}

.lightbox-nav {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 20px;
margin-top: -50px;
color: white;
font-weight: bold;
font-size: 30px;
transition: 0.3s;
user-select: none;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}

.lightbox-nav:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}

.lightbox-nav.prev {
left: 30px;
}

.lightbox-nav.next {
right: 30px;
}

.lightbox-thumbnails {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
display: flex;
justify-content: center;
gap: 10px;
padding: 15px;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(10px);
}

.thumbnail {
width: 80px;
height: 80px;
cursor: pointer;
border-radius: 8px;
overflow: hidden;
border: 3px solid transparent;
opacity: 0.6;
transition: all 0.3s ease;
}

.thumbnail:hover {
opacity: 0.8;
transform: translateY(-5px);
}

.thumbnail.active {
border-color: var(--primary);
opacity: 1;
box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
}

.thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}

.real-photo-item {
cursor: pointer;
transition: var(--transition);
}

.real-photo-item:hover {
transform: translateY(-10px) scale(1.02);
}

.real-photo-item:hover img {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
.lightbox-content {
max-width: 95%;
max-height: 60%;
}

.lightbox-nav {
padding: 15px;
width: 50px;
height: 50px;
font-size: 24px;
}

.lightbox-nav.prev {
left: 10px;
}

.lightbox-nav.next {
right: 10px;
}

.lightbox-close {
right: 15px;
top: 15px;
width: 40px;
height: 40px;
font-size: 30px;
}

.lightbox-thumbnails {
gap: 5px;
padding: 10px;
overflow-x: auto;
justify-content: flex-start;
}

.thumbnail {
width: 60px;
height: 60px;
flex-shrink: 0;
}

.lightbox-caption {
flex-direction: column;
gap: 10px;
padding: 15px;
}
}

@media (max-width: 480px) {
#lightboxImage {
max-height: 50vh;
}

.thumbnail {
width: 50px;
height: 50px;
}
}

.floating-animals {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
overflow: hidden;
}

.floating-animal {
position: absolute;
font-size: 2rem;
opacity: 0.08;
animation: floatAnimal 20s infinite ease-in-out;
filter: blur(0.5px);
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}

@keyframes floatAnimal {
0% {
transform: translate(0, 0) rotate(0deg);
}
25% {
transform: translate(calc(10px + 2vw), calc(-10px - 2vh)) rotate(5deg);
}
50% {
transform: translate(calc(-15px - 3vw), calc(15px + 3vh)) rotate(-5deg);
}
75% {
transform: translate(calc(20px + 4vw), calc(5px + 1vh)) rotate(3deg);
}
100% {
transform: translate(0, 0) rotate(0deg);
}
}

.floating-animal:nth-child(2) {
font-size: 1.8rem;
animation-duration: 25s;
opacity: 0.07;
}

.floating-animal:nth-child(3) {
font-size: 2.2rem;
animation-duration: 22s;
opacity: 0.06;
}

.floating-animal:nth-child(4) {
font-size: 1.6rem;
animation-duration: 28s;
opacity: 0.05;
}

.page-container {
position: relative;
z-index: 2;
}

.navbar, .footer {
position: relative;
z-index: 3;
}

.hero, .about-hero, .schedule-hero, .meals-hero, .contact-hero {
position: relative;
z-index: 2;
}

.testimonials {
position: relative;
z-index: 2;
}

.section {
position: relative;
z-index: 2;
}

.fun-elements {
z-index: 1000;
}

.lightbox {
z-index: 2000;
}

@media (max-width: 768px) {
.floating-animal {
font-size: 1.5rem;
opacity: 0.05;
}

.floating-animal:nth-child(2) {
font-size: 1.3rem;
}

.floating-animal:nth-child(3) {
font-size: 1.7rem;
}

.floating-animal:nth-child(4) {
font-size: 1.2rem;
}
}

@media (max-width: 480px) {
.floating-animal {
font-size: 1.2rem;
opacity: 0.04;
}

.floating-animal:nth-child(4) {
display: none;
}
}

.hero .floating-animal,
.about-hero .floating-animal,
.schedule-hero .floating-animal,
.meals-hero .floating-animal,
.contact-hero .floating-animal {
opacity: 0.06;
}

.testimonials .floating-animal,
.team-section .floating-animal,
.directions-section .floating-animal {
opacity: 0.12;
}

#home-page .floating-animal {
animation-duration: 18s;
}

#about-page .floating-animal {
animation-duration: 22s;
}

#schedule-page .floating-animal {
animation-duration: 20s;
}

#meals-page .floating-animal {
animation-duration: 24s;
}

#contact-page .floating-animal {
animation-duration: 21s;
}

.floating-animals {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
overflow: hidden;
}

.floating-animal {
position: absolute;
font-size: 2.8rem;
opacity: 0.15;
animation: floatAnimal 25s infinite ease-in-out;
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
will-change: transform;
}

@keyframes floatAnimal {
0% {
transform: translate(0, 0) rotate(0deg) scale(1);
opacity: 0.15;
}
15% {
transform: translate(calc(20px + 3vw), calc(-15px - 3vh)) rotate(8deg) scale(1.05);
opacity: 0.2;
}
30% {
transform: translate(calc(-25px - 4vw), calc(20px + 4vh)) rotate(-10deg) scale(1.03);
opacity: 0.18;
}
45% {
transform: translate(calc(30px + 5vw), calc(10px + 2vh)) rotate(12deg) scale(1.07);
opacity: 0.22;
}
60% {
transform: translate(calc(-20px - 2vw), calc(25px + 5vh)) rotate(-5deg) scale(1.04);
opacity: 0.17;
}
75% {
transform: translate(calc(15px + 2vw), calc(-20px - 4vh)) rotate(15deg) scale(1.06);
opacity: 0.21;
}
100% {
transform: translate(0, 0) rotate(0deg) scale(1);
opacity: 0.15;
}
}

.floating-animal:nth-child(2n) {
font-size: 3rem;
animation-duration: 28s;
opacity: 0.18;
animation-name: floatAnimal2;
}

@keyframes floatAnimal2 {
0% {
transform: translate(0, 0) rotate(0deg) scale(1);
opacity: 0.18;
}
20% {
transform: translate(calc(-15px - 2vw), calc(-20px - 3vh)) rotate(-12deg) scale(1.06);
opacity: 0.22;
}
40% {
transform: translate(calc(25px + 3vw), calc(15px + 2vh)) rotate(10deg) scale(1.04);
opacity: 0.16;
}
60% {
transform: translate(calc(-30px - 4vw), calc(20px + 4vh)) rotate(-8deg) scale(1.08);
opacity: 0.24;
}
80% {
transform: translate(calc(20px + 2vw), calc(-15px - 3vh)) rotate(15deg) scale(1.05);
opacity: 0.19;
}
100% {
transform: translate(0, 0) rotate(0deg) scale(1);
opacity: 0.18;
}
}

.floating-animal:nth-child(3n) {
font-size: 2.4rem;
animation-duration: 32s;
opacity: 0.12;
animation-name: floatAnimal3;
}

@keyframes floatAnimal3 {
0% {
transform: translate(0, 0) rotate(0deg) scale(1);
opacity: 0.12;
}
25% {
transform: translate(calc(18px + 2vw), calc(22px + 3vh)) rotate(15deg) scale(1.04);
opacity: 0.16;
}
50% {
transform: translate(calc(-28px - 3vw), calc(-18px - 2vh)) rotate(-20deg) scale(1.07);
opacity: 0.14;
}
75% {
transform: translate(calc(22px + 3vw), calc(-25px - 4vh)) rotate(10deg) scale(1.03);
opacity: 0.18;
}
100% {
transform: translate(0, 0) rotate(0deg) scale(1);
opacity: 0.12;
}
}

.floating-animal:nth-child(4n) {
font-size: 3.2rem;
animation-duration: 24s;
opacity: 0.2;
}

.floating-animal:nth-child(5n) {
font-size: 2.6rem;
animation-duration: 30s;
opacity: 0.14;
}

.navbar {
z-index: 100;
position: relative;
}

.hero, 
.about-hero, 
.schedule-hero, 
.meals-hero, 
.contact-hero {
position: relative;
}

.hero .container,
.about-hero .container,
.schedule-hero .container,
.meals-hero .container,
.contact-hero .container {
position: relative;
z-index: 2;
}

.hero .floating-animal,
.about-hero .floating-animal,
.schedule-hero .floating-animal,
.meals-hero .floating-animal,
.contact-hero .floating-animal {
opacity: 0.18;
}

.hero .floating-animal:nth-child(2n),
.about-hero .floating-animal:nth-child(2n),
.schedule-hero .floating-animal:nth-child(2n),
.meals-hero .floating-animal:nth-child(2n),
.contact-hero .floating-animal:nth-child(2n) {
opacity: 0.22;
}

.testimonials,
.team-section,
.directions-section {
position: relative;
}

.testimonials .container,
.team-section .container,
.directions-section .container {
position: relative;
z-index: 2;
}

.testimonials .floating-animal,
.team-section .floating-animal,
.directions-section .floating-animal {
opacity: 0.25;
}

.testimonials .floating-animal:nth-child(2n),
.team-section .floating-animal:nth-child(2n),
.directions-section .floating-animal:nth-child(2n) {
opacity: 0.3;
}

@media (hover: hover) and (pointer: fine) {
.floating-animal {
transition: all 0.5s ease;
}

.floating-animal:hover {
opacity: 0.4 !important;
transform: scale(1.3) !important;
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) !important;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.5) !important;
z-index: 10 !important;
animation-play-state: paused !important;
cursor: pointer;
}
}

@media (max-width: 992px) {
.floating-animal {
font-size: 2.2rem;
opacity: 0.12;
}

.floating-animal:nth-child(2n) {
font-size: 2.4rem;
opacity: 0.14;
}

.floating-animal:nth-child(3n) {
font-size: 1.8rem;
opacity: 0.1;
}

.floating-animal:nth-child(4n) {
font-size: 2.6rem;
opacity: 0.16;
}

.floating-animal:nth-child(5n) {
font-size: 2rem;
opacity: 0.11;
}
}

@media (max-width: 768px) {
.floating-animal {
font-size: 1.8rem;
opacity: 0.1;
}

.floating-animal:nth-child(2n) {
font-size: 2rem;
opacity: 0.12;
}

.floating-animal:nth-child(3n) {
font-size: 1.5rem;
opacity: 0.08;
}

.floating-animal:nth-child(4n) {
font-size: 2.2rem;
opacity: 0.13;
}

.floating-animal:nth-child(5n) {
font-size: 1.7rem;
opacity: 0.09;
}

.floating-animal:nth-child(n+9) {
display: none;
}
}

@media (max-width: 480px) {
.floating-animal {
font-size: 1.5rem;
opacity: 0.08;
}

.floating-animal:nth-child(2n) {
font-size: 1.6rem;
opacity: 0.09;
}

.floating-animal:nth-child(3n) {
font-size: 1.2rem;
opacity: 0.06;
}

.floating-animal:nth-child(n+7) {
display: none;
}
}

.feature-card,
.testimonial-card,
.schedule-item,
.team-card,
.form-container,
.map-container,
.contact-info-item {
position: relative;
z-index: 2;
}

.footer {
position: relative;
z-index: 3;
}

.fun-elements {
z-index: 1000;
}

.lightbox {
z-index: 2000;
}

.page-container {
position: relative;
}

.hero .container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}

@media (max-width: 992px) {
.hero .container {
flex-direction: column;
}

.hero-content,
.image-collage {
width: 100%;
max-width: 100%;
}
}

body {
overflow-x: hidden;
}

.container {
position: relative;
z-index: 2;
}

.navbar {
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
}

.floating-animals {
z-index: 1;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 30px;
}

.pricing-card {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
overflow: hidden;
transition: var(--transition);
position: relative;
border: 2px solid transparent;
}

.pricing-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
border-color: var(--accent-yellow);
transform: scale(1.05);
}

.pricing-card.featured:hover {
transform: scale(1.05) translateY(-10px);
}

.featured-badge {
position: absolute;
top: 15px;
right: -30px;
background: var(--accent-yellow);
color: var(--dark);
padding: 8px 35px;
font-weight: 600;
font-size: 0.9rem;
transform: rotate(45deg);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1;
}

.pricing-header {
color: white;
padding: 30px 25px;
text-align: center;
}

.pricing-header h4 {
color: white;
margin-bottom: 15px;
font-size: 1.6rem;
}

.price {
margin: 20px 0;
}

.amount {
font-size: 3rem;
font-weight: 700;
font-family: 'Quicksand', sans-serif;
}

.period {
font-size: 1.2rem;
opacity: 0.9;
}

.pricing-desc {
font-size: 1rem;
opacity: 0.9;
margin-top: 10px;
}

.pricing-features {
padding: 30px 25px;
}

.pricing-features ul {
list-style: none;
padding: 0;
margin: 0;
}

.pricing-features li {
margin-bottom: 15px;
padding-left: 30px;
position: relative;
font-size: 1.1rem;
}

.pricing-features li i {
position: absolute;
left: 0;
top: 4px;
}

.pricing-footer {
padding: 20px 25px;
border-top: 2px dashed var(--light-gray);
text-align: center;
}

.additional-info {
border-left: 5px solid var(--secondary);
}

@media (max-width: 992px) {
.pricing-card.featured {
transform: none;
}

.pricing-card.featured:hover {
transform: translateY(-10px);
}
}

@media (max-width: 768px) {
.pricing-grid {
grid-template-columns: 1fr;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}

.featured-badge {
right: -25px;
padding: 6px 30px;
font-size: 0.8rem;
}
}

@media (max-width: 480px) {
.pricing-header {
padding: 25px 20px;
}

.amount {
font-size: 2.5rem;
}

.pricing-features {
padding: 25px 20px;
}

.pricing-features li {
font-size: 1rem;
}

.featured-badge {
right: -20px;
padding: 5px 25px;
font-size: 0.75rem;
}
}

.hero-image-container {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding: 20px;
}

.hero-image-wrapper {
position: relative;
width: 100%;
max-width: 500px;
margin: 0 auto;
}

.hero-main-image {
width: 100%;
height: auto;
border-radius: var(--fun-border-radius);
box-shadow: var(--shadow);
border: 15px solid white;
position: relative;
z-index: 2;
transition: transform 0.5s ease;
background: white;
}

.hero-main-image:hover {
transform: scale(1.02);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-decoration {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.decoration-circle {
position: absolute;
border-radius: 50%;
animation: floatDecoration 6s infinite ease-in-out;
}

.circle-1 {
width: 60px;
height: 60px;
background: rgba(255, 107, 139, 0.15);
top: -20px;
left: -20px;
animation-delay: 0s;
}

.circle-2 {
width: 80px;
height: 80px;
background: rgba(78, 205, 196, 0.15);
bottom: -30px;
right: -30px;
animation-delay: 2s;
}

.circle-3 {
width: 40px;
height: 40px;
background: rgba(255, 209, 102, 0.15);
top: 50%;
right: -15px;
animation-delay: 4s;
}

@keyframes floatDecoration {
0%, 100% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-15px) rotate(10deg);
}
}

.hero-image-caption {
margin-top: 20px;
text-align: center;
padding: 15px 25px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-left: 5px solid var(--primary);
border-right: 5px solid var(--secondary);
max-width: 400px;
}

.hero-image-caption p {
margin: 0;
font-weight: 600;
color: var(--dark);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 1.1rem;
}

.hero .container {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: center;
gap: clamp(20px, 5vw, 60px);
position: relative;
z-index: 1;
}

@media (max-width: 992px) {
.hero .container {
grid-template-columns: 1fr;
}

.hero-image-container {
order: -1;
margin-bottom: 40px;
}

.hero-image-wrapper {
max-width: 400px;
}

.hero-main-image {
border-width: 10px;
}

.hero-image-caption {
max-width: 350px;
padding: 12px 20px;
}

.hero-image-caption p {
font-size: 1rem;
}
}

@media (max-width: 768px) {
.hero-image-wrapper {
max-width: 320px;
}

.decoration-circle {
display: none;
}

.hero-image-caption {
max-width: 300px;
padding: 10px 15px;
}
}

@media (max-width: 480px) {
.hero-image-wrapper {
max-width: 280px;
}

.hero-main-image {
border-width: 8px;
}

.hero-image-caption p {
font-size: 0.9rem;
flex-direction: column;
gap: 5px;
}
}

.hero {
padding: clamp(70px, 10vw, 100px) 0 clamp(40px, 8vw, 60px);
background: linear-gradient(135deg, #FFE8EE 0%, #E6F7F5 100%);
position: relative;
overflow: hidden;
min-height: auto;
display: flex;
align-items: center;
}

.hero .floating-animal {
opacity: 0.12;
}

.hero .floating-animal:nth-child(2n) {
opacity: 0.15;
}
