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

:root {
  --bg: #fef9e7;
  --bg-2: #fff5d4;
  --paper: #ffffff;
  --text: #2c4a1e;
  --text-2: #3d6428;
  --muted: #7a8a5e;
  --green: #5db84a;
  --green-deep: #3a8a2e;
  --green-light: #c4e8b6;
  --orange: #ff8c42;
  --orange-deep: #e06820;
  --yellow: #ffc94a;
  --pink: #ff7eb6;
  --blue: #4ab4e8;
  --purple: #b48eff;
  --red: #ff5e5e;
  --brown: #8a5a3a;
  --shadow: 0 6px 0 rgba(58,138,46,0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Quicksand', sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.fredoka { font-family: 'Fredoka', sans-serif; }

.topbar { background: var(--green); color: white; padding: 8px 0; font-weight: 600; font-size: 13px; text-align: center; }
.topbar span { margin: 0 14px; }

.header { background: var(--paper); border-bottom: 4px solid var(--green); position: relative; z-index: 50; }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 14px; font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 24px; color: var(--green-deep); }
.logo-mark { width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: grid; place-items: center; font-size: 28px; box-shadow: 0 4px 0 var(--green-deep); }
.logo .name { line-height: 1; }
.logo .sub { display: block; font-size: 11px; color: var(--muted); font-weight: 500; font-family: 'Quicksand', sans-serif; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.header-nav { display: flex; gap: 28px; margin-left: auto; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 15px; }
.header-nav a { padding: 8px 4px; transition: all 0.15s; position: relative; }
.header-nav a:hover, .header-nav a.active { color: var(--green-deep); }
.header-nav a.active::after { content: ''; position: absolute; bottom: -22px; left: 0; right: 0; height: 4px; background: var(--orange); border-radius: 2px 2px 0 0; }
.header-cta { display: flex; gap: 12px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15px; border: 0; border-radius: 100px; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: white; box-shadow: 0 5px 0 var(--orange-deep); }
.btn-primary:hover { box-shadow: 0 8px 0 var(--orange-deep); }
.btn-green { background: var(--green); color: white; box-shadow: 0 5px 0 var(--green-deep); }
.btn-green:hover { box-shadow: 0 8px 0 var(--green-deep); }
.btn-yellow { background: var(--yellow); color: var(--text); box-shadow: 0 5px 0 #d9a020; }
.btn-yellow:hover { box-shadow: 0 8px 0 #d9a020; }
.btn-outline { background: var(--paper); color: var(--green-deep); box-shadow: 0 4px 0 var(--green-light); border: 2px solid var(--green); }

.hero { padding: 50px 0 70px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; bottom: -60px; left: 0; right: 0; height: 100px; background: var(--green-light); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--text); padding: 8px 18px; border-radius: 100px; font-weight: 700; font-size: 13px; margin-bottom: 24px; box-shadow: 0 4px 0 #d9a020; font-family: 'Fredoka', sans-serif; }
.hero h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 76px; line-height: 1; color: var(--green-deep); margin-bottom: 24px; letter-spacing: -2px; }
.hero h1 span { color: var(--orange); }
.hero h1 em { font-style: normal; color: var(--pink); font-size: 64px; }
.hero p { font-size: 18px; color: var(--text-2); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 12px; }
.hero-stat-icon { width: 50px; height: 50px; background: var(--paper); border-radius: 50%; display: grid; place-items: center; font-size: 24px; box-shadow: 0 4px 0 var(--green-light); }
.hero-stat-num { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 26px; color: var(--green-deep); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

.hero-visual { position: relative; aspect-ratio: 1; max-width: 540px; margin: 0 auto; }
.hero-circle { position: absolute; inset: 0; background: var(--paper); border-radius: 50%; box-shadow: 0 12px 0 var(--green-light); display: grid; place-items: center; overflow: hidden; }
.hero-circle::before { content: ''; position: absolute; inset: 24px; border: 4px dashed var(--green-light); border-radius: 50%; }
.hero-svg { width: 78%; position: relative; z-index: 1; }
.hero-bubble { position: absolute; background: var(--paper); padding: 14px 20px; border-radius: 24px; box-shadow: 0 6px 0 rgba(0,0,0,0.08); display: flex; gap: 10px; align-items: center; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 14px; z-index: 2; }
.hero-bubble-1 { top: 8%; left: -8%; }
.hero-bubble-2 { bottom: 16%; right: -6%; }
.hero-bubble-3 { top: 50%; right: -2%; }
.hero-bubble-emoji { font-size: 24px; }
.hero-bubble-text strong { color: var(--orange); display: block; }
.hero-bubble-text small { color: var(--muted); font-size: 11px; font-weight: 500; }

.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-head { text-align: center; margin: 80px 0 40px; }
.section-eye { display: inline-block; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 13px; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.section-head h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 52px; color: var(--green-deep); letter-spacing: -1px; line-height: 1.05; }
.section-head h2 span { color: var(--orange); }
.section-head p { font-size: 16px; color: var(--text-2); margin-top: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }

.zones { padding: 30px 0 80px; background: var(--green-light); }
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zone-card { background: var(--paper); border-radius: 28px; padding: 24px; text-align: center; box-shadow: 0 6px 0 rgba(58,138,46,0.15); transition: all 0.2s; cursor: pointer; }
.zone-card:hover { transform: translateY(-4px); box-shadow: 0 10px 0 rgba(58,138,46,0.15); }
.zone-icon { width: 96px; height: 96px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-size: 48px; }
.zone-icon-c1 { background: #ffe4c4; }
.zone-icon-c2 { background: #c4e4ff; }
.zone-icon-c3 { background: #ffd4e4; }
.zone-icon-c4 { background: #d4ffd4; }
.zone-icon-c5 { background: #fff4c4; }
.zone-icon-c6 { background: #e4d4ff; }
.zone-icon-c7 { background: #ffc4c4; }
.zone-icon-c8 { background: #c4ffe4; }
.zone-card h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; color: var(--green-deep); margin-bottom: 6px; }
.zone-card p { font-size: 13px; color: var(--muted); }

.animals { padding: 40px 0 80px; }
.animals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.animal-card { background: var(--paper); border-radius: 32px; padding: 8px 8px 28px; box-shadow: 0 6px 0 rgba(58,138,46,0.12); transition: all 0.25s; }
.animal-card:hover { transform: translateY(-6px); box-shadow: 0 12px 0 rgba(58,138,46,0.12); }
.animal-photo { aspect-ratio: 4/3; border-radius: 24px; position: relative; overflow: hidden; margin-bottom: 24px; display: grid; place-items: center; }
.animal-photo-1 { background: linear-gradient(180deg, #ffe4a8, #ffc97a); }
.animal-photo-2 { background: linear-gradient(180deg, #d4e8ff, #a4c4ff); }
.animal-photo-3 { background: linear-gradient(180deg, #c4e8b8, #88d088); }
.animal-photo-4 { background: linear-gradient(180deg, #ffd8e0, #ffa8c0); }
.animal-photo-5 { background: linear-gradient(180deg, #fff4d4, #ffe098); }
.animal-photo-6 { background: linear-gradient(180deg, #e4d8ff, #b8a4ff); }
.animal-photo svg { width: 75%; height: 75%; }
.animal-tag { position: absolute; top: 14px; left: 14px; background: var(--paper); padding: 5px 14px; border-radius: 100px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 3px 0 rgba(0,0,0,0.06); }
.animal-tag.new { background: var(--orange); color: white; }
.animal-tag.kids { background: var(--pink); color: white; }
.animal-tag.show { background: var(--yellow); color: var(--text); }
.animal-info { padding: 0 18px; }
.animal-info h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 26px; color: var(--green-deep); margin-bottom: 4px; }
.animal-info .latin { font-style: italic; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.animal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 0; border-top: 2px dashed var(--green-light); border-bottom: 2px dashed var(--green-light); margin-bottom: 16px; }
.animal-fact { font-size: 12px; }
.animal-fact-label { color: var(--muted); display: block; }
.animal-fact-value { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--text); }
.animal-info p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 16px; }
.animal-action { display: flex; justify-content: space-between; align-items: center; }
.animal-where { font-size: 12px; color: var(--green-deep); font-weight: 600; }
.animal-where::before { content: '📍 '; }
.animal-cta { background: var(--orange); color: white; padding: 8px 18px; border-radius: 100px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 13px; box-shadow: 0 3px 0 var(--orange-deep); }

.events { padding: 60px 0 80px; background: var(--bg-2); position: relative; overflow: hidden; }
.events::before { content: ''; position: absolute; top: 30px; right: 5%; font-size: 80px; opacity: 0.08; }
.events-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.event-card { border-radius: 28px; padding: 36px; position: relative; overflow: hidden; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 6px 0 rgba(0,0,0,0.08); }
.event-card-big { grid-row: span 2; min-height: 540px; background: linear-gradient(135deg, #ff8c42, #ffa860); color: white; }
.event-card-1 { background: linear-gradient(135deg, #4ab4e8, #5db8ff); color: white; }
.event-card-2 { background: linear-gradient(135deg, #ff7eb6, #ffaad8); color: white; }
.event-card-3 { background: linear-gradient(135deg, #5db84a, #88d670); color: white; }
.event-card-4 { background: linear-gradient(135deg, #b48eff, #d8b8ff); color: white; }
.event-card-eye { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.9; margin-bottom: 12px; }
.event-card h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 28px; line-height: 1.05; margin-bottom: 10px; letter-spacing: -0.5px; }
.event-card-big h3 { font-size: 44px; }
.event-card p { font-size: 13px; opacity: 0.95; margin-bottom: 18px; }
.event-card .ev-date { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.25); padding: 8px 18px; border-radius: 100px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 13px; align-self: start; }
.event-emoji { font-size: 100px; position: absolute; bottom: -10px; right: -10px; opacity: 0.5; }
.event-card-big .event-emoji { font-size: 240px; bottom: -50px; right: -30px; }

.tickets { padding: 80px 0; }
.tickets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ticket-card { background: var(--paper); border-radius: 28px; padding: 36px 28px; text-align: center; box-shadow: 0 6px 0 rgba(58,138,46,0.12); position: relative; transition: all 0.25s; }
.ticket-card:hover { transform: translateY(-6px); box-shadow: 0 12px 0 rgba(58,138,46,0.12); }
.ticket-card.featured { background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%); color: white; box-shadow: 0 6px 0 #2a6020; }
.ticket-card.featured .ticket-feature::before { color: var(--yellow); }
.ticket-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--text); font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 12px; padding: 4px 18px; border-radius: 100px; box-shadow: 0 3px 0 #d9a020; }
.ticket-icon { font-size: 48px; margin-bottom: 14px; }
.ticket-card h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 24px; margin-bottom: 6px; }
.ticket-sub { font-size: 13px; opacity: 0.85; margin-bottom: 20px; }
.ticket-card.featured .ticket-sub { color: rgba(255,255,255,0.9); }
.ticket-price { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 48px; line-height: 1; letter-spacing: -1px; margin-bottom: 4px; }
.ticket-price-unit { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.ticket-card.featured .ticket-price-unit { color: rgba(255,255,255,0.85); }
.ticket-features { list-style: none; text-align: left; margin-bottom: 28px; padding: 0 14px; }
.ticket-feature { padding: 8px 0 8px 28px; position: relative; font-size: 14px; }
.ticket-feature::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; font-size: 16px; }
.ticket-card .btn { width: 100%; justify-content: center; }

.testimonials { padding: 60px 0 80px; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.testimonial { background: var(--paper); border-radius: 28px; padding: 32px; box-shadow: 0 6px 0 rgba(58,138,46,0.12); position: relative; }
.testimonial::before { content: '"'; position: absolute; top: 8px; left: 24px; font-family: 'Fredoka', sans-serif; font-size: 100px; color: var(--green-light); line-height: 1; }
.testimonial-stars { color: var(--yellow); font-size: 18px; margin-bottom: 14px; position: relative; }
.testimonial-text { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; position: relative; }
.testimonial-author { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 2px dashed var(--green-light); }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: 'Fredoka', sans-serif; font-weight: 700; color: white; font-size: 18px; }
.testimonial-author strong { display: block; font-family: 'Fredoka', sans-serif; font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--muted); }

.cta-banner { padding: 80px 0; }
.cta-card { background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%); border-radius: 36px; padding: 60px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; box-shadow: 0 10px 0 rgba(0,0,0,0.1); }
.cta-card h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 52px; line-height: 1; color: white; letter-spacing: -1px; margin-bottom: 16px; }
.cta-card p { font-size: 17px; color: white; opacity: 0.95; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-card .btn-primary { background: var(--paper); color: var(--orange-deep); box-shadow: 0 5px 0 #d9a020; }
.cta-card .btn-yellow { background: var(--text); color: white; box-shadow: 0 5px 0 #1a3010; }
.cta-visual svg { width: 100%; max-width: 320px; margin-left: auto; display: block; }

.footer { background: var(--text); color: var(--paper); padding: 70px 0 30px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px; background: repeating-linear-gradient(90deg, var(--green) 0 60px, var(--orange) 60px 120px, var(--yellow) 120px 180px, var(--pink) 180px 240px); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-about .logo { color: white; }
.footer-about .logo .name { color: white; }
.footer-about .logo .sub { color: var(--green-light); }
.footer-about p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.8); margin: 18px 0 22px; max-width: 360px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: grid; place-items: center; transition: all 0.2s; font-size: 18px; }
.footer-social:hover { background: var(--green); }
.footer h5 { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; color: var(--yellow); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; font-size: 13px; color: rgba(255,255,255,0.7); }

.page-header { padding: 50px 0 30px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); position: relative; overflow: hidden; }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30px; background: var(--green-light); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.page-header .crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.page-header .crumbs a:hover { color: var(--green-deep); }
.page-header h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 64px; color: var(--green-deep); letter-spacing: -1.5px; line-height: 1; }
.page-header h1 span { color: var(--orange); }
.page-header .h1-sub { font-size: 17px; color: var(--text-2); margin-top: 14px; max-width: 580px; }

.filters-bar { background: var(--paper); border-radius: 100px; padding: 8px; box-shadow: 0 5px 0 rgba(58,138,46,0.12); display: flex; gap: 4px; margin: 30px auto 50px; max-width: fit-content; flex-wrap: wrap; }
.filter-btn { padding: 12px 22px; border-radius: 100px; font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 14px; color: var(--muted); cursor: pointer; transition: all 0.15s; border: 0; background: transparent; }
.filter-btn:hover { background: var(--green-light); color: var(--green-deep); }
.filter-btn.active { background: var(--green); color: white; box-shadow: 0 3px 0 var(--green-deep); }

.about-section { padding: 70px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-text h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 44px; color: var(--green-deep); line-height: 1.05; letter-spacing: -1px; margin-bottom: 22px; }
.about-text h2 span { color: var(--orange); }
.about-text p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; }
.about-text p strong { color: var(--green-deep); }
.about-img { aspect-ratio: 1; background: var(--paper); border-radius: 40px; box-shadow: 0 8px 0 rgba(58,138,46,0.12); padding: 30px; display: grid; place-items: center; position: relative; overflow: hidden; }
.about-img::before { content: ''; position: absolute; inset: 16px; border: 4px dashed var(--green-light); border-radius: 28px; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-stat-card { background: var(--paper); border-radius: 24px; padding: 26px; text-align: center; box-shadow: 0 5px 0 rgba(58,138,46,0.12); }
.about-stat-icon { font-size: 32px; margin-bottom: 10px; }
.about-stat-num { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 36px; color: var(--green-deep); line-height: 1; letter-spacing: -1px; }
.about-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

.team-section { padding: 60px 0; background: var(--green-light); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-member { background: var(--paper); border-radius: 28px; padding: 24px; text-align: center; box-shadow: 0 6px 0 rgba(0,0,0,0.08); }
.team-photo { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-size: 50px; }
.team-photo-1 { background: #ffe0b8; }
.team-photo-2 { background: #c8e0ff; }
.team-photo-3 { background: #ffd0e0; }
.team-photo-4 { background: #d8f0c0; }
.team-member h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 19px; color: var(--green-deep); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.team-bio { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 50px 0 80px; }
.contact-block { background: var(--paper); border-radius: 28px; padding: 32px; margin-bottom: 20px; box-shadow: 0 5px 0 rgba(58,138,46,0.12); }
.contact-block h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; color: var(--green-deep); margin-bottom: 6px; }
.contact-block .cb-sub { font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 18px; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 14px; align-items: start; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.contact-item-icon.c1 { background: #ffe4c4; }
.contact-item-icon.c2 { background: #c4e4ff; }
.contact-item-icon.c3 { background: #ffd4e4; }
.contact-item-icon.c4 { background: #d4ffd4; }
.contact-item-text strong { display: block; font-family: 'Fredoka', sans-serif; font-size: 16px; color: var(--green-deep); }
.contact-item-text span { font-size: 13px; color: var(--muted); }

.contact-form { background: var(--paper); border-radius: 28px; padding: 36px; box-shadow: 0 6px 0 rgba(58,138,46,0.12); }
.contact-form h3 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 28px; color: var(--green-deep); margin-bottom: 6px; }
.contact-form .cf-sub { font-size: 14px; color: var(--text-2); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Fredoka', sans-serif; font-size: 13px; color: var(--green-deep); margin-bottom: 6px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 18px; background: var(--bg-2); border: 2px solid transparent; border-radius: 16px; font-family: 'Quicksand', sans-serif; font-size: 14px; color: var(--text); outline: 0; transition: all 0.15s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--green); background: var(--paper); }
.field textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn { width: 100%; justify-content: center; }
.zoo-map { aspect-ratio: 16/10; background: var(--paper); border-radius: 24px; box-shadow: 0 5px 0 rgba(58,138,46,0.12); position: relative; overflow: hidden; margin-top: 20px; }

@media (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; }
  .header-nav { order: 3; width: 100%; justify-content: center; gap: 18px; padding-top: 14px; border-top: 1px solid var(--green-light); margin-left: 0; }
  .header-nav a.active::after { display: none; }
  .header-cta { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 52px; }
  .hero h1 em { font-size: 44px; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .animals-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .event-card-big { grid-row: span 1; min-height: 280px; }
  .event-card-big h3 { font-size: 28px; }
  .tickets-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 40px; }
  .cta-card h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .page-header h1 { font-size: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 20px; }
  .section-inner { padding: 0 20px; }
  .hero { padding: 30px 0 50px; }
  .hero h1 { font-size: 40px; }
  .hero h1 em { font-size: 34px; }
  .zones-grid, .animals-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats-row, .team-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 34px; }
  .page-header h1 { font-size: 32px; }
  .cta-card h2 { font-size: 28px; }
  .hero-bubble { display: none; }
  .hero-bubble-1, .hero-bubble-2 { display: flex; }
}
