:root {
  --caribbean-current: #006466ff;
  --midnight-green: #065a60ff;
  --midnight-green-2: #0b525bff;
  --midnight-green-3: #144552ff;
  --charcoal: #1b3a4bff;
  --prussian-blue: #212f45ff;
  --space-cadet: #272640ff;
  --dark-purple: #312244ff;
  --dark-purple-2: #3e1f47ff;
  --palatinate: #4d194dff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    to right,
    var(--midnight-green-2),
    var(--prussian-blue)
  );
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.5rem;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--caribbean-current);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--caribbean-current);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Sections */
section {
  min-height: 100vh;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23006466;stop-opacity:0.3'/%3E%3Cstop offset='100%25' style='stop-color:%234d194d;stop-opacity:0.3'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grad)'/%3E%3C/svg%3E"),
    url("../assets/patterns.svg#heroPattern");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 100, 102, 0.8) /* caribbean-current */,
    rgba(33, 47, 69, 0.9) /* prussian-blue */
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

.company-name {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #fff;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(
    to right,
    var(--caribbean-current),
    var(--midnight-green)
  );
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: linear-gradient(
    to right,
    var(--midnight-green),
    var(--caribbean-current)
  );
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      rgba(11, 82, 91, 0.95),
      rgba(33, 47, 69, 0.98)
    ),
    url("../assets/patterns.svg#aboutPattern");
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 82, 91, 0.9),
    rgba(33, 47, 69, 0.95)
  );
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-card {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  padding: 3.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 32px rgba(255, 255, 255, 0.05);
  animation: slideInFromRight 1s ease forwards;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 100, 102, 0.2),
    inset 0 0 32px rgba(255, 255, 255, 0.1);
  border-color: var(--caribbean-current);
}

.about-card__icon {
  position: absolute;
  top: -40px;
  left: 30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tech-icon {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.about-card__title {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #fff, var(--caribbean-current));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.about-card__divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--caribbean-current), transparent);
  margin: 2rem 0;
}

.about-card__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.about-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, var(--caribbean-current));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-card__expertise {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 1.3s;
}

.about-card__expertise h3 {
  color: var(--caribbean-current);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.expertise-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.expertise-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--caribbean-current);
  transition: transform 0.3s ease;
}

.expertise-list li:hover {
  color: #fff;
  transform: translateX(5px);
}

.expertise-list li:hover::before {
  transform: translateX(5px);
  color: #fff;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--midnight-green-2),
    var(--prussian-blue)
  );
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fff, var(--caribbean-current));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 1rem;
  max-width: 1600px;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--caribbean-current);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-icon-circle {
  fill: none;
  stroke: var(--caribbean-current);
  stroke-width: 2;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.6s ease;
}

.service-icon-symbol {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.8;
}

.service-card:hover .service-icon-circle {
  stroke-dashoffset: 0;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--caribbean-current);
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.service-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--caribbean-current);
}

.service-cta {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(
    90deg,
    var(--caribbean-current),
    var(--midnight-green)
  );
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.service-cta:hover {
  transform: translateX(5px);
  background: linear-gradient(
    90deg,
    var(--midnight-green),
    var(--caribbean-current)
  );
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--midnight-green-2),
    var(--prussian-blue)
  );
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.contact .section-title {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #fff, var(--caribbean-current));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border-radius: 1.2rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(30px);
  opacity: 0;
  animation: contactFadeIn 0.8s ease forwards;
}

.contact-card:hover {
  border-color: var(--caribbean-current);
  box-shadow: 0 8px 32px rgba(0, 100, 102, 0.2);
}

.contact .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact textarea {
  min-height: 150px;
  resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: var(--palatinate);
  box-shadow: 0 0 0 3px rgba(77, 25, 77, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.contact .focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--caribbean-current);
  transition: width 0.3s ease;
}

.contact input:focus ~ .focus-border,
.contact textarea:focus ~ .focus-border {
  width: 100%;
}

.contact .submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    45deg,
    var(--caribbean-current),
    var(--palatinate)
  );
  border: none;
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 100, 102, 0.3);
  background: linear-gradient(
    45deg,
    var(--palatinate),
    var(--caribbean-current)
  );
}

.contact .send-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact .submit-button:hover .send-icon {
  transform: translateX(5px);
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials Section */
.testimonials {
  position: relative;
  min-height: 100vh;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--midnight-green-2),
    var(--prussian-blue)
  );
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 82, 91, 0.9),
    rgba(33, 47, 69, 0.95)
  );
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 1.2rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--caribbean-current);
  box-shadow: 0 15px 45px rgba(0, 100, 102, 0.2);
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: var(--caribbean-current);
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 50px;
  height: 50px;
}

.author-info h4 {
  color: var(--caribbean-current);
  margin-bottom: 0.5rem;
}

.author-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.testimonials-wrapper {
  position: relative;
  height: 70vh;
  margin-top: 2rem;
}

.testimonial-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 1.2rem;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  animation: float var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.bubble-lg {
  width: 400px;
  top: 10%;
  left: 5%;
}

.bubble-md {
  width: 350px;
  top: 30%;
  right: 10%;
}

.bubble-sm {
  width: 300px;
  bottom: 15%;
  left: 20%;
}

.testimonial-bubble:hover {
  transform: scale(1.05);
  border-color: var(--caribbean-current);
  box-shadow: 0 15px 45px rgba(0, 100, 102, 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--caribbean-current);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Contact Info Cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: contactInfoFadeIn 0.6s ease forwards;
  animation-delay: var(--delay);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--caribbean-current);
  box-shadow: 0 8px 32px rgba(0, 100, 102, 0.2);
}

.info-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.info-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
  background: linear-gradient(90deg, #fff, var(--caribbean-current));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  color: var(--caribbean-current);
  animation: floatIcon 3s ease-in-out infinite;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  transform: scale(1.1);
  opacity: 1;
  color: #fff;
}

@keyframes contactInfoFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .about-card {
    padding: 2rem;
    margin: 1rem;
  }

  .about-card__title {
    font-size: 2.2rem;
  }

  .about-card__stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .expertise-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .expertise-list li {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .testimonials-wrapper {
    height: auto;
  }

  .testimonial-bubble {
    position: static;
    margin: 2rem auto;
    animation: none;
  }

  .contact-card {
    padding: 2rem;
    margin: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card {
    padding: 2rem;
    margin: 1rem;
  }

  .contact .section-title {
    font-size: 2.2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }
}

/* Modern Footer Styles */
.footer {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--midnight-green-2),
    var(--prussian-blue)
  );
  padding: 80px 0 30px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1.2rem;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.footer-content:hover {
  border-color: var(--midnight-green);
  box-shadow: 0 8px 32px rgba(0, 100, 102, 0.2);
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--caribbean-current);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: var(--caribbean-current);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  color: var(--caribbean-current);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: floatIcon 3s ease-in-out infinite;
}

.social-icon:hover {
  color: #fff;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer-social {
    margin-top: 1rem;
  }
}
