/* ===== GENEL RESET & TEMEL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a5e1a;
  --primary-dark: #0d3d0d;
  --primary-light: #2d8a2d;
  --gold: #c8a431;
  --gold-light: #e8c84a;
  --cream: #faf6eb;
  --brown: #5c3a1e;
  --brown-light: #8b5e3c;
  --text: #2c2c2c;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 94, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.navbar .logo .logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.navbar .logo span {
  font-family: 'Playfair Display', serif;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.nav-links a.active {
  background: rgba(200, 164, 49, 0.3);
  color: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3d0d 0%, #1a5e1a 40%, #2d6b2d 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="p" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M40 0 C50 20 60 30 80 40 C60 50 50 60 40 80 C30 60 20 50 0 40 C20 30 30 20 40 0z" fill="rgba(200,164,49,0.04)"/></pattern></defs><rect width="800" height="600" fill="url(%23p)"/></svg>');
  background-size: 160px;
  opacity: 0.5;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 100px 20px 60px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 164, 49, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 .gold {
  color: var(--gold-light);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTONLAR ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 164, 49, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

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

.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 94, 26, 0.3);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-item {
  padding: 20px;
}

.trust-item .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.trust-item h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== SECTION ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .badge {
  display: inline-block;
  background: rgba(26, 94, 26, 0.1);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-alt {
  background: var(--white);
}

/* ===== HAYVAN KARTLARI ===== */
.animals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.animal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.animal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.animal-card .card-img {
  position: relative;
  height: 240px;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.animal-card .card-img .placeholder-icon {
  font-size: 5rem;
  opacity: 0.4;
}

.animal-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-img.feature-img-logo {
  background: var(--white);
}

.feature-img.feature-img-logo img {
  object-fit: contain;
  padding: 30px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar .logo .logo-icon {
  background: var(--white);
  overflow: hidden;
  padding: 2px;
}

.navbar .logo .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.animal-card .card-img .badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.animal-card .card-img .badge-tag.reserved {
  background: #e74c3c;
}

.animal-card .card-body {
  padding: 22px;
}

.animal-card .card-body h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.animal-card .card-body .specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.animal-card .card-body .specs .spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.animal-card .card-body .specs .spec i {
  color: var(--primary);
  font-size: 0.85rem;
}

.animal-card .card-body .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.animal-card .card-body .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.9rem;
}

/* ===== BİLGİ KARTLARI ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.info-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.info-card p, .info-card ul {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

.info-card ul {
  padding-left: 0;
}

.info-card ul li {
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.info-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ===== FEATURE ROW ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img .placeholder-icon {
  font-size: 6rem;
  opacity: 0.3;
}

.feature-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.feature-text .check-list {
  margin-bottom: 20px;
}

.feature-text .check-list li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.feature-text .check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  background: var(--primary);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  top: 8px;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.stat-item p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item .ci-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(26, 94, 26, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 0.92rem;
  color: var(--text-light);
}

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

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--cream);
}

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

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ===== MAP ===== */
.map-container {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
  background: #ddd;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

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

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== WHATSAPP FLOATING ===== */
.instagram-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
  transition: var(--transition);
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

.instagram-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><pattern id="p" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M40 0 C50 20 60 30 80 40 C60 50 50 60 40 80 C30 60 20 50 0 40 C20 30 30 20 40 0z" fill="rgba(200,164,49,0.04)"/></pattern></defs><rect width="800" height="600" fill="url(%23p)"/></svg>');
  background-size: 160px;
  opacity: 0.5;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card .author .name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card .author .role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== KURBAN REHBERI ===== */
.guide-section {
  margin-bottom: 50px;
}

.guide-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.guide-card h4 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-card p, .guide-card ul {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

.guide-card ul li {
  padding: 3px 0 3px 18px;
  position: relative;
}

.guide-card ul li::before {
  content: '\25CF';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 7px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item .placeholder-icon {
  font-size: 4rem;
  opacity: 0.3;
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  padding: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-row { grid-template-columns: 1fr; gap: 30px; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }
  .hamburger { display: flex; }

  .navbar .logo span { font-size: 1.1rem; }
  .navbar .logo .logo-icon { width: 36px; height: 36px; font-size: 1.2rem; }

  .hero { min-height: 90vh; }
  .hero-content { padding: 90px 15px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-badge { font-size: 0.78rem; padding: 6px 18px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .section-header p { font-size: 0.92rem; }
  .page-header { padding: 120px 0 45px; }
  .page-header h1 { font-size: 1.8rem; }
  .page-header p { font-size: 0.95rem; }

  .trust-items { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .animals-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .guide-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .feature-img { height: 250px; }
  .feature-text h3 { font-size: 1.4rem; }

  .contact-form { padding: 24px 18px; }
  .contact-item { padding: 18px; }

  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }

  .map-container { height: 280px; }

  .instagram-float { width: 52px; height: 52px; bottom: 80px; right: 20px; }
  .instagram-float svg { width: 26px; height: 26px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .stat-item h3 { font-size: 2.2rem; }
  .stat-item p { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 0.9rem; }
  .trust-items { grid-template-columns: 1fr; }
  .container { padding: 0 15px; }
  .section { padding: 40px 0; }

  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .animal-card .card-body { padding: 18px; }
  .animal-card .card-body .specs { grid-template-columns: 1fr; gap: 4px; }
  .info-card { padding: 22px; }
  .guide-card { padding: 20px; }

  .footer { padding: 40px 0 20px; }
  .footer-grid { gap: 24px; }

  .navbar .logo span { font-size: 1rem; }
  .navbar .container { height: 65px; }
  .nav-links { top: 65px; }
  .page-header { padding: 100px 0 35px; }
}
