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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
}

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

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

.nav-logo h2 {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.5rem;
}

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

.nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #dc143c;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: #dc143c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.bar {
  width: 25px;
  height: 3px;
  background: #4a5568;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  min-height: 80vh;
}

.hero-content {
  width: 100%;
  max-width: 1000px;
}

.hero-content h1 {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
}

.hero-quote {
  margin: 2.5rem 0;
}

.hero-quote blockquote {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-left: 4px solid #dc143c;
  border-radius: 12px;
  font-style: italic;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-closing {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #dc143c, #b91c3c);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: white;
  color: #1e3a8a;
  transform: translateY(-3px);
}

/* Section Styling */
section {
  padding: 100px 0;
  position: relative;
}

.what-are-thrusters {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.benefits {
  background: white;
  position: relative;
}

.benefits-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05)),
    url("/images/yacht-marina-background.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.benefits .container {
  position: relative;
  z-index: 2;
}

.installation {
  background: linear-gradient(135deg, #fef7f0 0%, #fed7aa 100%);
}

.brands {
  background: white;
}

.operation {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
}

.investment {
  background: white;
}

/* Section Headers */
section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

section h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #dc143c, #b91c3c);
  border-radius: 2px;
}

/* Content Grid */
.content-grid {
  display: block;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.content-text {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* Visual Elements */

.installation-visual {
  text-align: center;
  margin: 4rem 0;
}

.brands-visual {
  text-align: center;
  margin: 4rem 0;
}

.investment-visual {
  text-align: center;
  margin: 4rem 0;
}

.benefits-yacht-image {
  text-align: center;
  margin: 3rem 0;
}

/* Subsections */
.subsection {
  margin: 4rem 0;
  padding: 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.subsection:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3a8a, #dc143c);
}

.what-are-thrusters .subsection {
  background: white;
}

.benefits .subsection {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.installation .subsection {
  background: white;
}

.brands .subsection {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.operation .subsection {
  background: white;
}

.investment .subsection {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.subsection h3 {
  color: #1e3a8a;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.subsection h3:before {
  content: "⚓";
  position: absolute;
  left: 0;
  color: #dc143c;
  font-size: 1.5rem;
}

.subsection p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #4a5568;
}

/* Benefits Section Specific */
.benefits-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-intro p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #4a5568;
}

.benefits-quote {
  background: linear-gradient(135deg, #ebf8ff, #dbeafe);
  padding: 3rem;
  border-left: 6px solid #dc143c;
  border-radius: 16px;
  font-style: italic;
  margin: 3rem 0;
  color: #1e3a8a;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Lists Styling */
.benefits-list,
.ideal-situations,
.installation-steps,
.configuration-tips,
.selection-guide,
.maintenance-checklist {
  margin-top: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefits-list h4,
.ideal-situations h4,
.installation-steps h4,
.configuration-tips h4,
.selection-guide h4,
.maintenance-checklist h4 {
  color: #dc143c;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-list h4:before {
  content: "🎯";
}
.ideal-situations h4:before {
  content: "⚡";
}
.installation-steps h4:before {
  content: "🔧";
}
.configuration-tips h4:before {
  content: "💡";
}
.selection-guide h4:before {
  content: "📋";
}
.maintenance-checklist h4:before {
  content: "✅";
}

.benefits-list ul,
.installation-steps ul,
.selection-guide ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.benefits-list li,
.installation-steps li,
.selection-guide li {
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 8px;
  position: relative;
  padding-left: 3rem;
  transition: transform 0.3s ease;
}

.benefits-list li:hover,
.installation-steps li:hover,
.selection-guide li:hover {
  transform: translateY(-2px);
}

.benefits-list li:before,
.installation-steps li:before,
.selection-guide li:before {
  content: "✓";
  color: #dc143c;
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.ideal-situations ol,
.configuration-tips ol,
.maintenance-checklist ol {
  padding-left: 0;
  counter-reset: custom-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.ideal-situations li,
.configuration-tips li,
.maintenance-checklist li {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef7f0, #fed7aa);
  border-radius: 12px;
  position: relative;
  padding-left: 4rem;
  counter-increment: custom-counter;
  transition: transform 0.3s ease;
  list-style: none;
}

.ideal-situations li:hover,
.configuration-tips li:hover,
.maintenance-checklist li:hover {
  transform: translateY(-2px);
}

.ideal-situations li:before,
.configuration-tips li:before,
.maintenance-checklist li:before {
  content: counter(custom-counter);
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: #dc143c;
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table,
.brands-table {
  width: 100%;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td,
.brands-table th,
.brands-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th,
.brands-table th {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table tbody tr:hover,
.brands-table tbody tr:hover {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.comparison-table-section {
  margin: 4rem 0;
}

.comparison-table-section h3 {
  color: #1e3a8a;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* Intro sections */
.installation-intro,
.brands-intro,
.operation-intro,
.investment-intro {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 1.15rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.installation-intro blockquote,
.operation-intro blockquote {
  background: linear-gradient(135deg, #fef7f0, #fed7aa);
  padding: 3rem;
  border-left: 6px solid #dc143c;
  border-radius: 16px;
  font-style: italic;
  margin: 3rem 0;
  color: #1e3a8a;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Manufacturing Section */
.manufacturing {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.manufacturing:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.manufacturing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.manufacturing h2 {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: left;
}

.manufacturing h2:after {
  background: #dc143c;
  left: 0;
  transform: none;
}

.manufacturing p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.manufacturing-features {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.manufacturing-features li {
  font-size: 1.1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border-left: 4px solid #dc143c;
}

/* Service Section */
.service {
  padding: 100px 0;
  background: white;
}

.service h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 4rem;
}

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

.service-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3a8a, #dc143c);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.contact-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(rgba(30, 58, 138, 0.1), rgba(30, 58, 138, 0.05)), url("/images/mystic-harbor.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

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

.contact h2 {
  color: #1e3a8a;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: left;
}

.contact h2:after {
  left: 0;
  transform: none;
}

.contact p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 3rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item strong {
  color: #dc143c;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-item p {
  margin: 0;
  font-size: 1rem;
  color: #4a5568;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  background: white;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: #dc143c;
  font-weight: 700;
}

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

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

.footer-section a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #dc143c;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 2rem;
  text-align: center;
  color: #cbd5e0;
}

/* Strong text styling */
strong {
  color: #dc143c;
  font-weight: 700;
}

/* ========================================
   ADDITIONAL PAGES STYLES
   ======================================== */

/* Page Headers for internal pages */
.page-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #dc143c;
}

.breadcrumbs span {
  color: #9ca3af;
}

/* Content Pages Layout */
.content-page {
  padding: 80px 0;
  background: white;
}

.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
}

.main-content {
  background: white;
}

.sidebar {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 16px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar h3 {
  color: #1e3a8a;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.sidebar ul {
  list-style: none;
}

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

.sidebar ul li a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem;
  border-radius: 6px;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
  color: #dc143c;
  background: white;
}

/* Manufacturing Page Specific */
.manufacturing-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.process-step {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.process-step:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1e3a8a, #dc143c);
  border-radius: 16px 16px 0 0;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc143c, #b91c3c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.quality-certifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.certification-badge {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid #e2e8f0;
}

.certification-badge h4 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Service Page Specific */
.service-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.service-area {
  background: linear-gradient(135deg, #f0f9ff, #dbeafe);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-area-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-area h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-pricing {
  background: linear-gradient(135deg, #fef7f0, #fed7aa);
  padding: 3rem;
  border-radius: 20px;
  margin: 4rem 0;
  text-align: center;
}

.service-pricing h3 {
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card h4 {
  color: #dc143c;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-card ul li:before {
  content: "✓";
  color: #dc143c;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Contact Page Specific */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #dc143c;
}

.contact-method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc143c, #b91c3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.contact-method h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-method p {
  color: #4a5568;
  line-height: 1.6;
}

.map-container {
  margin: 4rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.office-hours {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 3rem;
  border-radius: 20px;
  margin: 4rem 0;
}

.office-hours h3 {
  color: #1e3a8a;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.hours-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hours-item .day {
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.hours-item .time {
  color: #4a5568;
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

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

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

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

  .page-header h1 {
    font-size: 2.5rem;
  }

  .content-grid,
  .manufacturing-content,
  .contact-content,
  .content-sidebar-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .subsection {
    padding: 2rem;
  }

  section h2 {
    font-size: 2.2rem;
  }

  .benefits-list ul,
  .installation-steps ul,
  .selection-guide ul {
    grid-template-columns: 1fr;
  }

  .ideal-situations ol,
  .configuration-tips ol,
  .maintenance-checklist ol {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .manufacturing-process,
  .service-areas,
  .pricing-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .operation-visual {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    position: static;
  }
}

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

  .page-header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.8rem;
  }

  .subsection {
    padding: 1.5rem;
  }

  .comparison-table th,
  .comparison-table td,
  .brands-table th,
  .brands-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

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

  .contact-form,
  .service-pricing,
  .office-hours {
    padding: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subsection,
.service-card,
.contact-item,
.process-step,
.service-area,
.contact-method {
  animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
  .navbar,
  .hero-buttons,
  .contact-form,
  .footer {
    display: none;
  }

  .hero {
    background: white;
    color: black;
    padding: 2rem 0;
  }

  section {
    padding: 2rem 0;
  }

  .subsection {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #dc143c;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
    color: #fff;
  }

  .btn-primary {
    background: #000;
    border: 2px solid #fff;
  }

  .subsection {
    border: 2px solid #000;
  }
}

/* Single Column Layout Classes */
.content-text-only {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.manufacturing-text-only {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.contact-text-only {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}
