/* ============================================
   SEAWEED NUTRITIOUS FOOD G&J S A C
   Premium Corporate Website Styles
   ============================================ */

:root {
  --deep-blue: #0a2540;
  --deep-blue-light: #0d3a5c;
  --sea-green: #1a7a6d;
  --sea-green-light: #2a9d8f;
  --aqua: #48cae4;
  --aqua-light: #90e0ef;
  --white: #ffffff;
  --light-gray: #f4f7fa;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --dark: #051525;
  --gold: #c9a227;
  --gradient-ocean: linear-gradient(135deg, var(--deep-blue) 0%, var(--sea-green) 50%, var(--aqua) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 122, 109, 0.85) 100%);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-sm: 0 4px 20px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 8px 40px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.18);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--deep-blue);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Typography */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sea-green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}

.section-padding {
  padding: 100px 0;
}

.bg-light-section {
  background: var(--light-gray);
}

.bg-dark-section {
  background: var(--deep-blue);
  color: var(--white);
}

.bg-dark-section h2,
.bg-dark-section h3 {
  color: var(--white);
}

.bg-dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: var(--gradient-ocean);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26, 122, 109, 0.35);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 122, 109, 0.45);
  color: var(--white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--deep-blue);
  border-color: var(--white);
}

.btn-sea {
  background: var(--sea-green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: var(--transition);
}

.btn-sea:hover {
  background: var(--sea-green-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

/* Navbar */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-custom .brand-logo {
  width: 48px;
  height: 48px;
  background: var(--gradient-ocean);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}

.navbar-custom .brand-text {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}

.navbar-custom .brand-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 1px;
}

.navbar-custom .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--aqua);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  width: 60%;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--aqua) !important;
}

.navbar-toggler-custom {
  border: none;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.navbar-toggler-custom span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

.navbar-toggler-custom.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler-custom.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .navbar-collapse-custom {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--deep-blue);
    padding: 100px 2rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .navbar-collapse-custom.show {
    right: 0;
  }

  .navbar-collapse-custom .nav-link {
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--aqua-light);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--aqua), var(--aqua-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-item .number {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--aqua);
}

.hero-stat-item .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(72, 202, 228, 0.15);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-element:nth-child(1) { width: 80px; height: 80px; top: 20%; right: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { width: 120px; height: 120px; bottom: 25%; right: 20%; animation-delay: 2s; }
.floating-element:nth-child(3) { width: 60px; height: 60px; top: 40%; left: 5%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* About */
.about-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-ocean);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .years {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 12px;
  transition: var(--transition);
}

.about-feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.about-feature-item i {
  color: var(--sea-green);
  font-size: 1.25rem;
  margin-top: 3px;
}

/* Counters */
.counter-section {
  background: var(--gradient-ocean);
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  color: var(--white);
  padding: 1rem;
}

.counter-item .counter-number {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  display: block;
}

.counter-item .counter-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--sea-green);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-card-actions .btn-link-detail {
  color: var(--sea-green);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card-actions .btn-link-detail:hover {
  color: var(--deep-blue);
}

/* Why Choose Us */
.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--aqua-light);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(26, 122, 109, 0.1), rgba(72, 202, 228, 0.15));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--sea-green);
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--gradient-ocean);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* Manufacturing */
.manufacturing-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.manufacturing-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.manufacturing-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.manufacturing-list li:last-child {
  border-bottom: none;
}

.manufacturing-list .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-ocean);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* Industries */
.industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
}

.industry-card-overlay i {
  font-size: 2rem;
  color: var(--aqua);
  margin-bottom: 0.75rem;
}

.industry-card-overlay h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.industry-card-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* Global Export */
.export-map-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.export-region {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.export-region:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--aqua);
  transform: translateX(10px);
}

.export-region .flag-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-ocean);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.export-animation {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shipping-icon {
  font-size: 4rem;
  color: var(--aqua);
  animation: shipMove 4s ease-in-out infinite;
}

@keyframes shipMove {
  0%, 100% { transform: translateX(-20px); }
  50% { transform: translateX(20px); }
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--aqua);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--deep-blue);
}

