/**
* Madura Aquatic Flowerhorn - Premium Flowerhorn Fish Sales
* Complete CSS File - Enhanced with Animations & Gallery Effects
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Cinzel", serif;
}

/* Global Colors */
:root {
  --background-color: #040b14;
  --surface-color: #091522;
  --default-color: #d7e8f5;
  --heading-color: #ffffff;
  --accent-color: #00d4ff;
  --gold-color: #ffd700;
  --orange-color: #ff6b35;
  --red-color: #ff3b3b;
}

/* Nav Menu Colors */
:root {
  --nav-color: #e4edf5;
  --nav-hover-color: #00d4ff;
  --nav-mobile-background-color: #0a1622;
  --nav-dropdown-background-color: #0a1622;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background: radial-gradient(circle at top right, rgba(0, 216, 255, 0.15), transparent 30%),
              radial-gradient(circle at bottom left, rgba(255, 107, 53, 0.12), transparent 30%),
              var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--background-color);
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 25px;
  bottom: 105px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #008cff);
  transition: all 0.4s;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.45);
  cursor: pointer;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(4, 11, 20, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.3s ease;
  padding: 8px 0;
}

.header.scrolled {
  background: rgba(3, 8, 15, 0.98);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.custom-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 75px;
}

/* Logo - Larger without increasing navbar height */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.brand-text h2 {
  color: #fff;
  font-size: 22px;
  margin: 0;
  font-weight: 800;
  font-family: var(--heading-font);
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text span {
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Desktop Navigation */
.navmenu ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.navmenu ul li a:hover::after {
  width: 100%;
}

.navmenu ul li a:hover {
  color: var(--accent-color);
}

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.nav-whatsapp:hover {
  transform: scale(1.05);
  background: #20b859;
  color: #fff;
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 1;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(145deg, #0a1622, #050b14);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    padding: 100px 30px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(0, 212, 255, 0.2);
    overflow-y: auto;
  }
  
  .mobile-nav-active .navmenu {
    right: 0;
  }
  
  .navmenu ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .navmenu ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }
  
  .navmenu ul li a::after {
    display: none;
  }
  
  .navmenu ul li a:hover {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-color);
    padding-left: 25px;
  }
  
  .mobile-nav-active::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9997;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-whatsapp {
    display: none;
  }
  
  .brand-text h2 {
    font-size: 14px;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
  }
  
  .custom-navbar {
    padding: 0 20px;
    min-height: 65px;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  padding: 80px 0;
  scroll-margin-top: 80px;
}

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

.section-title .description-title {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.section-title p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  section, .section {
    padding: 60px 0;
    scroll-margin-top: 70px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Hero Section with Animation
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  position: relative;
  padding-top: 140px;
  display: flex;
  align-items: center;
}

.hero .title {
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 0px rgba(0, 212, 255, 0); }
  50% { text-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
}

.hero .highlight {
  color: var(--gold-color) !important;
}

.hero .description p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 30px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--orange-color), var(--red-color));
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  border: none;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.primary-btn:hover::before {
  width: 300px;
  height: 300px;
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
  color: #fff;
}

