@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Anton&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Colors */
  --primary-blue: #192b4b;
  /* Deep sea */
  --secondary-blue: #063F7F;
  /* Middle depth */
  --accent-teal: #087595;
  /* Vibrant */
  --accent-light: #00A6A2;
  /* Highlight teal */
  --text-dark: #333333;
  --text-light: #f5f5f5;
  --bg-color: #ffffff;
  --bg-light-gray: #f4f4f4;

  /* Typography */
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 90px;
}

@media (max-width: 992px) {
  html {
    scroll-padding-top: 80px;
  }
}



body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

.caps {
  text-transform: uppercase;
  color: var(--primary-blue);
}

.subheading {
  font-size: 1.25rem;
  color: var(--secondary-blue);
  font-weight: 400;
  max-width: 85%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.spacer {
  height: 80px;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

/* Base layouts */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-light);
  color: white;
  border: 1px solid var(--accent-light);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--text-light);
  box-shadow: 0 0px 15px rgba(56, 235, 255, 0.9);
}

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

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--text-light);
}

/* Nav Bar */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-fast), padding var(--transition-fast);
  padding: 1.5rem 0;
}

header.scrolled {
  background: var(--primary-blue);
  background: color-mix(in srgb, var(--primary-blue), transparent 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Force solid header on pages without heroes */
.solid-header header {
  background: var(--primary-blue);
  padding: 1rem 0;
}

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

.logo img {
  height: 80px;
  max-width: 100%;
  transition: all var(--transition-fast);
}

.logo-scrolled {
  display: none;
}

header.scrolled .logo-landing {
  display: none;
}

header.scrolled .logo-scrolled {
  display: block;
  height: 80px;
  padding-bottom: 0.5em;
  /* Compact height for scrolled bar */
}

/* Home page - large logo when at top */
.home-page header:not(.scrolled) .logo img {
  height: 130px;
}

/* Home page - adjust initial header padding for large logo */
.home-page header:not(.scrolled) {
  padding: 1.5rem 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-right: 80px;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-light);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
}

/* Footers */
footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  flex: 0 0 50%;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: inherit;
  text-decoration: none;
}

.footer-logo img {
  height: 100px;
  border-radius:5px;
  flex-shrink: 0;
}

.footer-logo p {
  margin: 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

.footer-links {
  font-size: 0.9rem;
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-start;
  gap: 4rem;
  padding-left: 5em;
}

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

.link-col h4 {
  font-size: 1.2rem;
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #ccc;
}

.footer-bottom a {
  text-decoration: underline;
}

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

/* Floaters */
.floating-socials {
  position: fixed;
  top: 24px;
  right: 30px;
  z-index: 2000;
  /* Above header */
  display: flex;
  gap: 12px;
}

.fb-floater,
.wa-floater {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-fast);
}

.fb-floater {
  background: #1877F2;
}

.wa-floater {
  background: #25D366;
}

.fb-floater:hover,
.wa-floater:hover {
  transform: translateY(-3px) scale(0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fb-floater svg,
.wa-floater svg {
  width: 24px;
  height: 24px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: var(--accent-light);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-3px) scale(0.95);
  opacity: 0.8;
}

.recaptcha-notice {
  font-size: 0.8rem;
  color: #aaaaaa;
  margin-top: 1.5rem;
}

/* Hide reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  background: #fff;
  font-size: 0.9rem;
  color: #777;
}

.breadcrumbs a {
  color: var(--primary-blue);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Hero Defaults */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 120px;
  /* Space for the large landing logo */
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Hero Background Elements */
.hero-slider,
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  display: none;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

/* Toggle Switch: Add .use-video to <section class="hero"> to show video */
.hero.use-video .hero-slider {
  display: none;
}

.hero.use-video .hero-video {
  display: block;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -20px);
  }

  60% {
    transform: translate(-50%, -10px);
  }
}

/* CTA "Get Brochure" Section */
.cta-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  line-height: normal;
}

.cta-content p {
  font-size: 1.25rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
}

.form-control::placeholder {
  color: #aaa;
  opacity: 1;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row > * {
  flex: 1;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
  color: #aaa;
}

select.form-control option:not(:disabled) {
  color: var(--text-dark);
}

select.form-control:valid {
  color: var(--text-dark);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.checkbox-field-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}

.checkbox-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0rem;
}

@media (max-width: 768px) {
  .checkbox-options {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .checkbox-options {
    grid-template-columns: 1fr;
  }
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  border: 0px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #fff;
}

.checkbox-option:hover {
  border-color: var(--accent-light);
}

.checkbox-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent-light);
  flex-shrink: 0;
}

.checkbox-option:has(input:checked) {
  border-color: var(--accent-light);
  background: rgba(0, 166, 162, 0.06);
}

.checkbox-option-label {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-row .form-group {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row .form-group {
    margin-bottom: 1.5rem;
  }
  .form-row .form-group:last-child {
    margin-bottom: 0;
  }
}


/* Why Endless Section */
.why-endless {
  background: var(--bg-light-gray)
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--primary-blue);
  line-height: normal;
}

