﻿/* ===================================
   OMAHA MARINE CENTER - MAIN STYLESHEET
   ===================================

   TABLE OF CONTENTS:

   1. BASE STYLES
      - Reset & Box Model
      - Font Declarations (@font-face)
      - CSS Variables (:root)
      - Common Elements (a, p, ul, etc.)

   2. UTILITY CLASSES
      - Buttons (.blue-btn, .darkblue-btn)
      - Spacing (.mb-40, .mt-30, .py-120, etc.)
      - Borders (.border-bottom)

   3. TYPOGRAPHY
      - Headings (h1-h6)
      - Text Classes

   4. NAVIGATION (DESKTOP)
      - Main Header (.main-header)
      - Navbar (.navbar-main, .navbar-container)
      - Navigation Links (.nav-left, .nav-right)
      - Logo (.nav-logo)
      - Resources Button (.nav-resources-btn)
      - Mobile Toggle (.mobile-menu-toggle)

   5. MEGA MENUS (DESKTOP)
      - Mega Menu Container (.mega-menu)
      - Mega Menu Cards (.mega-menu-card)
      - Mega Menu Lists

   6. RESOURCES SIDEBAR (DESKTOP)
      - Sidebar Container (.resources-sidebar)
      - Sidebar Content

   7. MOBILE NAVIGATION
      - Mobile Nav Wrapper (.mobile-nav-wrapper)
      - Mobile Nav Panels (.mobile-nav-panel)
      - Mobile Nav Header
      - Mobile Nav Content
      - Mobile Nav Lists
      - Mobile Brand Grid
      - Back Button (.mobile-nav-back)

   8. PAGE-SPECIFIC SECTIONS
      - Hero Banners
      - About Page
      - Boat Videos Page
      - Flite Boards Page
      - Kayaks Page
      - Ski Shop Page
      - Ski Tuning Page
      - Ski Snowboard Page (Völkl & RIDE)
      - Seawall Pages
      - Trade/Consign Pages
      - Contact Forms

   9. COMPONENTS
      - Carousels (Owl Carousel, Slick)
      - Cards (Product Cards, Video Cards)
      - Testimonials
      - Brand Logos
      - Galleries
      - Tables (Pricing Tables)

   10. FOOTER
       - Footer Sections
       - Footer Accordion

   11. OVERLAY & MODALS
       - Menu Overlay

   12. RESPONSIVE BREAKPOINTS
       - Tablet (max-width: 991px)
       - Mobile (max-width: 767px)
       - Small Mobile (max-width: 576px)

=================================== */

/* ===================================
   1. BASE STYLES
   =================================== */

   @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');;

/* Reset & Box Model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: "Montserrat", sans-serif;
}

/* Font Declarations - Segoe UI Font Family */

