/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables - Marine Theme */
:root {
  --deep-ocean: #0f172a;
  --ocean-blue: #1e40af;
  --teal-primary: #0d9488;
  --teal-light: #14b8a6;
  --slate-dark: #334155;
  --slate-medium: #64748b;
  --slate-light: #cbd5e1;
  --ocean-foam: #f0fdfa;
  --pearl-white: #fefefe;
  --gold-accent: #f59e0b;
  --coral-accent: #f97316;
  --gradient-ocean: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #0d9488 100%);
  --gradient-wave: linear-gradient(90deg, #0d9488 0%, #14b8a6 50%, #06b6d4 100%);
}

/* Header Styles */
.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--pearl-white);
}

.logo-icon {
  font-size: 2rem;
  color: var(--teal-light);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  color: var(--pearl-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal-light);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-wave);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--pearl-white);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: var(--gradient-ocean);
  padding: 120px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C300,120 900,0 1200,60 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: cover;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--pearl-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
  color: var(--pearl-white);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-wave);
  color: var(--pearl-white);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--pearl-white);
  border: 2px solid var(--teal-light);
}

.btn-outline:hover {
  background: var(--teal-light);
  color: var(--deep-ocean);
}

.btn-emergency {
  background: #dc2626;
  color: var(--pearl-white);
  font-size: 1.2rem;
  padding: 16px 32px;
}

.btn-emergency:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--pearl-white);
  position: relative;
  max-width: 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--teal-light);
}

.card-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gold-accent);
  color: var(--deep-ocean);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Page Hero for other pages */
.page-hero {
  background: var(--gradient-ocean);
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pearl-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Quote Section */
.quote-section {
  padding: 80px 0;
  background: var(--ocean-foam);
  border-top: 3px solid var(--teal-light);
}

.main-quote {
  text-align: center;
  font-size: 1.4rem;
  color: var(--slate-dark);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 2rem;
}

.main-quote::before,
.main-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--teal-light);
  position: absolute;
  top: -20px;
}

.main-quote::before {
  left: 0;
}

.main-quote::after {
  right: 0;
}