.testimonial-author .role {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.swiper-pagination-bullet-active {
  background: var(--sea-green) !important;
}

/* FAQ */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep-blue);
  background: var(--white);
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  gap: 0.75rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.04), rgba(26, 122, 109, 0.06));
  color: var(--sea-green);
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(26, 122, 109, 0.12);
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a7a6d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .faq-icon {
  color: var(--sea-green);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.faq-accordion .accordion-body {
  padding: 0 1.5rem 1.25rem 3.35rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-accordion .accordion-body a {
  color: var(--sea-green);
  font-weight: 600;
}

.faq-accordion .accordion-body a:hover {
  color: var(--deep-blue);
}

.faq-cta a {
  color: var(--sea-green);
  font-weight: 600;
}

.faq-cta a:hover {
  color: var(--deep-blue);
}

@media (max-width: 575px) {
  .faq-accordion .accordion-button {
    font-size: 0.9rem;
    padding: 1rem 1.15rem;
  }

  .faq-accordion .accordion-body {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

/* Gallery – 3×3 grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 240px);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  min-height: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 21, 37, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Contact */
.contact-info-card {
  background: var(--gradient-ocean);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--sea-green);
  box-shadow: 0 0 0 4px rgba(26, 122, 109, 0.1);
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer h5 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--aqua);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--aqua);
  margin-top: 4px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 0.5rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--sea-green);
  transform: translateY(-3px);
}

.footer-newsletter input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50px 0 0 50px;
  padding: 12px 20px;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  border-radius: 0 50px 50px 0;
  padding: 12px 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.85rem;
}

.footer-bottom.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
}

.footer-copyright-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

.footer-copyright-text a {
  color: var(--aqua);
  font-weight: 500;
}

.footer-copyright-text a:hover {
  color: var(--white);
}

.footer-copyright-logo img {
  display: block;
  width: 120px;
  height: auto;
  opacity: 0.92;
  transition: var(--transition);
}

.footer-copyright-logo a:hover img {
  opacity: 1;
}

/* Floating buttons */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  z-index: 1040;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: var(--deep-blue);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--sea-green);
}

/* Modal */
.modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
}

.modal-header {
  background: var(--gradient-ocean);
  color: var(--white);
  border: none;
  padding: 1.5rem 2rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 2rem;
}

/* Page Header */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: var(--gradient-ocean);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80') center/cover;
  opacity: 0.15;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.breadcrumb-custom {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.breadcrumb-custom a,
.breadcrumb-custom span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.breadcrumb-custom a:hover {
  color: var(--aqua);
}

/* Product Detail Page */
.product-detail-hero {
  padding: 120px 0 60px;
  background: var(--light-gray);
}

.product-detail-gallery img {
  border-radius: 24px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.product-detail-info h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.product-specs {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs li strong {
  color: var(--deep-blue);
}

.related-products .product-card {
  margin-bottom: 1rem;
}

/* Team / About page extras */
.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.team-card .avatar {
  width: 100px;
  height: 100px;
  background: var(--gradient-ocean);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
  border-left: 2px solid var(--aqua-light);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--sea-green);
  border-radius: 50%;
}

/* Loading */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--deep-blue);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--aqua);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .about-image-wrap img { height: 350px; }
  .about-experience-badge { right: 10px; bottom: 10px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 200px);
  }
  .export-animation { height: 200px; margin-top: 2rem; }
}

@media (max-width: 767px) {
  :root { --navbar-height: 70px; }
  .hero-content { padding: 120px 0 80px; }
  .about-features { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary-custom,
  .hero-cta .btn-outline-custom { width: 100%; justify-content: center; }
  .counter-item { margin-bottom: 1rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 220px);
  }
  .footer-bottom.footer-copyright {
    flex-direction: column;
    text-align: center;
  }
  .footer-copyright-text {
    text-align: center;
  }
  .contact-info-card { margin-bottom: 2rem; }
  .product-card-image { height: 200px; }
  .whatsapp-float { bottom: 90px; right: 15px; width: 50px; height: 50px; font-size: 1.5rem; }
}

@media (max-width: 575px) {
  .about-experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    display: inline-block;
  }
}