.secondary-btn {
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.secondary-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.hero-badge:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.hero-badge strong {
  display: block;
  color: var(--accent-color);
}

.hero-badge span {
  font-size: 12px;
}

.hero-visual .image-wrapper {
  border-radius: 30px;
  border: 1px solid rgba(0, 216, 255, 0.25);
  box-shadow: 0 0 40px rgba(0, 216, 255, 0.15);
  overflow: hidden;
}

.hero-visual .main-image {
  width: 100%;
  transition: 0.6s;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.image-wrapper:hover .main-image {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .hero .title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero .title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 20px;
  width: 100%;
  animation: floatImage 5s ease-in-out infinite;
}

.tag-badge {
  display: inline-block;
  background: rgba(0, 216, 255, 0.15);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 50px;
  transition: 0.3s;
  animation: slideInLeft 0.5s ease backwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.value-item:hover {
  background: rgba(0, 212, 255, 0.15);
  transform: translateX(5px);
}

.value-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.value-icon i {
  color: #040b14;
  font-size: 14px;
}

.value-text {
  font-weight: 500;
}

@media (max-width: 991px) {
  .about-content {
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .values-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

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

.stats-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stats-item .icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.stats-item:hover .icon-wrapper {
  transform: scale(1.1);
  background: rgba(0, 212, 255, 0.25);
}

.stats-item .icon-wrapper i {
  font-size: 32px;
  color: var(--accent-color);
}

.stats-item span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.stats-item p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Fish Cards / Services Section
--------------------------------------------------------------*/
.fish-card .service-card-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  animation: fadeInUp 0.6s ease backwards;
}

.fish-card .service-card-inner:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.fish-image-wrap {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
}

.fish-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s ease;
}

.fish-card:hover .fish-image {
  transform: scale(1.1) rotate(2deg);
}

.fish-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price {
  color: var(--gold-color);
  font-size: 22px;
  font-weight: 700;
  animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
  0%, 100% { text-shadow: 0 0 0px rgba(255, 215, 0, 0); }
  50% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
}

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

.link-arrow {
  color: var(--accent-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Gallery / Portfolio Section with Enhanced Animation
--------------------------------------------------------------*/
.portfolio-wrap {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  animation: fadeInScale 0.6s ease backwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.portfolio-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s ease;
}

.portfolio-wrap:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  transform: translateY(100%);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-wrap:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info .category {
  color: var(--accent-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio-info h4 {
  font-size: 1.2rem;
  margin: 5px 0 0;
  color: #fff;
}

/* Gallery Lightbox Link */
.glightbox-link {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  z-index: 10;
}

.portfolio-wrap:hover .glightbox-link {
  opacity: 1;
  transform: scale(1.1);
}

.glightbox-link:hover {
  transform: scale(1.2);
  background: #fff;
  color: var(--accent-color);
}

/* Gallery Filters */
.filters-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
}

.portfolio-filters {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-filters li {
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
  margin-bottom: 5px;
  color: var(--text-muted, #b0c4de);
}

.portfolio-filters li:hover {
  background: rgba(0, 212, 255, 0.2);
  color: var(--accent-color);
  transform: translateX(5px);
}

.portfolio-filters li.filter-active {
  background: rgba(0, 212, 255, 0.25);
  color: var(--accent-color);
  border-left: 3px solid var(--accent-color);
}

@media (max-width: 991px) {
  .portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .portfolio-filters li {
    margin-bottom: 0;
  }
  
  .portfolio-filters li:hover {
    transform: translateY(-2px);
  }
}

/*--------------------------------------------------------------
# Videos Section
--------------------------------------------------------------*/
.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
  animation: fadeInUp 0.6s ease backwards;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.video-card video {
  width: 100%;
  border-radius: 15px;
}

.video-meta h3 {
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  animation: fadeInUp 0.6s ease backwards;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.why-card:hover .why-icon {
  background: rgba(0, 212, 255, 0.3);
  transform: scale(1.1);
}

.why-icon i {
  font-size: 36px;
  color: var(--accent-color);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeInUp 0.6s ease backwards;
}

.contact-info-panel {
  background: linear-gradient(145deg, var(--accent-color), #008cff);
  padding: 40px;
  height: 100%;
}

.contact-info-panel h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.info-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: 0.3s;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.icon-container {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container i {
  font-size: 20px;
  color: #fff;
}

.card-content h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}

.card-content p {
  margin: 0;
}

.social-links-panel {
  margin-top: 30px;
}

.social-links-panel h5 {
  color: #fff;
  margin-bottom: 15px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.1);
}

.form-container {
  padding: 40px;
}

.form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-floating {
  margin-bottom: 20px;
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 12px 15px;
  height: auto;
  transition: 0.3s;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  color: #fff;
  transform: scale(1.01);
}

.form-floating label {
  color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--orange-color), var(--red-color));
  color: #fff;
  border: none;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  margin-top: 12px;
}

.btn-whatsapp:hover {
  background: #20b859;
}

@media (max-width: 768px) {
  .contact-info-panel,
  .form-container {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #02070f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer .logo {
  margin-bottom: 20px;
}

.footer .sitename {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-about p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/*--------------------------------------------------------------
# WhatsApp Float Button
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  z-index: 9999;
  transition: 0.3s;
  animation: whatsappPulse 2s infinite;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  color: #fff;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/*--------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #02070f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-color), var(--orange-color));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--orange-color), var(--accent-color));
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Additional Animation Keyframes
--------------------------------------------------------------*/
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Loading shimmer effect for images */
.fish-image {
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.fish-image.loaded {
  animation: none;
}