.quote-footer {
  text-align: center;
  font-size: 1.1rem;
  color: var(--slate-medium);
  max-width: 800px;
  margin: 0 auto;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--slate-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Catalogue Access Section */
.catalogue-access {
  padding: 100px 0;
  background: var(--pearl-white);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.access-method {
  background: linear-gradient(135deg, var(--ocean-foam) 0%, rgba(240, 253, 250, 0.5) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--slate-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.access-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-wave);
}

.method-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.access-method h3 {
  font-size: 1.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.access-method p {
  color: var(--slate-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.method-features {
  list-style: none;
  text-align: left;
}

.method-features li {
  color: var(--slate-dark);
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.method-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.request-process {
  background: var(--deep-ocean);
  padding: 4rem;
  border-radius: 20px;
  color: var(--pearl-white);
}

.request-process h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--teal-light);
  text-align: center;
}

.request-process > p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.step-number {
  background: var(--gradient-wave);
  color: var(--deep-ocean);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--teal-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Updates 2025 Section */
.updates-2025 {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ocean-foam) 0%, rgba(240, 253, 250, 0.3) 100%);
}

.updates-header {
  text-align: center;
  margin-bottom: 4rem;
}

.updates-header h2 {
  font-size: 2.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.updates-header p {
  font-size: 1.2rem;
  color: var(--slate-medium);
  max-width: 600px;
  margin: 0 auto;
}

.updates-grid {
  max-width: 800px;
  margin: 0 auto;
}

.update-category h3 {
  font-size: 2rem;
  color: var(--deep-ocean);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.updates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--pearl-white);
  border-radius: 15px;
  border-left: 4px solid var(--teal-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.update-item:hover {
  transform: translateY(-3px);
}

.update-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.update-item div {
  color: var(--slate-dark);
  font-weight: 500;
}

/* Products Overview Section */
.products-overview {
  padding: 100px 0;
  background: var(--pearl-white);
}

.products-grid {
  margin-top: 3rem;
}

.product-category {
  background: var(--deep-ocean);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
  background: var(--gradient-wave);
  padding: 2rem;
  text-align: center;
}

.category-header h3 {
  font-size: 1.8rem;
  color: var(--deep-ocean);
  font-weight: 600;
}

.equipment-table {
  padding: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pearl-white);
  border-radius: 10px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-light);
}

th {
  background: var(--deep-ocean);
  color: var(--pearl-white);
  font-weight: 600;
  font-size: 1rem;
}

td {
  color: var(--slate-dark);
}

tr:hover {
  background: var(--ocean-foam);
}

/* Engine Systems Section */
.engine-systems {
  padding: 100px 0;
  background: var(--ocean-foam);
}

.systems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.system-category {
  background: var(--pearl-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--teal-primary);
}

.system-category h2 {
  font-size: 1.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.system-category > p {
  color: var(--slate-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.engine-features,
.waste-features {
  margin-top: 2rem;
}

.feature {
  padding: 1.5rem;
  background: var(--ocean-foam);
  border-radius: 10px;
  border-left: 3px solid var(--teal-light);
}

.feature h4 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature p {
  color: var(--slate-medium);
  line-height: 1.6;
}

/* Propulsion Options Section */
.propulsion-options {
  padding: 100px 0;
  background: var(--pearl-white);
}

.propulsion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.propulsion-type {
  background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 100%);
  padding: 3rem;
  border-radius: 20px;
  color: var(--pearl-white);
  position: relative;
  overflow: hidden;
}

.propulsion-type::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.propulsion-type h3 {
  font-size: 1.6rem;
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.propulsion-type > p {
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.models-list h4,
.electric-solutions h4,
.thruster-choices h4 {
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.engine-models,
.electric-list,
.thruster-list {
  list-style: none;
  padding-left: 0;
}

.engine-models li,
.thruster-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
  opacity: 0.9;
}

.engine-models li::before,
.thruster-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--teal-light);
}

.electric-list {
  counter-reset: electric-counter;
}

.electric-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  opacity: 0.9;
  counter-increment: electric-counter;
}

.electric-list li::before {
  content: counter(electric-counter);
  position: absolute;
  left: 0;
  background: var(--teal-light);
  color: var(--deep-ocean);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--ocean-foam);
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: 2.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pricing-header p {
  font-size: 1.2rem;
  color: var(--slate-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.pricing-info,
.spare-parts {
  background: var(--pearl-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-info h3,
.spare-parts h3 {
  font-size: 1.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.price-details p,
.parts-info p {
  color: var(--slate-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-features,
.ordering-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-feature,
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--ocean-foam);
  border-radius: 10px;
  border-left: 3px solid var(--teal-primary);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.price-feature h4,
.process-item h4 {
  color: var(--deep-ocean);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.price-feature p,
.process-item p {
  color: var(--slate-medium);
  line-height: 1.6;
  margin: 0;
}

/* Boat Types Section */
.boat-types {
  padding: 100px 0;
  background: var(--pearl-white);
}

.boat-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.boat-category {
  background: linear-gradient(135deg, var(--ocean-foam) 0%, rgba(240, 253, 250, 0.5) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--slate-light);
}

.boat-category h3 {
  font-size: 1.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.boat-category > p {
  color: var(--slate-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.commercial-offerings h4,
.customization-features .custom-feature h4 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.commercial-list {
  list-style: none;
  counter-reset: commercial-counter;
}

.commercial-list li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 2rem;
  color: var(--slate-dark);
  counter-increment: commercial-counter;
}

.commercial-list li::before {
  content: counter(commercial-counter);
  position: absolute;
  left: 0;
  background: var(--teal-primary);
  color: var(--pearl-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.customization-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.custom-feature {
  padding: 1.5rem;
  background: var(--pearl-white);
  border-radius: 10px;
  border-left: 3px solid var(--coral-accent);
}

.custom-feature p {
  color: var(--slate-medium);
  line-height: 1.6;
  margin: 0;
}

/* Why Vetus Section */
.why-vetus {
  padding: 100px 0;
  background: var(--deep-ocean);
  color: var(--pearl-white);
}

.why-vetus .section-header h2 {
  color: var(--pearl-white);
}

.why-vetus .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.advantage {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  text-align: center;
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.advantage h3 {
  font-size: 1.6rem;
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.advantage > p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.advantage-details {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2);
}

.advantage-details p {
  opacity: 0.8;
  line-height: 1.6;
  text-align: left;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: var(--ocean-foam);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 2.8rem;
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--slate-medium);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.info-card {
  background: var(--pearl-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--teal-primary);
}

.info-card h3 {
  font-size: 2rem;
  color: var(--deep-ocean);
  margin-bottom: 2rem;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.detail strong {
  color: var(--deep-ocean);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.detail p {
  color: var(--slate-medium);
  line-height: 1.6;
  margin: 0;
}

.detail a {
  color: var(--teal-primary);
  text-decoration: none;
}

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

.contact-form {
  background: var(--deep-ocean);
  padding: 3rem;
  border-radius: 20px;
  color: var(--pearl-white);
}

.contact-form h3 {
  font-size: 2rem;
  color: var(--teal-light);
  margin-bottom: 2rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--teal-light);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--pearl-white);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Dealership Page Styles */
.dealership-info {
  padding: 100px 0;
  background: var(--pearl-white);
}

.dealership-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.dealership-content .lead {
  font-size: 1.2rem;
  color: var(--slate-medium);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.dealership-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--ocean-foam);
  border-radius: 15px;
  border-left: 4px solid var(--teal-primary);
}

.feature-item .feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  color: var(--deep-ocean);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-content p {
  color: var(--slate-medium);
  line-height: 1.6;
}

.dealership-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--deep-ocean);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  color: var(--pearl-white);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-light);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--ocean-foam);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--pearl-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid var(--teal-primary);
}

.service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--teal-primary);
}

.service-card h3 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--slate-medium);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  color: var(--slate-dark);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-primary);
  font-weight: bold;
}

/* Location Section */
.location-section {
  padding: 100px 0;
  background: var(--pearl-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.location-info .lead {
  font-size: 1.2rem;
  color: var(--slate-medium);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--ocean-foam);
  border-radius: 10px;
}

.location-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.location-item h4 {
  color: var(--deep-ocean);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location-item p {
  color: var(--slate-medium);
  line-height: 1.6;
  margin: 0;
}

.service-area {
  background: var(--deep-ocean);
  padding: 3rem;
  border-radius: 20px;
  color: var(--pearl-white);
}

.service-area h3 {
  color: var(--teal-light);
  margin-bottom: 2rem;
  font-weight: 600;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.coverage-column h4 {
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.coverage-column ul {
  list-style: none;
}

.coverage-column li {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  position: relative;
  padding-left: 1rem;
}

.coverage-column li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-light);
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background: var(--ocean-foam);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--pearl-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.member-photo {
  margin-bottom: 1.5rem;
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--ocean-foam);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  border: 3px solid var(--teal-light);
}

.member-info h3 {
  color: var(--deep-ocean);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.member-title {
  color: var(--teal-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--slate-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.credential {
  background: var(--teal-primary);
  color: var(--pearl-white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-ocean);
  text-align: center;
  color: var(--pearl-white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Contact Page Styles */
.contact-page-section {
  padding: 100px 0;
  background: var(--pearl-white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section h2 {
  color: var(--deep-ocean);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--slate-medium);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--ocean-foam);
  border-radius: 15px;
  border-left: 4px solid var(--teal-primary);
}

.contact-method .method-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.method-content h3 {
  color: var(--deep-ocean);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.method-content p {
  color: var(--slate-medium);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.method-content a {
  color: var(--teal-primary);
  text-decoration: none;
}

.method-content a:hover {
  text-decoration: underline;
}

.method-note {
  font-size: 0.9rem;
  color: var(--slate-medium);
  font-style: italic;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day {
  font-weight: 500;
  color: var(--slate-dark);
}

.time {
  color: var(--slate-medium);
}

.contact-form-section {
  background: var(--deep-ocean);
  padding: 3rem;
  border-radius: 20px;
  color: var(--pearl-white);
}

.contact-form-container h2 {
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-form-container p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--ocean-foam);
}

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

.map-header h2 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: var(--pearl-white);
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-content .map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--teal-primary);
}

.map-content h3 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.map-content p {
  color: var(--slate-medium);
  margin-bottom: 2rem;
}

.map-directions h4 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.map-directions ul {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.map-directions li {
  color: var(--slate-medium);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.map-directions li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal-primary);
}

/* Service Areas Section */
.service-areas-section {
  padding: 100px 0;
  background: var(--pearl-white);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.service-area-card {
  background: var(--ocean-foam);
  padding: 3rem;
  border-radius: 20px;
  border-top: 4px solid var(--teal-primary);
}

.service-area-card h3 {
  color: var(--deep-ocean);
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.area-column h4 {
  color: var(--deep-ocean);
  margin-bottom: 1rem;
  font-weight: 600;
}

.area-column ul {
  list-style: none;
}

.area-column li {
  color: var(--slate-medium);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.area-column li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal-primary);
}

.service-note {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--deep-ocean);
  border-radius: 15px;
  color: var(--pearl-white);
  text-align: center;
}

.service-note p {
  margin: 0;
  line-height: 1.6;
}

/* Emergency Section */
.emergency-section {
  padding: 60px 0;
  background: var(--deep-ocean);
  color: var(--pearl-white);
}

.emergency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

.emergency-icon {
  font-size: 4rem;
  color: #dc2626;
}

.emergency-info h2 {
  color: var(--pearl-white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.emergency-info p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.emergency-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.emergency-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--deep-ocean);
  color: var(--pearl-white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--teal-light);
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--teal-light);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container,
  .access-grid,
  .systems-grid,
  .pricing-grid,
  .boat-categories,
  .contact-content,
  .dealership-grid,
  .location-grid,
  .contact-page-grid,
  .service-areas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .coverage-list,
  .area-list {
    grid-template-columns: 1fr;
  }

  .dealership-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--deep-ocean);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .updates-header h2,
  .pricing-header h2,
  .contact-header h2 {
    font-size: 2.2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .updates-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
  }

  .dealership-stats {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.9rem;
  }

  th,
  td {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .floating-card,
  .access-method,
  .system-category,
  .propulsion-type,
  .pricing-info,
  .spare-parts,
  .boat-category,
  .advantage,
  .info-card,
  .contact-form,
  .service-card,
  .team-member {
    padding: 2rem;
  }

  .request-process {
    padding: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .main-quote {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .main-quote::before,
  .main-quote::after {
    font-size: 3rem;
    top: -15px;
  }

  table {
    font-size: 0.8rem;
  }

  th,
  td {
    padding: 0.6rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-method,
  .feature-item,
  .location-item {
    padding: 1.5rem;
  }

  .contact-form-section,
  .service-area-card {
    padding: 2rem;
  }
}
