/* =============================================
   GOLDFISH HEART — Premium Stylesheet
   ============================================= */

:root {
  --navy: #060E1A;
  --navy-light: #0A1628;
  --navy-mid: #0F1F3A;
  --ocean: #1A56DB;
  --ocean-light: #3B82F6;
  --coral: #F43F5E;
  --gold: #F59E0B;
  --gold-light: #FBBF24;
  --gold-pale: #FEF3C7;
  --white: #FFFFFF;
  --gray-50: #F8FAFE;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -5px rgba(0,0,0,0.1), 0 8px 16px -6px rgba(0,0,0,0.05);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Assistant', 'Heebo', sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  line-height: 1.75;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body { direction: ltr; }

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

/* =============================================
   PARTICLES BACKGROUND
   ============================================= */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

.particle:nth-child(odd) {
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
}

.particle:nth-child(even) {
  background: radial-gradient(circle, var(--ocean-light) 0%, transparent 70%);
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(6, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.5);
  transition: var(--transition);
}

.nav.scrolled .nav-logo-img { width: 34px; height: 34px; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}

.mobile-lang-btn {
  margin-top: 20px;
  font-size: 1rem;
  padding: 12px 28px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26, 86, 219, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(244, 63, 94, 0.12) 0%, transparent 60%);
}

.hero-fish-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-fish {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: fishSwim linear infinite;
}

.fish1 { top: 15%; left: -5%; animation-duration: 18s; }
.fish2 { top: 35%; left: -5%; animation-duration: 22s; font-size: 2rem; }
.fish3 { top: 55%; left: -5%; animation-duration: 20s; font-size: 3rem; }
.fish4 { top: 70%; left: -5%; animation-duration: 24s; font-size: 1.8rem; }
.fish5 { top: 80%; left: -5%; animation-duration: 19s; font-size: 2.2rem; }

@keyframes fishSwim {
  0% { transform: translateX(-100px) translateY(0) scaleX(1); }
  25% { transform: translateX(25vw) translateY(-20px) scaleX(1); }
  50% { transform: translateX(50vw) translateY(10px) scaleX(1); }
  75% { transform: translateX(75vw) translateY(-15px) scaleX(1); }
  100% { transform: translateX(105vw) translateY(0) scaleX(1); }
}

html[lang="en"] .hero-fish {
  animation-direction: reverse;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  background: linear-gradient(135deg, #FFFFFF 0%, #FBBF24 40%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow {
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

html[lang="en"] .btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.7); }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ocean);
  margin-bottom: 16px;
  background: rgba(26, 86, 219, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-text {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.9;
}

/* =============================================
   MISSION
   ============================================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-image {
  position: relative;
}

.mission-img-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.mission-img-inner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mission-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold), var(--ocean), var(--coral));
  opacity: 0.15;
  z-index: -1;
  filter: blur(20px);
}

.mission-content .section-label { margin-bottom: 12px; }
.mission-content .section-title { margin-bottom: 20px; }
.mission-content .section-text { margin-bottom: 32px; }

.mission-stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.mini-stat {
  text-align: center;
}

.mini-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.mini-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* =============================================
   FISH GRID
   ============================================= */
.fish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.fish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-slow);
  border: 1px solid var(--gray-200);
}

.fish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-pale);
}

.fish-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-light);
}

.fish-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.fish-card:hover .fish-card-img {
  transform: scale(1.08);
}

.fish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(6, 14, 26, 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.fish-card:hover .fish-card-overlay { opacity: 1; }

.fish-card-body {
  padding: 24px;
}

.fish-card-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: #92400E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tag-premium {
  background: #FCE7F3;
  color: #9D174D;
}

.fish-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.fish-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fish-card-footer {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.fish-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--coral);
}

.fish-note {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* =============================================
   AQUARIUMS
   ============================================= */
.aquariums {
  background: var(--white);
}

.aq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.aq-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition-slow);
}

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

.aq-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
}

.aq-card-visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}

.aq-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.aq-card:hover .aq-card-visual img { transform: scale(1.05); }

.aq-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(6, 14, 26, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
}

html[lang="en"] .aq-card-badge {
  left: auto;
  right: 16px;
}

.aq-card-ribbon {
  position: absolute;
  top: 16px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 20px;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

html[lang="en"] .aq-card-ribbon {
  right: auto;
  left: -8px;
  border-radius: 0 4px 4px 0;
}

.aq-card-body {
  padding: 24px;
}

.aq-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.aq-features {
  list-style: none;
  margin-bottom: 20px;
}

.aq-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-500);
  position: relative;
  padding-right: 20px;
}

html[lang="en"] .aq-features li {
  padding-right: 0;
  padding-left: 20px;
}

.aq-features li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.8rem;
}

html[lang="en"] .aq-features li::before {
  right: auto;
  left: 0;
}

.aq-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.aq-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}

/* =============================================
   IMPACT
   ============================================= */
.impact {
  background: var(--navy);
  overflow: hidden;
}

.impact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(26, 86, 219, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.impact-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

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

.impact-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.impact-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
  opacity: 0.5;
}

html[lang="en"] .testimonial-card::before {
  right: auto;
  left: 28px;
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--coral));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-loc {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }
.contact-info .section-text { margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-700);
}

.contact-detail-icon {
  font-size: 1.2rem;
}

.contact-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  color: var(--gray-900);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.4);
}

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links-col h4,
.footer-social h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 5px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--gold-light);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

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

/* =============================================
   LANGUAGE TOGGLE
   ============================================= */
.lang-en { display: none; }
.lang-he { display: inline; }

html[lang="en"] .lang-en { display: inline; }
html[lang="en"] .lang-he { display: none; }

.lang-btn .lang-en { display: none; }
.lang-btn .lang-he { display: inline; }

html[lang="en"] .lang-btn .lang-en { display: inline; }
html[lang="en"] .lang-btn .lang-he { display: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-image { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { padding: 100px 0 60px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }

  .section { padding: 60px 0; }

  .fish-grid, .aq-grid, .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}