:root {
  /* Sustainable Seafood Theme - 5 Primary Colors + Shades */
  --primary-ocean: #2c598f;
  --primary-seafoam: #4e947f;
  --primary-coral: #ef9f6c;
  --primary-pearl: #dae4ec;
  --primary-kelp: #224c5b;
  
  /* Light/Dark Shades */
  --ocean-light: #5892b9;
  --ocean-dark: #253854;
  --seafoam-light: #68a497;
  --seafoam-dark: #2c797a;
  --coral-light: #eb967c;
  --coral-dark: #e5722c;
  --pearl-light: #f8f9fa;
  --pearl-dark: #ced5da;
  --kelp-light: #38574f;
  --kelp-dark: #26493e;
}

/* Typography - Conservative Font Sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--kelp-dark);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ocean-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--kelp-dark);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--ocean-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--kelp-dark);
}

p {
  font-size: 1rem;
  color: var(--kelp-light);
  margin-bottom: 1rem;
}

.subtitle {
  color: var(--seafoam-dark);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--pearl-light) 0%, var(--seafoam-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative {
  position: absolute;
  background: var(--coral-light);
  opacity: 0.1;
  border-radius: 50%;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

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

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  margin-bottom: 2rem;
}

/* Cards */
.custom-card {
  border: none;
  box-shadow: 0 4px 12px rgba(39, 87, 94, 0.10);
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(31, 64, 85, 0.15);
}

.card-header-custom {
  background: var(--seafoam-light);
  color: white;
  border: none;
  padding: 1.5rem;
}

.price-tag {
  background: var(--coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

/* Services Grid */
.services-grid {
  gap: 2rem;
}

/* Team Cards */
.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reviews */
.review-card {
  background: var(--pearl-light);
  border-left: 4px solid var(--seafoam);
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--pearl-dark);
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--seafoam-light);
  color: white;
  margin: 0;
  padding: 1rem;
}

.faq-answer {
  padding: 1rem;
  background: white;
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--pearl-light);
  padding: 2rem;
  border-radius: 12px;
}

.form-control {
  border: 2px solid var(--pearl-dark);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--seafoam);
  box-shadow: 0 0 0 0.2rem rgba(84, 179, 151, 0.25);
}

.btn-primary {
  background-color: var(--ocean);
  border-color: var(--ocean);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--ocean-dark);
  border-color: var(--ocean-dark);
}

.btn-secondary {
  background-color: var(--coral);
  border-color: var(--coral);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--coral-dark);
  border-color: var(--coral-dark);
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--kelp-dark);
  font-weight: 500;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--seafoam-dark);
}

/* Footer */
.footer {
  background: var(--kelp-dark);
  color: var(--pearl-light);
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--seafoam-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--pearl-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--seafoam-light);
}

/* Gallery */
.gallery-grid {
  gap: 1rem;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Blog */
#blog_grid {
  gap: 2rem;
}

.blog-card {
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-blob-1,
  .hero-blob-2 {
    animation: none;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utilities */
.text-ocean { color: var(--ocean); }
.text-seafoam { color: var(--seafoam); }
.text-coral { color: var(--coral); }
.text-kelp { color: var(--kelp); }

.bg-ocean { background-color: var(--ocean); }
.bg-seafoam { background-color: var(--seafoam); }
.bg-coral { background-color: var(--coral); }
.bg-pearl { background-color: var(--pearl); }
.bg-kelp { background-color: var(--kelp); } 

.hero-section h1 {
    padding-top: 250px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