@font-face {
   font-family: "Archivo_Expanded";
  src: url("/assets/fonts/Archivo_Expanded/Archivo_Expanded-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("/assets/fonts/segoe-ui/segoeuithis.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("/assets/fonts/segoe-ui/segoeuithisi.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Segoe UI";
  src: url("/assets/fonts/segoe-ui/segoeuithibd.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Segoe UI";
  src: url("/assets/fonts/segoe-ui/segoeuithisz.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

.segeo-regular {
  font-family: "Segoe UI";
  font-weight: 400;
  font-style: normal;
}

/* CSS Variables - Color Palette & Fonts */
:root {
  --black-color: #1D1D1D;
  --white-color: #fff;
  --Light-Blue: #b4e3f6;
  --Back-Blue: #1D1D1D;
  --Blue1: #0d3d64;
  --Navy-Blue: #0e233a;
  --font-family-Body: "Jost";
  --dark-golden: #806930;
}

/* Common Elements - Links, Paragraphs, Lists, Containers */

a {
  text-decoration: none;
}
.row {
  margin: 0;
}
a:hover {
  text-decoration: none;
  color:  #1D1D1D;
}

.container-fluid {
  max-width: 90% !important;
  width: 100%;
}

p {
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

ul {
  margin-bottom: 0;
}

/* ===================================
   2. UTILITY CLASSES
   =================================== */

/* Button Styles */
.blue-btn {
  display: inline-block;
  color: #fff;
  text-align: center;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 35px;
  background: var(--dark-golden);
  padding: 10px 30px;
}

.blue-btn:hover {
  background: var(--dark-golden);
  color: #fff;
}
.darkblue-btn {
  display: inline-block;
  color: #fff;
  text-align: center;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 35px;
  background: #121135;
  padding: 10px 30px;
}

.darkblue-btn:hover {
  background: #806930;
  color: #fff;
}

/* ===================================
   3. TYPOGRAPHY
   =================================== */

/* Heading Styles */
h1 {
   font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 88px;
}

h2 {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

h3 {
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
h4 {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

h5 {
   font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

/* Text & Paragraph Styles */
p span {
  color: #fff;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 4.8px;
  text-transform: uppercase;
}

/* ===================================
   8. PAGE-SPECIFIC SECTIONS
   =================================== */

/* Hero Banner Section with Sticky Scroll */
.hero-banner-wrapper {
  position: relative;
  width: 100%;
}

.hero-panel {
  /* position: sticky; */
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video,
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(19 20 57 / 60%);
  z-index: 1;
}

/* Blue overlay for first panel only */
.hero-panel-1 .hero-overlay {
  background: rgb(19 20 57 / 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white-color);
  max-width: 900px;
  padding: 0 20px;
}

/* Left-bottom alignment for panels 2 and 3 */
.hero-panel-2,
.hero-panel-3 {
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-panel-2 .hero-content,
.hero-panel-3 .hero-content {
  text-align: left;
  max-width: 900px;
  padding: 0 60px 60px;
  left: 8%;
  bottom: 10%;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}

.hero-tagline {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.hero-subtitle {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-heading {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 40px;
  text-transform: uppercase;
}


/* .hero-btn {
    padding: 16px 40px;
    display: inline-block;
    margin-top: 10px;
} */

/* Responsive Design */

/* ===================================
   4. NAVIGATION (DESKTOP)
   =================================== */

/* Navigation Header Styles */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #121135;
}

.navbar-main {
  background: #121135;
  padding: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto;
  height: 100px;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
}

.nav-left {
  flex: 1;
  gap: 5px;
}

.nav-right {
  flex: 1;
  justify-content: flex-end;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  margin: 0 40px;
  max-width: 90px;
  width: 100%;
}

.nav-logo img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* Navigation Links */
.nav-link {
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--white-color);
}

.nav-phone {
  color: var(--dark-golden);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-phone:hover {
  color: var(--dark-golden);
}

/* Resources & Mobile Menu Buttons */
.nav-resources-btn {
  background: transparent;
  border: none;
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-resources-btn:hover {
  color: var(--white-color);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hamburger-icon span {
  width: 18px;
  height: 2px;
  background: var(--white-color);
  transition: background 0.3s ease;
}

.nav-resources-btn:hover .hamburger-icon span {
  background: var(--white-color);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  transition: all 0.3s ease;
}

/* Mobile Phone Button */
.mobile-phone-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-phone-btn:hover {
  color: #806930;
}

/* ===================================
   5. MEGA MENUS (DESKTOP)
   =================================== */

/* Mega Menu Styles */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f5f5f5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px;
}

.mega-menu-title {
  color: #121135;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mega-menu-section-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

/* Mega Menu Lists */
.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 12px;
}

.mega-menu-list a {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mega-menu-list a:hover {
  color: #806930;
}

/* Mega Menu Cards */
.mega-menu-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  height: 200px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mega-menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.mega-menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mega-menu-card:hover img {
  transform: scale(1.08);
}

.mega-menu-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.mega-menu-card:hover .mega-menu-card-overlay {
  background: linear-gradient(to top, rgba(77, 145, 213, 0.92) 0%, rgba(77, 145, 213, 0.6) 60%, rgba(77, 145, 213, 0));
  padding: 24px;
}

.mega-menu-card-overlay h4 {
  color: var(--white-color);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  transition: transform 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mega-menu-card:hover .mega-menu-card-overlay h4 {
  transform: translateY(-2px);
}

/* ===================================
   6. RESOURCES SIDEBAR (DESKTOP)
   =================================== */

/* Resources Sidebar */
.resources-sidebar {
  position: fixed;
  top: 100px;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #121135;
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.resources-sidebar.active {
  right: 0;
}

.resources-sidebar-header {
  padding: 20px;
  text-align: right;
}

.resources-close-btn {
  background: transparent;
  border: none;
  color: var(--white-color);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.resources-close-btn:hover {
  color: var(--white-color);
}

.resources-sidebar-content {
  padding: 40px;
}

.resources-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources-menu li {
  margin-bottom: 16px;
}
.resources-menu .first4mega a {
    color: var(--white-color);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 120% */
    text-transform: uppercase;
}

.resources-menu a {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.resources-menu li a:hover {
  color: var(--white-color);
}

/* ===================================
   11. OVERLAY & MODALS
   =================================== */

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===================================
   12. RESPONSIVE BREAKPOINTS
   =================================== */

/* Large Desktop - 1200px and below */

/* Tablet/Mobile - 991px and below */

/* Starting Line-Up Section (Brand Logos) */
.starting-lineup-section {
  padding: 60px 0px;
  background: var(--white-color);
}

.section-title {
  text-align: center;
  color: #121135;
  font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
}

.brand-logos-container {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item img {
  /* max-height: 50px; */
  width: auto;
  max-width: 180px;
  /* object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease; */
}

.brand-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Starting Line-Up */

/* Mobile - 767px and below */

/* Small Mobile - 576px and below */

/* Browse by Category Section (Homepage) */
.browse-category-section {
  padding: 80px 0;
  background: var(--white-color);
  overflow: hidden;
}

/* ===================================
   9. COMPONENTS
   =================================== */

/* Carousel Components */
.category-carousel {
  position: relative;
}

.category-slide {
  width: 100%;
}

.category-content {
  padding: 60px 40px 60px 80px;
  max-width: 80%;
  margin: 0 auto;
}

.category-subtitle {
  color: var(--dark-golden);
   font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 7.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.category-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.category-brands {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.category-description {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 15px;
}

.category-btn {
  margin-top: 20px;
  padding: 12px 35px;
}

.category-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Owl Carousel Dots */
.browse-category-section .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.browse-category-section .owl-dot {
  width: 15px;
  height: 3px;
  background: rgba(19, 20, 57, 0.3);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.browse-category-section .owl-dot.active {
  width: 30px;
  height: 3px;
  background: #121135;
  border-radius: 2px;
}

/* Browse category nav arrows */
.browse-category-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 15px;
}

.browse-category-section .owl-prev,
.browse-category-section .owl-next {
  pointer-events: all;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.85) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #121135 !important;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s ease;
  cursor: pointer;
}

.browse-category-section .owl-prev:hover,
.browse-category-section .owl-next:hover {
  background: rgba(255,255,255,1) !important;
}

/* Responsive Browse by Category */

/* Services Grid Section */
.services-grid-section {
  padding: 80px 0;
  background: var(--white-color);
}

.services-grid-section .container-fluid {
  width: 90%;
  margin: 0 auto;
}

.service-card {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  /* border-radius: 4px; */
}

.service-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.service-content {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
}

/* Proshop Trendy Card - Overlay from bottom to top */
.proshop-trendycard .service-content::before {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(
    to top,
    rgba(19, 20, 57, 0.9) 0%,
    rgba(19, 20, 57, 0.7) 30%,
    rgba(19, 20, 57, 0.4) 60%,
    rgba(19, 20, 57, 0) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.service-title {
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.service-subtitle {
  color: var(--white-color);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.9;
  margin-bottom: 0;
}

.service-card-link {
  display: block;
  text-decoration: none;
}

/* Responsive Services Grid */

/* Full Width Hero Slider Section */
.full-width-slider-section {
  width: 100%;
  position: relative;
}

.slider-image-wrapper {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 20, 57, 0.7); /* Dark blue transparent overlay */
  z-index: 1;
}

.slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 800px;
  z-index: 2;
  bottom: auto; /* Override Bootstrap default */
  padding-bottom: 0;
}

.slider-heading {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}

.field-error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}
.error_field {
    border: 1px solid red !important;
}

.iti {
  /* border: 1px solid #dedfe0; */
  width: 100%;
}

.slider-btn {
  background-color: #806930;
  color: var(--white-color);
  border: none;
  border-radius: 25px;
  padding: 12px 40px;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background-color: #121135;
  color: var(--white-color);
}

/* Custom Controls */
.custom-control {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-control:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Custom Indicators */
.custom-indicators {
  bottom: 30px;
}

.custom-indicators li {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  margin: 0 5px;
  border: none;
}

.custom-indicators .active {
  background-color: var(--white-color);
}

/* Responsive Slider */

/* OMC Values Section */
.omc-values-section {
  padding: 80px 0;
  background: var(--white-color);
  overflow: hidden;
}

.value-img-wrapper {
  /* height: 400px; */
  aspect-ratio: 1 / 1;
  margin-right: 10px !important;
}

.value-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-content {
  padding: 40px 60px;
  max-width: 80%;
  margin: 0 auto;
}
.values-content-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.values-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

.values-subtitle {
  color: var(--dark-golden);
   font-family: "Archivo_Expanded";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.values-badge-wrapper {
  flex-shrink: 0;
  margin-left: 20px;
}

.values-badge {
  width: 100px;
  height: auto;
}

.values-description {
  color: #555;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 25px;
  margin-top: 20px;
}

.values-hashtag {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

/* Responsive Values Section */

/* News & Events Section */
.news-events-section {
  padding: 80px 0;
  background: var(--white-color);
}

.info-card-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-card {
  position: relative;
  overflow: hidden;
  background: var(--white-color);
}

.info-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.info-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card-content {
  padding: 30px 0px;
  text-align: left;
}

.info-card-title {
  color: #121135;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
}

.info-card-description {
  color: #1D1D1D;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive News & Events */

/* Proshop Video Card - Perfect Video Iframe Alignment */
.proshop-vidcard .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.proshop-vidcard .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.proshop-vidcard .info-card-img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background:  #1D1D1D;
}

/* Responsive Proshop Video Cards */

/* ========================================
   PROSHOP CATEGORY GALLERY
========================================= */
.proshop-category-gallery {
  padding: 0;
  background: #fff;
}

.category-gallery-grid {
  display: flex;
  width: 100%;
  gap: 10px;
  overflow: hidden;
}

.category-gallery-item {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-top: 20%;
  cursor: pointer;
}

.category-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  transition: all 0.3s ease;
}

.category-gallery-item:hover .category-overlay {
  padding: 40px 20px;
}

.category-name {
  font-size: 24px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin: 0;
  text-align: left;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive Category Gallery */

/* ========================================
   SKI SHOP HERO BANNER
========================================= */
.skishop-hero {
  min-height: 600px;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.skishop-hero .seawall-hero-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.skishop-hero .hero-overlay {
  position: absolute;
  right: 0 !important;
  left: unset !important;
  top: 0 !important;
  width: 50%;
  height: 100%;
  background: rgb(19 20 57 / 80%);
  z-index: 1;
}

.skishop-hero .seawall-hero-content {
  position: relative;
  width: 50%;
  margin-left: 50%;
  padding: 80px 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.skishop-hero .trade-hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0.9;
}

.skishop-hero .seawall-hero-title {
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 114.286% */
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.skishop-hero p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.skishop-hero .blue-btn {
  align-self: flex-start;
}
.skishop-catagorycard .service-subtitle {
  color: #1d1d1d;
  padding: 10px 0;
}
.skishop-catagorycard .service-title {
  font-size: 24px;
  text-align: left;
}
.skishop-catagorycard .service-content {
  bottom: 20px;
}
/* Responsive Ski Shop Hero */

/* Ski Shop Brand Logos Section */
.skishop-brands-section {
  padding: 60px 0;
  background: #fff;
}

.skishop-brands-section .brands-logo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.skishop-brands-section .brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skishop-brands-section .brand-logo-img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

/* Responsive adjustments */

/* Ski Tuning Services Offered Section */
.ski-services-offered {
  background: #fff;
}

.ski-services-title {
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 50px;
}

.ski-services-grid {
  justify-content: center;
}

.ski-service-item {
  text-align: center;
  padding: 20px 10px;
}

.ski-service-icon {
  margin-bottom: 20px;
}

.ski-service-icon img {
  max-width: 80px;
  height: auto;
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(36%) sepia(82%) saturate(290%) hue-rotate(5deg) brightness(98%) contrast(94%);
}

.ski-service-item:hover .ski-service-icon img {
  transform: scale(1.1);
}

.ski-service-text {
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Ski Equipment & Technology Section */
.ski-equipment-list {
  margin-bottom: 20px;
}

.ski-equipment-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.ski-equipment-check {
  flex-shrink: 0;
  padding-top: 3px;
}

.ski-equipment-check i {
  font-size: 24px;
  color: var(--dark-golden);
}

.ski-equipment-text {
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}

/* Responsive adjustments */

/* Ski Tuning Pricing Guide Section */
.ski-pricing-section {
  background: #fff;
}

.ski-pricing-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.ski-pricing-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ski-pricing-title {
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.ski-pricing-table {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 25px;
}

.ski-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.ski-pricing-row:last-child {
  border-bottom: none;
}

.ski-pricing-service {
   font-family: "Montserrat", sans-serif;
  font-size: 16x;
  color: #111;
  font-weight: 400;
  line-height: 1.4;
}

.ski-pricing-price {
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.ski-pricing-note {
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin: 0;
  font-style: normal;
}

/* Responsive adjustments */

/* Customer Testimonials Section (Carousel) */
.testimonials-section {
  padding: 80px 0;
  background: #121135;
  position: relative;
}

.testimonials-title {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.testimonials-more-btn {
  display: block;
  margin: 0 auto 60px;
  width: fit-content;
}

.testimonials-carousel-wrapper {
  position: relative;
  padding: 0 60px;
}

.testimonial-card {
  background: var(--white-color);
  border-radius: 12px;
  padding: 40px 30px;
  margin: 20px 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffd700;
  font-size: 20px;
}

.testimonial-quote-icon {
  font-size: 100px;
  line-height: 1;
  color: #d3d3d3;
  text-align: center;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: #333;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-author {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}

/* Owl Carousel Custom Styling for Testimonials */
.testimonials-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 98%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

 
.testimonials-section .owl-carousel .owl-nav button.owl-prev{
    width: 60px;
    height: 60px;
    background: #806930 !important; 
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50px 0px 0px 50px;
    padding-left: 10px; 
}
.testimonials-section .owl-carousel .owl-nav button.owl-next{
    width: 60px;
    height: 60px;
    background: #806930 !important; 
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0 50px 50px 0;
    padding-left: 10px; 
}
.testimonials-carousel .owl-nav button span {
  color: var(--white-color);
  font-size: 24px;
  line-height: 1;
}

.testimonials-carousel .owl-nav .owl-prev {
  margin-left: -60px;
}

.testimonials-carousel .owl-nav .owl-next {
  margin-right: -60px;
}

/* Custom Dots for Testimonials */
.testimonials-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonials-carousel button.owl-dot {
  width: 15px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
}
.testimonials-carousel .owl-dot.active {
  width: 40px;
  height: 4px;
  background: var(--white-color);
  border-radius: 2px;
}

/* Align all carousel items vertically */
.testimonials-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.testimonials-carousel .owl-item {
  display: flex;
  align-items: center;
}

/* Center card styling - Make it significantly larger */
.testimonials-carousel .owl-item.center .testimonial-card {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  height: 600px;
}

/* Side cards should be smaller and equal */
.testimonials-carousel .owl-item:not(.center) .testimonial-card {
  height: 420px;
  opacity: 0.9;
}

/* Responsive Testimonials */

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: var(--white-color);
  text-align: center;
}

.newsletter-title {
  color: #121135;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

.newsletter-subtitle {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto 40px;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input {
  width: 100%;
  padding: 8px 16px;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: #806930;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-submit-btn {
  position: absolute;
  color: #111;
  right: 16px;
  border: none;
  background: none;
  /*  width: 42px;
  height: 42px;
  background: #4d91d5;
  border: none;
  border-radius: 50%;
  color: var(--white-color);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; */
}

.newsletter-submit-btn:hover {
  background: #121135;
  transform: scale(1.05);
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: #806930;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #121135;
  transform: translateY(-3px);
  color: var(--white-color);
}

/* ===================================
   10. FOOTER
   =================================== */

/* Main Footer */
.main-footer {
  padding: 60px 0;
  max-width: 80%;
  margin: 0 auto;
}

.footer-column-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: left;
  text-transform: uppercase;
}

/* Footer Accordion */
.footer-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header span {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.accordion-header:hover span {
  color: #806930;
}

.accordion-icon {
  color: #121135;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-header:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding-bottom: 15px;
}

.accordion-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-submenu li {
  margin-bottom: 10px;
}

.accordion-submenu a {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.accordion-submenu a:hover {
  color: #806930;
}

/* Footer Links (Company Column) */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 7px 0;
}

.footer-links a {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #806930;
}

/* Footer Logo Section */
footer {
  background: #fafafa;
}
.footer-logo-section {
  text-align: left;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid #dddddd;
}

.footer-logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 25px;
}

.footer-address {
  font-style: normal;
  margin-bottom: 20px;
}

.footer-address p {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-phone {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.footer-phone:hover {
  color: #806930;
}

/* Copyright Bar */
.copyright-bar {
  padding: 20px 0;
  background: #e8e8e8;
  text-align: center;
}

.copyright-text {
  color: #999;
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.copyright-text a {
  color: #806930;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0 10px;
}

.copyright-text a:hover {
  color: #121135;
}

/* Responsive Footer */

/* ====================================
   SEAWALL MATERIALS PAGE STYLES
==================================== */

/* Hero Banner Section */
.seawall-hero-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seawall-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.seawall-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white-color);
  max-width: 65%;
  margin: 0 auto;
}

.seawall-esp-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.seawall-hero-title {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
 font-size: 56px;
font-style: normal;
font-weight: 700;
line-height: 64px;
text-transform: uppercase;
}

/* Intro Text Section */
.seawall-intro-section {
  padding: 50px 0;
  background: var(--white-color);
}

.seawall-intro-text {
  color: #121135;
  text-align: center;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  max-width: 900px;
  margin: 0 auto;
}

/* Top Product Section */
.seawall-top-product-section {
  padding: 80px 0;
}
/* Top Product Section */
.seawall-top-product-section .featurecntnt {
  max-width: 65%;
  margin: 0 auto;
  /* text-align: center; */
}

.seawall-section-subtitle {
  color: var(--dark-golden);
   font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 7.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.seawall-section-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.seawall-section-text {
  color: #333;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
}
.icon-color{
  filter: brightness(0) saturate(100%) invert(36%) sepia(82%) saturate(290%) hue-rotate(5deg) brightness(98%) contrast(94%);
}
.seawall-btn {
  margin-top: 10px;
  padding: 12px 35px;
}

.seawall-product-image {
  width: 100%;
  overflow: hidden;
}

.seawall-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Grid Section */
.seawall-features-section {
  padding: 80px 0;
  background: var(--white-color);
}

.seawall-feature-card {
  background: var(--white-color);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.seawall-feature-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.seawall-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.seawall-feature-content {
  padding: 30px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.seawall-feature-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  text-align: left;
}

.seawall-feature-text {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Installation Process Section */
.seawall-installation-section {
  padding: 64px 0;
  background: #121135;
  color: var(--white-color);
}

.seawall-installation-title {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 15px;
}

.seawall-installation-subtitle {
  color: rgba(255, 255, 255, 0.8);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
}

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

.seawall-step-number {
  width: 64px;
  height: 64px;
  background: var(--dark-golden);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.seawall-step-title {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.seawall-step-text {
  color: rgba(255, 255, 255, 0.8);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Quote Form Section */
.seawall-quote-section {
  padding: 80px 0;
}

.seawall-form-subtitle {
  color: #806930;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}

.seawall-form-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 50px;
}

.seawall-quote-form {
  max-width: 800px;
  margin: 0 auto;
}

.seawall-form-input,
.seawall-form-textarea {
  width: 100%;
  padding: 12px;
  font-weight: 400;
  color: #333;
  background: #fafafa;
  border: 2px solid #d9d9d9;
  outline: none;
}

.seawall-form-input::placeholder,
.seawall-form-textarea::placeholder {
  color: #999;
}

.seawall-form-textarea {
  resize: vertical;
}

.seawall-form-btn {
  padding: 14px 45px;
  font-size: 16px;
}

/* Responsive Seawall Materials */

/* ====================================
   TRADE/CONSIGN PAGE STYLES
==================================== */

/* Hero Banner - REUSING SEAWALL STRUCTURE - Only new class for subtitle */
.golden-color{
  color: var(--dark-golden) !important;
}
.normal-banner-title{
  color: var(--white-color);
   font-family: "Montserrat", sans-serif; 
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 150% */
  text-transform: uppercase;
}
.trade-hero-subtitle {
  color: var(--white-color);
   font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  line-height: 32px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
  max-width: 800px;
  padding: 20px 0;
  margin: 0 auto;
}

/* Key Points Section */
.consign-keypoints-section {
  padding: 80px 0;
  background: var(--white-color);
}

.consign-section-subtitle {
  color: #806930;
  font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 7.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.consign-section-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; 
  text-transform: uppercase;
  margin-bottom: 30px;
}

.consign-requirements-list {
  margin-bottom: 15px;
}

.consign-req-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.consign-req-item i {
  color: #806930;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consign-exclusion-list {
  list-style: none;
  padding-left: 35px;
  margin-bottom: 25px;
}

.consign-exclusion-list li {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  padding-left: 15px;
}

.consign-exclusion-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #806930;
}

.consign-additional-info {
  margin-bottom: 30px;
}

.consign-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #333;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.consign-info-item i {
  color: #806930;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consign-cta-btn {
  padding: 12px 35px;
}

.consign-keypoints-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.consign-keypoints-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Choose Section */
.consign-why-section {
  padding: 80px 0;
  background: #121135;
  color: var(--white-color);
}

.consign-why-title {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; 
  text-transform: uppercase;
}

.consign-why-subtitle {
  color: rgba(255, 255, 255, 0.8);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
}

.consign-features-row {
  margin-bottom: 30px;
}

.consign-feature-box {
  text-align: center;
  padding: 20px;
  gap: 20px;
}

.consign-feature-icon {
  width: 80px;
  height: 80px;
  background: transparent;
  border: 3px solid #806930;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.consign-feature-icon i {
  color: #806930;
  font-size: 36px;
}

.consign-feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.consign-feature-title {
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.consign-feature-text {
  color: rgba(255, 255, 255, 0.85);
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

.consign-why-cta {
  padding: 14px 40px;
}

/* Process Section */
.consign-process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.consign-process-image {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.consign-process-image img {
  width: 100%;
  height: auto;
  display: block;
}

.consign-process-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.consign-process-subtitle {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

.consign-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.consign-step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: center;
  flex-direction: column;
}

.consign-step-icon {
  flex-shrink: 0;
}

.consign-step-number {
  width: 60px;
  height: 60px;
  background: #806930;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.consign-step-content {
  flex-grow: 1;
}

.consign-step-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.consign-step-text {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Valuation Form Section */
.consign-valuation-section {
  padding: 80px 0;
  background: var(--white-color);
}

.consign-form-subtitle {
  color: var(--dark-golden);
   font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 7.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.consign-form-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

.consign-valuation-form {
  max-width: 800px;
  margin: 0 auto;
}

.consign-form-section-title {
  padding: 0 15px;
  color: #121135;
   font-family: "Montserrat", sans-serif;              
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.consign-form-input,
.consign-form-textarea {
  width: 100%;
  padding: 8px 16px;
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D1D1D;
  background: #fafafa;
  border: 2px solid #d9d9d9;
  outline: none;
  transition: border-color 0.3s ease;
}

.consign-form-input::placeholder,
.consign-form-textarea::placeholder {
  color: #1D1D1D;
}

.consign-form-textarea {
  resize: vertical;
}

.consign-radio-label {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.consign-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consign-radio-item {
  display: flex;
  align-items: center;
  color: #333;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 0;
}

.consign-radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #806930;
}

.consign-submit-btn {
  padding: 14px 45px;
  font-size: 16px;
}

/* Responsive Styles */

/* Service Tabs Section */
.service-tabs-section {
  padding: 80px 0;
  background-color: #fff;
}

.service-tabs-list {
  background: #fafafa;
  padding: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
}
.service-tabs-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-tab-item {
  color: #121135 !important;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px !important;
  border: 1px solid #eee !important;
  margin-bottom: 10px;
  border-radius: 5px !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: #fff !important;
}

.service-tab-item:hover {
  background-color: #f8f9fa;
  color: #806930 !important;
}

.service-tab-item.active {
  background-color: #121135 !important;
  color: #fff !important;
  border-color: #121135 !important;
}

.service-tab-item i {
  font-size: 18px;
}

.service-content-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-content-subtitle {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-content-text {
  color: #555;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.service-content-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 5px;
}

.service-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seasonal-service .seawall-hero-title {
  color: #121135 !important;
}
.seasonal-service .trade-hero-subtitle {
  color: #121135 !important;
}
.central-title{
  font-size: 36px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 48px !important;
  text-transform: uppercase;
}
.central-subtitle{
  margin-bottom: 24px !important;
}
.catgory-list {
  margin: 25px;
  text-align: left;
}
.parts-logosec .brand-logos-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 70px;
  max-width: 100%;
  margin: 0 auto;
  overflow: unset;
}
.docks-lift-cards .seawall-feature-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.docks-lift-cards h3 {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
}
.docks-lift-cards h4 {
  color: var(--Navy-Blue, #121135);
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}


/* Service FAQs Section */
.service-faqs-section {
  padding: 80px 0;
}

.faqs-subtitle {
  color: var(--dark-golden);
  font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 7.2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.faqs-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 48px; /* 133.333% */
text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-header {
  margin-bottom: 0;
}

.faq-button {
  width: 100%;
  background: var(--white-color);
  border: none;
  padding: 20px 25px;
  text-align: left;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #121135;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  outline: none;
}

.faq-button:hover {
  background: #f8f9fa;
}

.faq-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
  color:  #1D1D1D;
}

.faq-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-button.collapsed {
  background: var(--white-color);
}

.faq-body {
  padding: 0 25px 20px 25px;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
/* ====================================
   DE-ICERS PAGE STYLES
==================================== */

/* Image Gallery Section */
.deicer-gallery-section {
  padding: 0;
  background: #fff;
}

.deicer-gallery-container {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  gap: 10px;
  padding: 10px 0;
}

.deicer-gallery-container::-webkit-scrollbar {
  height: 6px;
}

.deicer-gallery-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.deicer-gallery-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.deicer-gallery-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.deicer-gallery-item {
  flex: 0 0 auto;
  width: 16.666%;
  min-width: 150px;
}

.deicer-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Kasco Models Table Section */
.deicer-table-section {
  padding: 80px 0;
  background: #fff;
}

.deicer-table-title {
  color:#1D1D1D;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; 
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.deicer-table-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.deicer-table {
  background: #fff;
  border: none;
  width: 100%;
}

.deicer-table thead tr {
  border-bottom: 2px solid  #1D1D1D;
}

.deicer-table th {
  padding: 12px 15px;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color:  #1D1D1D;
  border: none;
  text-align: left;
}

.deicer-table tbody tr {
  border-bottom: 1px solid #ddd;
}

.deicer-table td {
  padding: 12px 15px;
   font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #333;
  border: none;
}

.deicer-table-note {
  text-align: center;
   font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin-top: 25px;
}

/* Responsive De-Icers */

/* ====================================
   DOCKS & LIFT PAGE STYLES
==================================== */

/* Three Image Gallery Section */
.docks-gallery-section {
  padding: 0;
  background: #fff;
}

.docks-gallery-container {
  display: flex;
  width: 100%;
  gap: 20px;
}

.docks-gallery-item {
  flex: 1;
  min-width: 0;
}

.docks-gallery-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.floating-docks-gallery .deicer-gallery-item img {
  height: 100%;
}
.floating-docks-gallery .deicer-gallery-container {
  gap: 10px;
}
/* Responsive Docks Gallery */

/* Choose Dock Section */
/* .choose-dock-section {
  padding: 80px 0;
  background-color: #fff;
} */

.choose-dock-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.choose-dock-card {
  padding: 0 15px;
  display: flex;
  gap: 20px;
}

.choose-dock-image {
  width: 100%;
  margin-bottom: 25px;
}
.choose-dock-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-dock-card-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.choose-dock-text {
  color: #333;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.choose-dock-availability {
  color: #333;
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 0;
}

/* ====================================
   CONTACT PAGE STYLES
==================================== */

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: #fff;
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 0;
  width: 640px;
  position: absolute;
  top: -33%;
  left: -20%;
  z-index: 5;
  border: 1px solid #d9d9d9;
  text-align: center;
}

.contact-form-label {
  color: #806930;
  font-family: 'Archivo_Expanded';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 7.2px;
  text-transform: uppercase;
}

.contact-form-title {
  color: #121135;
   font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
  width: 100%;
  padding: 12px 16px;
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
  border-color: #806930;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #999;
}

.contact-form-textarea {
  resize: vertical;
}

.contact-submit-btn {
  display: inline-block;
  color: #fff;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background: #121135;
  border: none;
  border-radius: 25px;
  padding: 12px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #806930;
}

/* Contact Info */
.contact-info-wrapper {
  padding: 40px 30px;
}

.contact-info-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  gap: 20px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #806930;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-details {
  flex: 1;
}

.contact-label {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-link {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #806930;
  text-decoration: none;
}

.contact-text {
  color: #666;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Map Section */
.contact-map-section {
  padding: 0;
  background: #e8e8e8;
}

.contact-map-wrapper {
  max-width: 100%;
}

.contact-map-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  padding: 60px 0 40px;
  margin: 0;
  background: #e8e8e8;
}

.contact-map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.flite-board-banner .flite-board-txt {
  max-width: 70%;
  margin: 0 auto;
  padding: 10px 0;
}
.flite-board-banner .seawall-esp-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.flite-board-banner {
  min-height: 720px;
}
/* Responsive Contact Page */

/* ========================================
   FLITEBOARD PRODUCTS SECTION
========================================= */
.fliteboard-products-section {
  padding: 80px 0;
  background: #fff;
}

.fliteboard-products-title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 50px;
}

.fliteboard-product-card {
  background: #fff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fliteboard-product-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fliteboard-product-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.fliteboard-product-info p {
  font-weight: 700;
  margin-bottom: 5px;
}

/* Responsive Fliteboard Products */

/* ========================================
   ABOUT PAGE STYLES
========================================= */
.about-hero-banner {
  background: #121135;
  justify-content: center;
  padding: 80px 0;
}

.about-hero-subtitle {
  color: white;
  font-family: "Archivo_Expanded";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 177.778% */
  letter-spacing: 7.2px;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: 80px;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 114.286% */
  text-transform: uppercase;
  margin-bottom: 25px;
  text-transform: capitalize;
  color: white;
}

.about-hero-description {
  color: #fff;
  text-align: center;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.about-hero-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
}

/* Responsive About Hero */

/* Dealership Icon Section - Logo Overlay */
.dealership_iconsec {
  position: relative;
  display: inline-block;
}

.dealership-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.certified-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Dealership Logo */

/* About Gallery Section */
.about-gallery-section {
  padding: 60px 0;
  background: #fff;
}

.about-gallery-grid {
  display: flex;
  width: 100%;
  gap: 10px;
  overflow: hidden;
}

.about-gallery-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 300px;
}

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

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

/* Responsive About Gallery */

/* ========================================
   BOAT VIDEOS PAGE STYLES
========================================= */
.boat-videos-section {
  padding: 60px 0;
  background: #fff;
}

/* Brand Filter Tabs */
.video-brand-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  padding: 0 15px;
  flex-wrap: wrap;
}

.video-brand-tab {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  min-width: 120px;
}

.video-brand-tab span {
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #121135;
  letter-spacing: 1px;
}

.video-brand-tab img {
  max-height: 40px;
  max-width: 100px;
  object-fit: contain;
}

.video-brand-tab.active {
  border-color:  #1D1D1D;
  border: 2px solid  #1D1D1D;
}

.video-brand-tab.active span {
  color:  #1D1D1D;
}

.video-brand-tab:hover {
  border-color: #806930;
  box-shadow: 0 4px 12px rgba(77, 145, 213, 0.2);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 15px;
}

.video-card {
  display: block;
  transition: transform 0.3s ease;
}

.video-card.hidden {
  display: none;
}

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

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 280px;
  background: #d3d3d3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

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

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.video-play-overlay i {
  font-size: 70px;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-thumbnail:hover .video-play-overlay i {
  opacity: 1;
  transform: scale(1.1);
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #121135;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Responsive Video Gallery */

/* Our Story Section Redesign */
.ourstory {
  background-image: url("https://cdn.mdsbrand.com/mean-omaha/assets/images/about/96st_store_drone_shot.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Video for Ourstory Section */
.ourstory-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

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

.ourstory .aboutuscntnt {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 550px;
  background-color: #fff;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.ourstory h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--Navy-Blue);
  margin-bottom: 20px;
  line-height: normal;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.ourstory p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.proshop-hero .hero-overlay {
  background: linear-gradient(to bottom, rgb(19 20 57), rgba(19, 20, 57, 0));
  z-index: 1;
}

.proshop-galry .deicer-gallery-item img {
  height: 270px;
}
.proshop-galry .deicer-gallery-item {
  width: 22%;
}

/* Völkl Brand Section */
.volkl-brand-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
}

.volkl-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.volkl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D1D1D;
  z-index: 2;
}

.volkl-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.volkl-logo-container {
  margin-bottom: 40px;
}

.volkl-logo {
  max-width: 200px;
  height: auto;
  filter: brightness(1.1);
}

.volkl-description {
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 35px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.volkl-brand-section .blue-btn {
  margin-top: 20px;
}

/* Responsive styles for brand sections */

/* Völkl Skis Carousel Section */
.volkl-skis-carousel-section {
  background: #fff;
  position: relative;
}

.volkl-carousel-title {
   font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-left: 15px;
}

.volkl-product-card {
  background: #fff;
  margin: 15px;
  cursor: pointer;
}

.volkl-product-image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volkl-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volkl-product-info {
  padding: 20px 0;
  text-align: left;
}

.volkl-product-name {
   font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.volkl-product-price {
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #111;
  margin: 0;
}

/* Owl Carousel Custom Navigation for Völkl Section */
.volkl-skis-carousel .owl-nav {
  display: none;
}

.volkl-skis-carousel .owl-dots {
  display: none;
}

/* Responsive styles for Völkl carousel */

/* ===================================
   7. MOBILE NAVIGATION
   =================================== */

/* Mobile Nav Wrapper */
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 80vh;
  background: #2d3748;
  z-index: 9999;
  transition: right 0.3s ease;
  overflow: hidden;
  display: none;
}

.mobile-nav-wrapper.active {
  right: 0;
}

/* Show mobile nav only on mobile devices */

/* Mobile Nav Panel */
.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav-panel.active {
  transform: translateX(0);
}

.mobile-nav-submenu {
  transform: translateX(100%);
}

.mobile-nav-submenu.active {
  transform: translateX(0);
}

/* Mobile Nav Header & Controls */
/* Mobile Nav Header */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #1a202c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 70px;
}

.mobile-nav-back {
  background: none;
  border: none;
  color: #806930;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.mobile-nav-back:hover {
  color: #357abd;
}

.mobile-nav-back i {
  font-size: 14px;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: color 0.2s ease;
}

.mobile-nav-close:hover {
  color: #806930;
}

/* Mobile Nav Content */
.mobile-nav-content {
  padding: 40px;
}

.mobile-nav-title {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

/* Mobile Nav List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 35px;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}
.main-men .mobile-nav-link {
  color: #121135;
   font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 133.333% */
}

.mobile-nav-link {
  color: #1d1d1d;
   font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.mobile-nav-link:hover {
  color: #806930;
  padding-left: 5px;
}

.mobile-nav-item.has-submenu .mobile-nav-link {
  cursor: pointer;
}

.mobile-nav-link i {
  color: #806930;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.mobile-nav-item:hover .mobile-nav-link i {
  transform: translateX(3px);
}

/* Mobile Brand Grid */
.mobile-nav-brands {
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.mobile-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.mobile-brand-item {
  border: 1px solid #d9d9d9;
  background: #fafafa;
  border-radius: 6px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  min-height: 60px;
}

.mobile-brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-brand-item img {
  max-width: 70%;
  max-height: 50px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s ease;
}

.mobile-brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Body scroll lock when mobile nav is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* Mobile Nav Overlay Enhancement */
.menu-overlay.mobile-nav-active {
  display: block;
  opacity: 1;
  z-index: 9998;
}

/* Smooth scrolling for mobile nav panels */
.mobile-nav-panel {
  -webkit-overflow-scrolling: touch;
}

/* Touch-friendly spacing */

/* Accessibility improvements */
.mobile-nav-link:focus,
.mobile-nav-back:focus,
.mobile-nav-close:focus {
  outline: 2px solid #806930;
  outline-offset: 2px;
}


.commonSection {
    margin-bottom: 80px;
}
.commonSectionInnerWrap {
    display: flex;
    gap: 120px;
    max-width: calc(100% - 15%);
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.thank-you-content-box {
    width: 50%;
}
.commonSectionImageWrapper {
    width: 50%;
}
.commonPara {
    color: #1E1E1E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.commonSectionLinkWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.featured-btn {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    background: #222;
    display: inline-block;
    padding: 13px 25px;
}
.featured-btn:hover {
    color: #FFF;
    text-decoration: none;
}
.commonSectionHeading {
    color: #222;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 6.4px;
    text-transform: uppercase;
}
.thank-you-inner-box {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.thank-you-img-box{
    width: 100%;
    height: 100%;
}
.commonSectionImageWrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumb{
    background: transparent !important;
}

/* Animation for smooth panel transitions */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ===================================
   12. RESPONSIVE BREAKPOINTS
   =================================== */
@media screen and (max-width: 1600px) {
    .nav-left {
      gap: 23px;
  }
  .navbar-container {
    max-width: 93%;
  }
}

@media (max-width: 1550px) and (min-width: 991px) {
  .navbar-main .navbar-container ul li a{
    padding: 10px 0 !important;
  }
}
@media (max-width: 1350px) and (min-width: 991px) {
    .contact-form-wrapper
 {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0;
    width: 500px;
    position: absolute;
    top: -33%;
    left: -5%;
    z-index: 5;
    border: 1px solid #d9d9d9;
    text-align: center;
}
}

@media (max-width: 1440px) {
  .commonSectionHeading {
      font-size: 29px;
      letter-spacing: 3px;
  }
}
@media screen and (max-width: 1350px) {
    .nav-link {
        font-size: 13px;
    }
    .navbar-container {
      max-width: 97%;
  }
}
/* Large Desktop - 1200px and below */
@media (max-width: 1200px) {
    .nav-logo {
      max-width: 70px;
  }
  .nav-link {
      font-size: 12px !important;
  }
  .commonSectionInnerWrap {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
    .commonSectionInnerWrap {
        gap: 40px;
    }
  .navbar-container {
    padding: 0 20px;
  }

  .nav-left,
  .nav-right {
    gap: 25px;
  }

  .nav-logo {
    margin: 0 20px;
  }
  .value-img-wrapper {
    height: 350px;
    width: 100%;
  }
  .values-badge-wrapper{
    margin: 0;
  }
  .omc-values-section {
  padding: 40px 0;
  }

  .values-content {
    padding: 30px 40px;
  }

  .values-title {
    font-size: 36px;
  }
  .testimonials-carousel-wrapper {
    padding: 0 50px;
  }

  .testimonials-carousel .owl-nav .owl-prev {
    margin-left: -50px;
  }

  .testimonials-carousel .owl-nav .owl-next {
    margin-right: -50px;
  }
  
}

/* Tablet/Mobile - 991px and below */
@media (max-width: 991px) {
  .commonSectionImageWrapper {
        width: 100%;
    }
    .thank-you-content-box {
        width: 100%;
    }
    .commonSectionInnerWrap {
        gap: 40px;
        flex-flow: column-reverse;
    }
      .brand-logos-container {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
  .flite-board-banner .flite-board-txt {
  max-width: 90%;
}
  h3 {
    font-size: 30px;
    line-height: 28px;
}
   .about-hero-subtitle {
    text-align: center;
  }
  .proshop-galry .deicer-gallery-item img{
    height: 200px;
  }
  .proshop-galry .deicer-gallery-item{
        flex: 0 0 25%;
        max-width: 100%;
        height: 200px;
  }
.about-gallery-grid {
    overflow-x: scroll;
    flex-wrap: nowrap;
}
    .about-gallery-item {
        flex: 0 0 25%;
        max-width: 100%;
        height: 200px;
    }
  .about-hero-title {
    text-align: center;
  }
  /* .choose-dock-section{
        padding: 40px 0;
  } */
    .trade-hero-subtitle {
        font-size: 16px;
        line-height: normal;
        max-width: unset;
        margin: 12px 0;
        margin-bottom: 20px;
    }
    .parts-logosec .brand-logos-container {
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: scroll;
}
  .hero-tagline {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-heading {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-logo {
    max-width: 250px;
    margin-bottom: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .hero-panel-2 .hero-content,
  .hero-panel-3 .hero-content {
    padding: 0 40px 40px;
  }
  .rowreverse{
    flex-direction: column-reverse;
}
  .ourstory {
    height: auto;
    padding: 80px 15px;
    justify-content: center;
  }

  .ourstory .aboutuscntnt {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    max-width: 100%;
    margin: 0 auto;
  }
  .navbar-container {
    height: 60px;
  }

  .nav-left,
  .nav-right {
    gap: 20px;
  }

  .nav-link,
  .nav-phone {
    font-size: 14px;
  }
  .nav-logo{
      max-width: 52px;
  }

  .mega-menu-container {
    padding: 30px 20px;
  }

  .mega-menu-card {
    height: 180px;
  }
  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-phone-btn {
    display: flex;
    order: -1;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: relative;
  }

  .resources-sidebar {
    display: none !important;
  }

  /* Hide desktop mega menus on mobile */
  .mega-menu {
    display: none !important;
  }
  .starting-lineup-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .brand-logos-container {
    gap: 40px 60px;
  }

  .brand-logo-item img {
    max-height: 45px;
    max-width: 150px;
  }
  .category-content {
    padding: 40px 30px;
  max-width: 100%;
  margin: 0 auto;
  }

  .category-title {
    font-size: 28px;
    line-height: 35px;
  }

  .category-image {
    height: 500px;
  }

  .browse-category-section .owl-dots {
    left: 30px;
    bottom: 30px;
  }
  .service-card {
    height: 500px;
  }

  .service-title {
    font-size: 28px;
    line-height: 36px;
  }
  .slider-image-wrapper {
    height: 500px;
  }

  .slider-heading {
    font-size: 48px;
  }

  .custom-control {
    margin: 0 20px;
  }
  .omc-values-section {
    padding: 60px 0;
  }

  .value-img-wrapper {
    height: 300px;
  }

  .values-content {
    padding: 25px;
    max-width: 100%;
    margin: 0 auto;
  }

  .news-events-section {
    padding: 60px 0;
  }

  .info-card-img-wrapper {
    height: 300px;
  }

  .info-card-title {
    font-size: 24px;
  }

  .info-card-content {
    padding: 25px 15px;
  }
  .proshop-vidcard .video-wrapper {
    padding-bottom: 56.25%;
  }

  .category-name {
    font-size: 18px;
  }

  .category-overlay {
    padding: 25px 15px;
  }

  .category-gallery-item:hover .category-overlay {
    padding: 30px 15px;
  }
  .skishop-hero {
    min-height: 500px;
    flex-direction: column;
  }

  .skishop-hero .seawall-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
  }
  p.ski-equipment-text {
    text-align: left;
}
  .skishop-hero .hero-overlay {
    position: absolute;
    width: 100%;
    background: rgb(19 20 57 / 80%);
}
.skishop-brands-section .brands-logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow: scroll;
}
  .skishop-hero .seawall-hero-content {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding: 60px 40px;
    position: absolute;
    text-align: center;
  }

  .skishop-hero .seawall-hero-title {
    font-size: 42px;
  }

  .skishop-hero p {
    font-size: 15px;
  }
  .brands-logo-grid {
    gap: 30px;
  }

  .brand-logo-img {
    max-width: 120px;
  }
  .ski-services-title,
  .ski-equipment-title {
    font-size: 32px;
  }

  .ski-service-icon img {
    max-width: 70px;
  }

  .ski-service-text {
    font-size: 13px;
  }
  .ski-pricing-title {
    font-size: 36px;
  }

  .ski-pricing-service,
  .ski-pricing-price {
    font-size: 16px;
  }

  .ski-pricing-row {
    padding: 16px 0;
  }
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .testimonial-card {
    min-height: 350px;
    padding: 35px 25px;
    margin: 15px 10px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 40px;
  }

  .testimonials-carousel .owl-nav .owl-prev {
    margin-left: -40px;
  }

  .testimonials-carousel .owl-nav .owl-next {
    margin-right: -40px;
  }
  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-title {
    font-size: 38px;
  }

  .main-footer {
    padding: 50px 0;
  }

  .footer-column-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .seawall-hero-banner {
    height: 50vh;
    min-height: 400px;
  }

  .seawall-esp-logo {
    max-width: 150px;
    margin-bottom: 25px;
  }

  .seawall-hero-title {
    font-size: 44px;
  }

  .seawall-intro-section {
    padding: 30px 0;
  }

  .seawall-intro-text {
    font-size: 16px;
  }

  .seawall-top-product-section,
  .seawall-features-section,
  .seawall-installation-section,
  .seawall-quote-section {
    padding: 40px 0;
  }
  /* Top Product Section */
  .seawall-top-product-section .featurecntnt {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .seawall-section-title {
    font-size: 32px;
  }

  .seawall-installation-title,
  .seawall-form-title {
    font-size: 36px;
  }

  .seawall-feature-image {
    height: 250px;
  }

  .seawall-step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .consign-hero-banner {
    height: 50vh;
    min-height: 380px;
  }

  .consign-hero-title {
    font-size: 44px;
  }

  .consign-hero-subtitle {
    font-size: 16px;
  }

  .consign-keypoints-section,
  .consign-why-section,
  .consign-process-section,
  .consign-valuation-section {
    padding: 60px 0;
  }

  .consign-section-title,
  .consign-process-title {
    font-size: 32px;
  }

  .consign-why-title,
  .consign-form-title {
    font-size: 36px;
  }
  .service-tabs-section .service-tabs-list {
    margin-bottom: 10px !important;
  }

  .service-content-title {
    font-size: 32px;
  }

  .service-content-image {
    height: 300px;
  }
  .deicer-gallery-item {
    min-width: 120px;
  }

  .deicer-gallery-item img {
    height: 140px;
  }

  .deicer-table-section {
    padding: 60px 0;
  }

  .deicer-table-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .deicer-table th,
  .deicer-table td {
    font-size: 14px;
    padding: 10px 12px;
  }
  .docks-gallery-item img {
    height: 180px;
  }
  .choose-dock-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .choose-dock-card-title {
    font-size: 20px;
  }
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 20px;
    position: unset;
        width: 100%;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-info-wrapper {
    padding: 30px 20px;
  }

  .contact-info-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .contact-map-title {
    font-size: 32px;
    padding: 50px 0 30px;
  }

  .contact-map-container {
    height: 400px;
  }
  .fliteboard-products-section {
    padding: 60px 0;
  }

  .fliteboard-products-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .fliteboard-product-image {
    height: 250px;
  }

  .fliteboard-product-name {
    font-size: 16px;
  }

  .fliteboard-product-price {
    font-size: 22px;
  }
  .about-hero-banner {
    min-height: 450px;
    padding: 60px 0;
  }

  .about-hero-content {
    padding: 40px 20px;
  }

  .about-hero-title {
    font-size: 60px;
    line-height: 68px;
    margin-bottom: 20px;
  }

  .about-hero-description {
    font-size: 16px;
    line-height: 26px;
  }
  .certified-logo {
    max-width: 150px;
  }
  .about-gallery-item {
    height: 250px;
  }
  .boat-videos-section {
    padding: 50px 0;
  }

    .video-brand-filters {
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
        .video-brand-tab {
    padding: 10px;
        min-width: 110px;
    min-height: 50px;
    }

  .video-brand-tab img {
    max-height: 35px;
    max-width: 100px;
  }
  .video-brand-tab span {
    font-size: 12px;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .video-thumbnail {
    height: 240px;
  }

  .video-play-overlay i {
    font-size: 60px;
  }
  .volkl-brand-section {
    min-height: 500px;
    padding: 60px 20px;
  }

  .volkl-logo {
    max-width: 180px;
  }

  .volkl-description {
    font-size: 16px;
  }
  .volkl-carousel-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .mobile-nav-wrapper {
    display: block;
  }
  /* Mobile Footer Accordion Styles */
  .footer-logo-section{
    border: none;
  }
  .footer-logo-section{
    margin: none;
  }
  .main-footer {
    padding: 40px 0;
    max-width: 90%;
    margin: 0 auto;
}
  .mobile-footer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 15px 0;
    color: #121135;
     font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    outline: none;
  }

  .mobile-footer-toggle:focus {
    outline: none;
  }

  .mobile-footer-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 14px;
  }

  .mobile-footer-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
  }

  .collapse.show .footer-accordion,
  .collapse.show .footer-links {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  /* Center Social Icons */
  .social-media-icons {
    justify-content: center;
  }

  /* Center Logo & Contact for Tablet/Mobile */
  .footer-logo-section {
    text-align: center;
    margin-top: 30px;
  }

  .footer-address, 
  .footer-phone {
    text-align: center;
    display: block;
  }
  .container-fluid{
    max-width: 100% !important;
  }
  .services-grid-section .container-fluid{
    
    width: 100% !important;
  }
  .services-grid-section .container-fluid .row{
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
  .row.no-gutters.omc-imgs {
    flex-wrap: nowrap;
    overflow-x: scroll;
}
.docks-gallery-container{
  overflow-x: scroll;
  flex-direction: row !important;
}
.docks-gallery-item{
  width: 100%;
  min-width: max-content;

}
}

/* Mobile - 767px and below */
@media (max-width: 767px) {
      h3 {
        font-size: 22px;
        line-height: 25px;
    }
    /* .choose-dock-section{
        padding: 30px 0;
  } */
    .proshop-galry .deicer-gallery-item{
        flex: 0 0 40%;
  }
    .faqs-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
}

.faqs-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}
  .seawall-top-product-section .video-embed iframe{
height: 435px;
  }
  .consign-feature-box {
    text-align: center;
    padding: 0px;
    gap: 10px;
}
  .hero-tagline {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 1px;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-logo {
    max-width: 200px;
    margin-bottom: 25px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .hero-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-panel-2 .hero-content,
  .hero-panel-3 .hero-content {
    padding: 0 30px 30px;
  }
  .resources-sidebar {
    width: 320px;
    right: -320px;
  }

  .mega-menu-container {
    padding: 20px 15px;
  }

  .mega-menu-card {
    height: 150px;
  }

  .mega-menu-card-overlay h4 {
    font-size: 16px;
  }
  .starting-lineup-section {
    padding: 30px 0;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 40px;
  }

  .brand-logos-container {
    gap: 30px 40px;
  }

  .brand-logo-item img {
    max-height: 40px;
    max-width: 130px;
  }
  .browse-category-section {
    padding: 60px 0;
  }

  .category-slide .row {
    flex-direction: column-reverse;
  }

  .category-content {
    padding: 40px 20px;
  }

  .category-title {
    font-size: 28px;
    line-height: 35px;
  }

  .category-subtitle {
    font-size: 12px;
  }

  .category-brands {
    font-size: 12px;
  }

  .category-description {
    font-size: 15px;
    line-height: 22px;
  }

  .category-btn {
    width: 100%;
    text-align: center;
  }

  .category-image {
    height: 400px;
    margin-bottom: 0;
  }

  .browse-category-section .owl-dots {
    position: relative;
    left: 0;
    bottom: 0;
    justify-content: center;
    margin-top: 30px;
  }
  .service-card {
    height: 400px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 24px;
    line-height: 32px;
  }

  .service-subtitle {
    font-size: 14px;
  }
  .slider-image-wrapper {
    height: 400px;
  }

  .slider-heading {
    font-size: 36px;
  }

  .slider-btn {
    padding: 10px 30px;
    font-size: 14px;
  }

  .custom-control {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .testimonials-section .owl-carousel .owl-nav button.owl-next {
      border-radius: 50px 0px 0px 50px;
  }
  .testimonials-section .owl-carousel .owl-nav button.owl-prev
 {
    border-radius: 0 50px 50px 0;
 }
  .browse-category-section {
      padding: 0 0px 40px 0;
  }
  .services-grid-section{
    padding: 40px 0;
  }
  .omc-values-section{
    padding: 40px 0;
  }
  .values-content-head{
    flex-direction: column-reverse;
    align-items: start;
}
  .value-img-wrapper {
    height: 250px;
  }
  .values-badge {
    width: 40%;
}

  .values-title {
    font-size: 32px;
  }

  .values-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .news-events-section {
    padding: 50px 0;
  }

  .info-card-img-wrapper {
    height: 280px;
  }

  .info-card-title {
    font-size: 22px;
  }

  .info-card-description {
    font-size: 15px;
  }

  .info-card-content {
    padding: 20px 15px;
  }
  .proshop-vidcard .video-wrapper {
    padding-bottom: 56.25%;
  }
  .category-gallery-grid {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .category-gallery-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .category-name {
    font-size: 16px;
  }

  .category-overlay {
    padding: 20px 15px;
  }
  .skishop-hero {
    min-height: auto;
  }

  .skishop-hero .seawall-hero-image {
    height: 100%;
  }

  .skishop-hero .seawall-hero-content {
    padding: 50px 30px;
  }

  .skishop-hero .trade-hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .skishop-hero .seawall-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .skishop-hero p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .skishop-brands-section {
    padding: 40px 0;
  }

  .brands-logo-grid {
    gap: 20px;
  }

  .brand-logo-img {
    max-width: 100px;
  }
  .ski-services-title,
  .ski-equipment-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .ski-service-icon img {
    max-width: 60px;
  }

  .ski-service-text {
    font-size: 12px;
  }

  .ski-equipment-text {
    font-size: 15px;
  }
  .ski-pricing-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .ski-pricing-row {
    padding: 14px 0;
  }

  .ski-pricing-service,
  .ski-pricing-price {
    font-size: 15px;
  }

  .ski-pricing-note {
    font-size: 13px;
  }
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-more-btn {
    margin-bottom: 40px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 15px;
  }

  .testimonial-card {
    min-height: 320px;
    padding: 30px 20px;
    margin: 10px 5px;
  }

  .testimonial-quote-icon {
    font-size: 100px;
    margin-bottom: 15px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-author {
    font-size: 16px;
  }

  /* Hide arrows on mobile, use swipe */
  /* .testimonials-carousel .owl-nav {
    display: none;
  } */
  .testimonials-carousel .owl-nav {
    left: 0;
    width: 98%;
   }

  .testimonials-carousel .owl-dots {
    margin-top: 30px;
  }
  .newsletter-section {
    padding: 50px 0;
  }

  .newsletter-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .newsletter-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .newsletter-form {
    margin-bottom: 30px;
  }

  .newsletter-input {
    padding: 14px 55px 14px 18px;
    font-size: 15px;
  }

  .newsletter-submit-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .main-footer {
    padding: 40px 0;
  }

  .footer-logo-section {
    text-align: center;
  }

  .footer-logo {
    max-width: 100%;
    margin: 0 auto 20px;
    display: block;
  }

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

  .footer-phone {
    text-align: center;
    font-size: 22px;
  }
  .seawall-hero-banner {
    height: 40vh;
    min-height: 400px;
  }

  .seawall-esp-logo {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .seawall-hero-title {
    font-size: 36px;
  }

  .seawall-intro-section {
    padding: 20px 0;
  }

  .seawall-intro-text {
    font-size: 15px;
  }

  .seawall-top-product-section,
  .seawall-features-section,
  .seawall-installation-section,
  .seawall-quote-section {
    padding: 20px 0;
  }

  .seawall-section-title {
    font-size: 28px;
  }

  .seawall-installation-title,
  .seawall-form-title {
    font-size: 32px;
  }

  .seawall-installation-subtitle {
    margin-bottom: 40px;
  }

  .seawall-feature-image {
    height: 200px;
  }

  .seawall-feature-content {
    padding: 25px 0;
  }

  .seawall-feature-title {
    font-size: 20px;
  }

  .seawall-feature-text {
    font-size: 14px;
  }

  .seawall-step-number {
    width: 40px;
    height: 40px;
    font-size: 25px;
    margin-bottom: 15px;
  }

  .seawall-step-title {
    font-size: 14px;
  }

  .seawall-step-text {
    font-size: 13px;
  }
  .consign-hero-banner {
    height: 45vh;
    min-height: 320px;
  }

  .consign-hero-title {
    font-size: 32px;
  }

  .consign-hero-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .consign-keypoints-section,
  .consign-why-section,
  .consign-process-section,
  .consign-valuation-section {
    padding: 50px 0;
  }

  .consign-section-title,
  .consign-process-title {
    font-size: 28px;
  }

  .consign-why-title,
  .consign-form-title {
    font-size: 32px;
  }

  .consign-why-subtitle {
    margin-bottom: 40px;
  }

  .consign-feature-icon {
    width: 70px;
    height: 70px;
  }

  .consign-feature-icon i {
    font-size: 32px;
  }

  .consign-step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .consign-step-title {
    font-size: 16px;
  }

  .consign-step-text {
    font-size: 14px;
  }
  .deicer-gallery-item {
    min-width: 100px;
    width: 25%;
  }

  .deicer-gallery-item img {
    height: 120px;
  }

  .deicer-table-section {
    padding: 50px 0;
  }

  .deicer-table-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .deicer-table th,
  .deicer-table td {
    font-size: 13px;
    padding: 8px 10px;
  }
  .docks-gallery-container {
    flex-direction: column;
  }

  .docks-gallery-item img {
    height: 250px;
  }
  .contact-form-section {
    padding: 0;
  }


  .contact-form-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact-info-wrapper {
    padding: 20px 15px;
    margin-top: 30px;
  }

  .contact-info-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .contact-info-item {
    margin-bottom: 30px;
    gap: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-map-title {
    font-size: 28px;
    padding: 40px 0 25px;
  }

  .contact-map-container {
    height: 350px;
  }
  .fliteboard-products-section {
    padding: 50px 0;
  }

  .fliteboard-products-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .fliteboard-product-image {
    height: 220px;
  }

  .fliteboard-product-info {
    padding: 20px 15px;
  }

  .fliteboard-product-name {
    font-size: 15px;
  }

  .fliteboard-product-price {
    font-size: 20px;
  }
  .about-hero-banner {
    min-height: 400px;
    padding: 50px 0;
  }

  .about-hero-content {
    padding: 30px 15px;
  }

  .about-hero-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .about-hero-title {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 18px;
  }

  .about-hero-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .about-hero-btn {
    padding: 12px 35px;
    font-size: 15px;
  }
  .certified-logo {
    max-width: 120px;
  }
  .about-gallery-section {
    padding: 40px 0;
  }

  .about-gallery-item {
    flex: 0 0 30%;
    max-width: 50%;
    height: 200px;
  }
  .boat-videos-section {
    padding: 40px 0;
  }

  /* .video-brand-filters {
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
  } */
/* 
  .video-brand-tab {
    padding: 10px 15px;
    min-height: 55px;
    min-width: 90px;
  }

  .video-brand-tab span {
    font-size: 12px;
  }

  .video-brand-tab img {
    max-height: 30px;
    max-width: 70px;
  } */

  .video-grid {
    gap: 20px;
  }

  .video-thumbnail {
    height: 200px;
  }

  .video-play-overlay i {
    font-size: 50px;
  }

  .video-title {
    font-size: 14px;
    margin-top: 12px;
  }
  .volkl-brand-section {
    min-height: 450px;
    padding: 50px 15px;
  }

  .volkl-logo {
    max-width: 150px;
  }

  .volkl-description {
    font-size: 15px;
    line-height: 1.6;
  }
  .volkl-carousel-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .volkl-product-card {
    margin: 10px;
  }

  .volkl-product-info {
    padding: 15px 0;
  }

  .volkl-product-name {
    font-size: 12px;
  }

  .volkl-product-price {
    font-size: 14px;
  }

  .mobile-nav-link {
    padding: 18px 0;
    font-size: 15px;
  }

  .mobile-nav-title {
    font-size: 22px;
  }

  .mobile-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .choose-dock-card{
    flex-direction: column;
    justify-content: center;
  }
}

/* Small Mobile - 576px and below */
@media (max-width: 576px) {
      .skishop-hero .trade-hero-subtitle {
        margin: 0;
        padding: 10px;
    }
  .commonSectionInnerWrap {
      padding-left: 25px;
      padding-right: 25px;
  }
  .commonSectionLinkWrap {
        flex-direction: column-reverse;
    }
  
    .proshop-galry .deicer-gallery-item{
        flex: 0 0 50%;
  }
    /* .choose-dock-section{
        padding: 20px 0;
  } */
  .seawall-top-product-section .video-embed iframe{
height: 300px;
  }
  .trade-hero-subtitle {
        font-size: 14px;
        line-height: normal;
        max-width: unset;
        margin: 12px 0;
        margin-bottom: 20px;
    }
  .hero-tagline {
    font-size: 25px;
    line-height: 36px;
  }

  .hero-heading {
    font-size: 23px;
    line-height: 34px;
  }

  .hero-logo {
    max-width: 160px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-panel-2 .hero-content,
  .hero-panel-3 .hero-content {
    padding: 0 20px 30px;
  }
  .starting-lineup-section {
    padding: 20px 0;
  }

  .section-title {
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }

  .brand-logos-container {
    gap: 25px 30px;
  }

  .brand-logo-item img {
    max-height: 35px;
    max-width: 110px;
  }
  .category-title {
    font-size: 25px;
    line-height: 30px;
  }

  .category-image {
    height: 300px;
  }

  .category-content {
    padding: 30px 15px;
  }
  .info-card-img-wrapper {
    height: 250px;
  }

  .info-card-title {
    font-size: 20px;
  }
  .proshop-vidcard .video-wrapper {
    padding-bottom: 56.25%;
  }
  .category-gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .category-name {
    font-size: 18px;
  }
  .skishop-hero .seawall-hero-image {
    height: 100%;
  }

  .skishop-hero .seawall-hero-content {
    padding: 40px 20px;
  }

  .skishop-hero .seawall-hero-title {
    font-size: 22px;
  }

  .skishop-hero .blue-btn {
    width: 100%;
    text-align: center;
  }
  .brands-logo-grid {
    gap: 15px;
  }

  .brand-logo-img {
    max-width: 80px;
  }
  .ski-services-title,
  .ski-equipment-title {
    font-size: 24px;
  }

  .ski-service-icon img {
    max-width: 50px;
  }

  .ski-service-text {
    font-size: 11px;
  }

  .ski-equipment-check i {
    font-size: 20px;
  }

  .ski-equipment-text {
    font-size: 14px;
  }
  .ski-pricing-title {
    font-size: 28px;
  }

  .ski-pricing-row {
    padding: 12px 0;
  }

  .ski-pricing-service,
  .ski-pricing-price {
    font-size: 14px;
  }

  .ski-pricing-note {
    font-size: 12px;
  }
  /* .testimonials-title {
    font-size: 24px;
  } */

  .testimonial-card {
    min-height: 300px;
    padding: 25px 18px;
  }

  .testimonial-stars i {
    font-size: 18px;
  }
  .newsletter-title {
    font-size: 28px;
  }

  .newsletter-subtitle {
    font-size: 14px;
  }

  .social-media-icons {
    gap: 12px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .footer-column-title {
    font-size: 16px;
  }

  .accordion-header span,
  .footer-links a {
    font-size: 15px;
  }

  .copyright-text {
    font-size: 12px;
  }
  .seawall-hero-title {
    font-size: 28px;
  }

  .seawall-esp-logo {
    max-width: 100px;
  }

  .seawall-intro-text {
    font-size: 14px;
  }

  .seawall-section-title {
    font-size: 24px;
  }

  .seawall-installation-title,
  .seawall-form-title {
    font-size: 28px;
  }

  .seawall-feature-image {
    height: 180px;
  }

  .seawall-btn,
  .seawall-form-btn {
    width: 100%;
    display: block;
  }
  .consign-hero-title {
    font-size: 26px;
  }

  .consign-section-title,
  .consign-process-title {
    font-size: 24px;
  }

  .consign-why-title,
  .consign-form-title {
    font-size: 22px;
  }

  .consign-hero-btn,
  .consign-cta-btn,
  .consign-why-cta,
  .consign-submit-btn {
    width: 100%;
    display: block;
  }
  .deicer-gallery-item {
    min-width: 80px;
    width: 33.333%;
  }

  .deicer-gallery-item img {
    height: 100px;
  }

  .deicer-table-title {
    font-size: 20px;
  }

  .deicer-table th,
  .deicer-table td {
    font-size: 12px;
    padding: 6px 8px;
  }

  .deicer-table-note {
    font-size: 12px;
  }
  .docks-gallery-item img {
    height: 200px;
  }

  .contact-form-title {
    font-size: 20px;
  }

  .contact-submit-btn {
    width: 100%;
    padding: 12px 30px;
  }

  .contact-info-title {
    font-size: 20px;
  }

  .contact-map-title {
    font-size: 24px;
  }

  .contact-map-container {
    height: 300px;
  }
  .fliteboard-products-title {
    font-size: 24px;
  }

  .fliteboard-product-image {
    height: 200px;
  }

  .fliteboard-product-card {
    margin-bottom: 10px;
  }
  .about-hero-banner {
    min-height: 350px;
  }

  .about-hero-title {
    font-size: 36px;
    line-height: 44px;
  }

  .about-hero-description {
    font-size: 14px;
  }

  .about-hero-btn {
    padding: 12px 30px;
    font-size: 14px;
    width: auto;
  }
  .certified-logo {
    max-width: 100px;
  }
  .about-gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
    height: 220px;
  }

  .about-gallery-section {
    padding: 30px 0;
  }
  .boat-videos-section {
    padding: 30px 0;
  }

  /* .video-brand-filters {
    gap: 8px;
  } */

  /* .video-brand-tab {
    padding: 8px 12px;
    min-height: 50px;
    min-width: 80px;
  }

  .video-brand-tab span {
    font-size: 11px;
  } */

  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-thumbnail {
    height: 220px;
  }
  .volkl-brand-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .volkl-logo-container {
    margin-bottom: 25px;
  }

  .volkl-logo {
    max-width: 120px;
  }

  .volkl-description {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .volkl-carousel-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .volkl-product-card {
    margin: 8px;
  }
  .mobile-nav-wrapper {
    width: 100%;
  }

  .mobile-nav-header {
    padding: 15px;
    min-height: 60px;
  }

  .mobile-nav-content {
    padding: 30px;
  }

  .mobile-nav-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .mobile-nav-link {
    padding: 16px 0;
    font-size: 14px;
  }

  .mobile-nav-back {
    font-size: 14px;
  }

  .mobile-brand-grid {
    gap: 10px;
  }

  .mobile-brand-item {
    padding: 10px;
    min-height: 50px;
  }

  .mobile-brand-item img {
    max-height: 35px;
  }
  .contact-form-wrapper{
    padding: 10px;
  }
}
/* Small Mobile - 425px and below */
@media (max-width: 425px) {
.seawall-top-product-section .video-embed iframe{
height: 200px;
}

    .proshop-galry .deicer-gallery-item{
        flex: 0 0 100%;
  }
}
