:root {
  --aqua-50: #e6f7fb;
  --aqua-100: #b3e5f4;
  --aqua-200: #80d4ed;
  --aqua-300: #4dc2e5;
  --aqua-400: #26b5e0;
  --aqua-500: #00a8cc;
  --aqua-600: #0095b7;
  --aqua-700: #007a96;
  --aqua-800: #005f75;
  --aqua-900: #004455;

  --orange-50: #fef5f0;
  --orange-100: #fde6da;
  --orange-200: #fab4a0;
  --orange-300: #f68866;
  --orange-400: #e9643f;
  --orange-500: #d65430;
  --orange-600: #c14a28;
  --orange-700: #a13d21;
  --orange-800: #81311a;
  --orange-900: #612514;

  --gray-50: #f8fafb;
  --gray-100: #f1f4f6;
  --gray-200: #e5e9ec;
  --gray-300: #d1d8dd;
  --gray-400: #9da7b0;
  --gray-500: #6b7785;
  --gray-600: #4a5564;
  --gray-700: #373f4a;
  --gray-800: #1f252c;
  --gray-900: #0d1117;

  --primary: var(--aqua-500);
  --primary-dark: var(--aqua-700);
  --primary-light: var(--aqua-300);
  --accent: var(--orange-500);
  --accent-dark: var(--orange-700);
  --accent-light: var(--orange-300);

  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);

  --bg-primary: #ffffff;
  --bg-secondary: var(--gray-50);
  --bg-tertiary: var(--gray-100);

  --border-light: var(--gray-200);
  --border-medium: var(--gray-300);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: translateX(2px);
}

.logo-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo-text {
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent);
}

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

.nav-link {
  padding: 10px 24px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover:not(.btn) {
  color: var(--primary);
  background: var(--aqua-50);
}

.nav-link.nav-cta {
  background: var(--accent);
  color: white;
  padding: 10px 24px;
}

.nav-link.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-link.btn-primary {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-md);
}

.nav-link.btn-primary:hover {
  color: white;
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 6px;
  transition: all var(--transition-base);
}

.mobile-toggle span:nth-child(1) {
  top: 10px;
}

.mobile-toggle span:nth-child(2) {
  top: 15px;
}

.mobile-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--aqua-50) 0%, var(--bg-primary) 50%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 168, 204, 0.15),
    rgba(0, 168, 204, 0.05)
  );
  animation: float 15s infinite ease-in-out;
  pointer-events: none;
}

.bubble-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-name: float1;
}

.bubble-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 0.2s;
  animation-name: float2;
}

.bubble-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 30%;
  animation-delay: 0.4s;
  animation-name: float3;
}

.bubble-4 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 30%;
  animation-delay: 0.6s;
  animation-name: float1;
}

.bubble-5 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  right: 20%;
  animation-delay: 0.8s;
  animation-name: float2;
}

.bubble-6 {
  width: 70px;
  height: 70px;
  top: 10%;
  left: 50%;
  animation-delay: 1s;
  animation-name: float3;
}

.bubble-7 {
  width: 50px;
  height: 50px;
  top: 70%;
  left: 15%;
  animation-delay: 1.2s;
  animation-name: float1;
}

.bubble-8 {
  width: 90px;
  height: 90px;
  bottom: 40%;
  right: 40%;
  animation-delay: 1.4s;
  animation-name: float2;
}

.bubble-9 {
  width: 35px;
  height: 35px;
  top: 30%;
  left: 20%;
  animation-delay: 1.6s;
  animation-name: float3;
}

.bubble-10 {
  width: 110px;
  height: 110px;
  bottom: 10%;
  left: 60%;
  animation-delay: 1.8s;
  animation-name: float1;
}

.bubble-11 {
  width: 55px;
  height: 55px;
  top: 50%;
  right: 15%;
  animation-delay: 2s;
  animation-name: float2;
}

.bubble-12 {
  width: 75px;
  height: 75px;
  bottom: 50%;
  left: 40%;
  animation-delay: 2.2s;
  animation-name: float3;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) translateX(15px) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translateY(20px) translateX(-20px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) translateX(10px) scale(1.05) rotate(270deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
  33% {
    transform: translateY(25px) translateX(-15px) scale(0.95) rotate(120deg);
  }
  66% {
    transform: translateY(-25px) translateX(20px) scale(1.08) rotate(240deg);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  20% {
    transform: translateY(-20px) translateX(25px) scale(1.15);
  }
  40% {
    transform: translateY(15px) translateX(-10px) scale(0.85);
  }
  60% {
    transform: translateY(-10px) translateX(-25px) scale(1.12);
  }
  80% {
    transform: translateY(30px) translateX(15px) scale(0.92);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--aqua-100);
  color: var(--aqua-700);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 84, 48, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 204, 0.3);
}

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Aquarium Visual */
.hero-image-wrapper {
  position: relative;
}

