/* ==========================================================================
   SERAPHIC CURRENT - VIBRANT ENERGETIC DESIGN
   Modern Yacht Repair Services - Genova, Italia
   ========================================================================== */

/* CSS RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY - Vibrant & Energetic
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #1B4965;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #1B4965 0%, #62B6CB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1B4965;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #62B6CB 0%, #CAE9FF 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1B4965;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2d2d2d;
}

a {
  color: #62B6CB;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #1B4965;
  transform: translateX(2px);
}

strong {
  font-weight: 700;
  color: #1B4965;
}

/* CONTAINER & LAYOUT - FLEXBOX ONLY
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

/* HEADER - Vibrant & Bold
   ========================================================================== */
header {
  background: linear-gradient(135deg, #1B4965 0%, #2d6a8a 100%);
  box-shadow: 0 4px 20px rgba(27, 73, 101, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 4px solid #62B6CB;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #CAE9FF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #62B6CB, #CAE9FF);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

/* MOBILE MENU TOGGLE
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #62B6CB 0%, #1B4965 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(98, 182, 203, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(98, 182, 203, 0.6);
}

/* MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1B4965 0%, #0d2433 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #CAE9FF;
  border: 2px solid #62B6CB;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #62B6CB;
  color: #ffffff;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #CAE9FF;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #ffffff;
  border-left-color: #62B6CB;
  background: rgba(98, 182, 203, 0.1);
  transform: translateX(10px);
}

/* BUTTONS - Energetic & Bold
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #62B6CB 0%, #1B4965 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(98, 182, 203, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(98, 182, 203, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #1B4965;
  border: 3px solid #62B6CB;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #62B6CB 0%, #1B4965 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(98, 182, 203, 0.5);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
  align-items: center;
}

/* HERO SECTION - Dynamic & Energetic
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #1B4965 0%, #62B6CB 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(202, 233, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.tagline {
  font-size: 24px;
  font-style: italic;
  color: #CAE9FF;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #f0f9ff;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: #CAE9FF;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 2px solid rgba(202, 233, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: #CAE9FF;
}

/* CARD LAYOUTS - FLEXBOX GRID
   ========================================================================== */
.services-grid,
.features-grid,
.testimonials-grid,
.stats-grid,
.categories-grid,
.differentiators-grid,
.contact-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* SERVICE CARDS - Electric & Dynamic
   ========================================================================== */
.service-card,
.feature-card,
.testimonial-card,
.stat-card,
.category-card,
.differentiator-card,
.contact-card,
.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #62B6CB 0%, #CAE9FF 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.feature-card:hover,
.differentiator-card:hover,
.contact-card:hover,
.resource-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(98, 182, 203, 0.3);
  border-color: #62B6CB;
}

.service-card h3,
.feature-card h3,
.differentiator-card h3 {
  color: #1B4965;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #2d2d2d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #62B6CB;
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
}

/* TESTIMONIAL CARDS - Readable & Vibrant
   ========================================================================== */
.testimonials {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-left: 6px solid #62B6CB;
  box-shadow: 0 10px 40px rgba(27, 73, 101, 0.15);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.8;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.client-info strong {
  color: #1B4965;
  font-size: 16px;
  font-weight: 700;
}

.client-info span {
  color: #62B6CB;
  font-size: 14px;
  font-weight: 600;
}

/* PROCESS STEPS - Dynamic Flow
   ========================================================================== */
.process {
  background: linear-gradient(135deg, #1B4965 0%, #2d6a8a 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.process h2 {
  color: #ffffff;
}

.process h2::after {
  background: linear-gradient(90deg, #62B6CB, #CAE9FF);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(202, 233, 255, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: #CAE9FF;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #62B6CB 0%, #CAE9FF 100%);
  color: #1B4965;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(98, 182, 203, 0.4);
}

.step h3 {
  color: #CAE9FF;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #f0f9ff;
  font-size: 15px;
}

/* CTA SECTIONS - Bold & Energetic
   ========================================================================== */
.cta-banner,
.cta-section,
.cta-section-strong {
  background: linear-gradient(135deg, #62B6CB 0%, #1B4965 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(202, 233, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2,
.cta-section-strong h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
}

.cta-banner h2::after,
.cta-section h2::after,
.cta-section-strong h2::after {
  display: none;
}

.cta-banner p,
.cta-section p,
.cta-section-strong p {
  font-size: 18px;
  color: #CAE9FF;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* STATS & NUMBERS - Electric Display
   ========================================================================== */
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 3px solid #62B6CB;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #1B4965;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #62B6CB;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* DETAILED SERVICE SECTIONS
   ========================================================================== */
.service-detail {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.1);
  border-left: 6px solid #62B6CB;
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 12px 40px rgba(98, 182, 203, 0.3);
  transform: translateX(10px);
}

.service-detail h3 {
  color: #1B4965;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: #2d2d2d;
  position: relative;
  padding-left: 12px;
}

.service-detail ul li::before {
  content: '→';
  position: absolute;
  left: -12px;
  color: #62B6CB;
  font-weight: 700;
}

.price-display {
  font-size: 32px;
  font-weight: 700;
  color: #62B6CB;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

/* CASE STUDIES & PORTFOLIO
   ========================================================================== */
.case-study {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.1);
  border-top: 4px solid #62B6CB;
}

.case-study h3 {
  color: #1B4965;
  font-size: 24px;
  margin-bottom: 20px;
}

/* CONTACT SECTIONS
   ========================================================================== */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: space-between;
}

.contact-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(27, 73, 101, 0.1);
  border: 2px solid #CAE9FF;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(98, 182, 203, 0.2);
  border-color: #62B6CB;
}

.contact-item h3 {
  color: #1B4965;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-item p,
.contact-item a {
  color: #2d2d2d;
  font-size: 15px;
  line-height: 1.8;
}

/* FORM STYLING - Energetic & Modern
   ========================================================================== */
.form-fields {
  max-width: 600px;
  margin: 40px auto;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #1B4965;
  font-weight: 600;
  font-size: 15px;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 16px;
  border: 3px solid #CAE9FF;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: #62B6CB;
  box-shadow: 0 4px 20px rgba(98, 182, 203, 0.2);
}

.field-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  border: 2px solid #ffc107;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}

.form-notice p {
  color: #1a1a1a;
  margin: 0;
}

/* BREADCRUMB - Clean Navigation
   ========================================================================== */
.breadcrumb {
  font-size: 14px;
  color: #62B6CB;
  margin-bottom: 16px;
  font-weight: 600;
}

.breadcrumb a {
  color: #62B6CB;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #1B4965;
}

.breadcrumb span {
  color: #1B4965;
}

/* PAGE HERO - Legal & Info Pages
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #1B4965 0%, #62B6CB 100%);
  color: #ffffff;
  padding: 80px 20px 60px;
  margin-bottom: 0;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.page-hero .intro {
  font-size: 18px;
  color: #CAE9FF;
  max-width: 700px;
}

.page-hero .last-updated {
  color: #CAE9FF;
  font-size: 14px;
  font-style: italic;
}

/* LEGAL CONTENT - Readable Layout
   ========================================================================== */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  color: #1B4965;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #1B4965;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content ul,
.legal-content ol {
  margin: 24px 0;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #2d2d2d;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* THANK YOU PAGE - Celebratory Style
   ========================================================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #62B6CB 0%, #1B4965 100%);
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 0;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #ffffff;
  color: #62B6CB;
  border-radius: 50%;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you-hero h1 {
  color: #ffffff;
  font-size: 48px;
  -webkit-text-fill-color: #ffffff;
  background: none;
  margin-bottom: 20px;
}

.confirmation-message {
  font-size: 20px;
  color: #CAE9FF;
  margin-bottom: 32px;
}

/* FOOTER - Professional & Complete
   ========================================================================== */
footer {
  background: linear-gradient(135deg, #1B4965 0%, #0d2433 100%);
  color: #CAE9FF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p,
.footer-section li {
  color: #CAE9FF;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #CAE9FF;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-legal {
  border-top: 2px solid rgba(202, 233, 255, 0.2);
  padding-top: 24px;
  margin-bottom: 24px;
}

.footer-legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: center;
}

.footer-legal a {
  color: #CAE9FF;
  font-size: 14px;
  font-weight: 600;
}

.footer-legal a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(202, 233, 255, 0.1);
}

.footer-bottom p {
  color: #CAE9FF;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER - Fixed Bottom
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4965 0%, #0d2433 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #62B6CB;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 400px;
  color: #CAE9FF;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #62B6CB 0%, #1B4965 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(98, 182, 203, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #CAE9FF;
  border: 2px solid #62B6CB;
}

.cookie-reject:hover {
  background: rgba(98, 182, 203, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #CAE9FF;
  border: 2px solid rgba(202, 233, 255, 0.3);
}

.cookie-settings:hover {
  border-color: #CAE9FF;
  background: rgba(202, 233, 255, 0.1);
}

/* COOKIE MODAL - Preferences
   ========================================================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1B4965;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f0f9ff;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 2px solid #CAE9FF;
}

.cookie-category h3 {
  color: #1B4965;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #62B6CB;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - Mobile First
   ========================================================================== */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Section padding */
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  /* Flexbox cards - single column */
  .service-card,
  .feature-card,
  .testimonial-card,
  .stat-card,
  .category-card,
  .differentiator-card,
  .contact-card,
  .resource-card,
  .step,
  .contact-item,
  .footer-section {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-legal ul {
    flex-direction: column;
    align-items: center;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Cards - 2 columns */
  .service-card,
  .feature-card,
  .differentiator-card,
  .contact-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Process steps - 2 columns */
  .step {
    flex: 1 1 calc(50% - 30px);
  }
}

/* UTILITY CLASSES
   ========================================================================== */
.text-center {
  text-align: center;
}

.section-intro {
  font-size: 18px;
  color: #2d2d2d;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

.intro {
  font-size: 20px;
  color: #62B6CB;
  line-height: 1.8;
}

/* ANIMATIONS & TRANSITIONS
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY & FOCUS STATES
   ========================================================================== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #62B6CB;
  outline-offset: 2px;
}

/* PRINT STYLES
   ========================================================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .btn {
    display: none;
  }
  
  body {
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}