.section-header h3 {
  font-size: 2.2rem;
  color: var(--primary-blue);
}

.tabs-container {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}

.tab-image {
  flex: 0 0 50%;
  height: 450px;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.tab-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.tab-item {
  padding: 1.5rem;
  border-left: 4px solid #ddd;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-item h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-blue);
  transition: color var(--transition-fast);
}

.tab-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: all 0.4s ease;
}

.tab-item.active {
  border-left-color: var(--accent-light);
  background: white;
}

.tab-item.active h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.tab-item.active .tab-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.5rem;
}

.about-txt {
  max-width: 75%;
  margin: auto;
}

/* Products Grid 
.products-section {
   Uses default section padding for consistency 
}*/

.products-section {
  padding-bottom: 0px;
}

/*
.products-section h2 {
  color: white;
}

.products-section .section-header p {
  color: white;
}
*/

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.product-card {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  display: block;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background var(--transition-fast);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  color: white;
  z-index: 2;
}

.card-content h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: normal;
}

.card-content p {
  font-size: 1.1rem;
  transform: translateY(10px);
  opacity: 1;
  transition: all var(--transition-fast);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: white;
  z-index: 3;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 5px;
  background-color: var(--accent-light);
  transition: width var(--transition-slow);
  z-index: 4;
  /* Higher than ::before */
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover .overlay {
  background: rgba(0, 0, 0, 0.6);
}

.product-card:hover .card-content p {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover::after {
  width: 100%;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.bold-text {
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-white);
  color: var(--primary-blue);
}

.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem;
}

.gallery-album {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.album-overlay span {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-album:hover img {
  transform: scale(1.1);
}

.gallery-album:hover .album-overlay {
  background: rgba(0, 0, 0, 0.2);
}

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

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

  .gallery-img {
    flex: 0 0 auto;
    height: 200px;
  }
}

/* Carousel (used on subpages) */
.carousel-container {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
  padding: 0 70px;
  /* Space for buttons */
}

.carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  padding-bottom: 20px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.gallery-img {
  flex: 0 0 auto;
  height: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: center;
  border-radius: 0px;
  cursor: zoom-in;
  transition: filter var(--transition-fast);
}

.gallery-img:hover {
  filter: brightness(1.2);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  opacity: 0.5;
  color: var(--primary-blue);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: opacity var(--transition-fast);
}

.carousel-btn:hover {
  background-color: none;
  color: var(--primary-blue);
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 0px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  z-index: 2001;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-nav span:hover {
  color: var(--accent-light);
}

.lb-prev {
  left: 5%;
}

.lb-next {
  right: 5%;
}

/* Responsive */
@media (max-width: 992px) {
  .tabs-container {
    flex-direction: column;
  }

  .gallery-img {
    height: 250px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 260px;
    left: 0;
    width: 100%;
    margin: 0;
    height: auto;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    background: color-mix(in srgb, var(--primary-blue), transparent 20%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    transform: translateZ(0);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links a {
    font-size: 1rem;
  }

  header.scrolled .nav-links {
    top: 78px;
    background: color-mix(in srgb, var(--primary-blue), transparent 20%) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
  }

  /* Prevent filter conflicts when menu is open */
  header:has(.nav-links.active) {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 5%;
    z-index: 1001;
  }

  .floating-socials {
    right: auto;
    left: 5%;
    top: 23px;
    z-index: 2001;
  }

  .fb-floater,
  .wa-floater {
    width: 36px;
    height: 36px;
  }

  .fb-floater:hover,
  .wa-floater:hover {
    transform: scale(1.1);
    box-shadow: none;
  }

  /* Centered logo logic for all header states on mobile */
  .nav-container {
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 80px;
  }

  .logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  header.scrolled .nav-container {
    min-height: 70px;
  }

  header:not(.scrolled) .nav-container {
    padding-top: 1.5rem;
  }

  header.scrolled .logo img {
    height: 60px;
  }

  header:not(.scrolled) .logo img {
    height: 110px;
  }

  .scroll-down {
    bottom: 70px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .carousel-container {
    padding: 0 50px;
  }


  .cta-section {
    background-attachment: scroll;
    height: 500px;
  }

  .carousel-btn {
    transform: translateY(-60%) scale(1);
  }

  .prev-btn {
    left: 0px;
  }

  .next-btn {
    right: 0px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .footer-logo,
  .footer-links {
    flex: 0 0 100%;
    justify-content: center;
    padding-left: 0;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-logo a {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .link-col h4 {
    font-size: 1.4rem;
  }

  /* Responsive Utilities */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .tab-item {
    border-left: none !important;
    padding: 0 !important;
    background: transparent !important;
    cursor: default !important;
    margin-bottom: 3rem !important;
  }

  .mobile-tab-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .tab-item h3 {
    text-align: center;
    border-left: none;
    padding-left: 0;
    cursor: default;
    font-size: 2rem;
  }

  .tab-item p {
    text-align: center;
    padding-left: 0;
  }

  .tab-desc {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 0.5rem;
  }

  .about-txt {
    max-width: 100%;
  }

}