.aquarium-visual {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.aquarium-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 168, 204, 0.2);
}

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

.image-credit {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.aquarium-image:hover .image-credit {
  opacity: 1;
}

.image-credit a {
  color: var(--aqua-200);
  text-decoration: none;
}

.image-credit a:hover {
  text-decoration: underline;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--orange-100);
  color: var(--orange-700);
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-primary);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.service-card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--aqua-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-base);
}

.service-link:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: 60px;
  padding: 20px 0;
}

.services-cta p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Process Section */
.process {
  padding: 100px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--aqua-200), var(--orange-200));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.process-step:nth-child(even) .step-number {
  border-color: var(--accent);
  color: var(--accent);
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.testimonial {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonial p {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.badge-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
}

.badge-item strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.badge-item span {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-phone {
  font-size: 1.125rem;
}

.cta-phone a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.cta-phone a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-primary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 60px;
}

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

.info-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--radius-lg);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.info-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.info-item a:hover {
  text-decoration: underline;
}

.info-item p {
  color: var(--text-primary);
}

/* FAQ */
.faq-item {
  margin-bottom: 16px;
}

.faq-item summary {
  padding: 16px;
  background: white;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-base);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary);
  transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item[open] summary {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.faq-item p {
  padding: 16px;
  background: white;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-base);
  font-family: inherit;
}

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

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

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 60px;
  background: var(--bg-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  color: var(--text-primary);
  margin-bottom: 8px;
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.back-link {
  margin-top: 48px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 60px 0 24px;
  background: var(--gray-800);
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: white;
}

.footer-brand .logo-icon {
  color: var(--aqua-300);
}

.footer-brand .logo-accent {
  color: var(--accent);
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  text-align: right;
}

.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--aqua-300);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 0;
  transition: all var(--transition-base);
}

.footer-column a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-legal a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
  }

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

  .mobile-toggle {
    display: block;
  }

  .nav-link {
    padding: 12px 24px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .nav-link.btn-primary {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-md);
  }

  /* Icon next to text on mobile */
  .service-card {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 8px 16px !important;
    text-align: left !important;
  }

  .service-icon {
    grid-row: 1 / 3 !important;
    align-self: start !important;
  }

  .service-card h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
  }

  .service-card p {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
  }

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

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

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

  .contact-form {
    padding: 24px;
  }

  .form-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  /* Reorder hero content on mobile */
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }

  .hero-text {
    display: contents;
  }

  .hero-badge {
    order: 1;
    margin: 0;
  }

  .hero-title {
    order: 2;
    margin: 0;
  }

  .hero-image {
    order: 3;
    margin: 0;
  }

  .hero-description {
    order: 4;
    margin: 0;
  }

  .hero-actions {
    order: 5;
    margin: 0;
  }

  .hero-stats {
    order: 6;
  }

  /* Tighter spacing for info cards on mobile */
  .info-card {
    padding: 16px;
  }

  .info-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
  }

  .info-item {
    margin-bottom: 8px;
    gap: 12px;
  }

  .info-item span {
    margin-bottom: 2px;
    font-size: 0.8rem;
  }

  .info-item p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  /* Smaller bubbles on mobile */
  .bubble-2 {
    width: 70px;
    height: 70px;
  }
  .bubble-4 {
    width: 60px;
    height: 60px;
  }
  .bubble-6 {
    width: 50px;
    height: 50px;
  }
  .bubble-8 {
    width: 55px;
    height: 55px;
  }
  .bubble-10 {
    width: 65px;
    height: 65px;
  }
  .bubble-12 {
    width: 50px;
    height: 50px;
  }
}

/* Animation Classes */
.service-card,
.process-step,
.testimonial,
.badge-item,
.info-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

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

.hero-text > * {
  animation: fadeInUp 0.8s ease backwards;
}

.hero-badge {
  animation-delay: 0.1s;
}
.hero-title {
  animation-delay: 0.2s;
}
.hero-description {
  animation-delay: 0.3s;
}
.hero-actions {
  animation-delay: 0.4s;
}
.hero-stats {
  animation-delay: 0.5s;
}

.hero-image {
  animation: fadeInUp 0.8s ease 0.35s backwards;
}

.aquarium-glass {
  animation: fadeIn 1s ease 0.6s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
