/* ===============================================
   SolleCogno - Industrial Modern CSS Styles
   Design Style: Industrial Modern Aesthetic
   =============================================== */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #E8E8E8;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #F5A623;
  padding-left: 16px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #3A3A3A;
  font-size: 16px;
}

a {
  color: #2C5F8D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #F5A623;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #3A3A3A;
}

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #F5A623;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.main-nav a:hover {
  color: #F5A623;
  border-bottom: 2px solid #F5A623;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #1A3D5F;
  color: #FFFFFF;
  border: 2px solid #F5A623;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #2C5F8D;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A3D5F 0%, #0D1F33 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px 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: #FFFFFF;
  border: 2px solid #F5A623;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #F5A623;
  color: #1A3D5F;
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.mobile-nav a:hover {
  color: #F5A623;
  border-left: 3px solid #F5A623;
  padding-left: 24px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  border-radius: 2px;
}

.btn-primary {
  background: #F5A623;
  color: #1A1A1A;
  border-color: #F5A623;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  background: #1A3D5F;
  color: #FFFFFF;
  border-color: #F5A623;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1A3D5F;
  border-color: #1A3D5F;
}

.btn-secondary:hover {
  background: #1A3D5F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

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

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 166, 35, 0.3);
  backdrop-filter: blur(10px);
  color: #000
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section:nth-child(even) {
  background: #F5F5F5;
}

section:nth-child(odd) {
  background: #FFFFFF;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
}

section > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #3A3A3A;
}

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  background: #FFFFFF;
  border-top: 4px solid #F5A623;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.solution-card {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  padding: 32px 24px;
  border-left: 4px solid #F5A623;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.solution-card h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 0;
}

/* SERVICES SECTIONS */
.services-preview,
.services-detailed {
  background: #F5F5F5;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: #FFFFFF;
  padding: 32px;
  border: 2px solid #D0D0D0;
  border-top: 4px solid #F5A623;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #1A3D5F;
}

.service-card h3 {
  color: #1A3D5F;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  color: #3A3A3A;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #F5A623;
  font-family: 'Montserrat', sans-serif;
  margin-top: auto;
}

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #F5A623;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
  text-align: left;
  border-left: none;
  padding-left: 0;
  color: #1A3D5F;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #F5A623;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin: 16px 0;
}

/* PROCESS SECTION */
.process {
  background: #FFFFFF;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.step-card,
.process-step {
  background: #F5F5F5;
  padding: 32px;
  border: 2px solid #D0D0D0;
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover,
.process-step:hover {
  border-color: #F5A623;
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  color: #FFFFFF;
  border: 3px solid #F5A623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

.step-card h3,
.process-step h3 {
  color: #1A3D5F;
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step {
  flex: 1 1 100%;
  margin-bottom: 24px;
}

.process-step h3 {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  color: #FFFFFF;
}

.testimonials h2 {
  color: #FFFFFF;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-left: 4px solid #F5A623;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: #2A2A2A;
  font-size: 16px;
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1A3D5F;
  font-style: normal;
  margin-top: auto;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #F5A623 0%, #E89400 100%);
  color: #1A1A1A;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.03) 10px,
    rgba(0, 0, 0, 0.03) 20px
  );
  pointer-events: none;
}

.cta-section h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border-left: none;
  padding-left: 0;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #2A2A2A;
  position: relative;
  z-index: 2;
}

.cta-section .btn-primary {
  background: #1A3D5F;
  color: #FFFFFF;
  border-color: #1A3D5F;
  position: relative;
  z-index: 2;
}

.cta-section .btn-primary:hover {
  background: #FFFFFF;
  color: #1A3D5F;
  border-color: #1A3D5F;
}

.guarantee {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #2A2A2A;
  position: relative;
  z-index: 2;
}

/* COMPANY STORY */
.company-story {
  background: #FFFFFF;
}

.company-story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  text-align: left;
}

/* VALUES */
.values {
  background: #F5F5F5;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card {
  background: #FFFFFF;
  padding: 32px;
  border-top: 4px solid #F5A623;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  color: #1A3D5F;
  margin-bottom: 16px;
}

/* TEAM */
.team {
  background: #FFFFFF;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-member {
  background: #F5F5F5;
  padding: 32px;
  border: 2px solid #D0D0D0;
  border-left: 4px solid #F5A623;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.team-member h3 {
  color: #1A3D5F;
  margin-bottom: 8px;
}

.team-member .position {
  font-weight: 700;
  color: #F5A623;
  margin-bottom: 12px;
  display: block;
}

/* ACHIEVEMENTS */
.achievements {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  color: #FFFFFF;
}

.achievements h2 {
  color: #FFFFFF;
}

.achievements ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.achievements li {
  color: #FFFFFF;
  padding: 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #F5A623;
  font-size: 16px;
}

.achievements li::before {
  content: '✓';
  color: #F5A623;
  font-weight: 700;
  margin-right: 12px;
  font-size: 20px;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: #FFFFFF;
  text-align: center;
}

/* PROCESS (AKO TO FUNGUJE) */
.overview {
  background: #F5F5F5;
}

.overview ul {
  max-width: 800px;
  margin: 32px auto;
  list-style: none;
}

.overview li {
  padding: 16px;
  margin-bottom: 12px;
  background: #FFFFFF;
  border-left: 4px solid #F5A623;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.overview li::before {
  content: '✓';
  color: #F5A623;
  font-weight: 700;
  margin-right: 12px;
  font-size: 18px;
}

.detailed-process {
  background: #FFFFFF;
}

/* COMMUNICATION OPTIONS */
.communication-options {
  background: #F5F5F5;
}

.communication-options ul {
  max-width: 800px;
  margin: 32px auto;
}

/* PRICING */
.pricing-intro {
  background: #FFFFFF;
  text-align: center;
}

.pricing-intro ul {
  max-width: 600px;
  margin: 32px auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pricing-intro li {
  background: #F5F5F5;
  padding: 12px 24px;
  border-left: 4px solid #F5A623;
  font-weight: 600;
}

.pricing-table {
  background: #F5F5F5;
}

.pricing-table .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pricing-card {
  background: #FFFFFF;
  padding: 40px 32px;
  border: 2px solid #D0D0D0;
  border-top: 4px solid #1A3D5F;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-top-color: #F5A623;
}

.pricing-card.featured {
  border-top-color: #F5A623;
  border-width: 4px;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #F5A623;
  color: #1A1A1A;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  color: #1A3D5F;
  font-size: 20px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  color: #F5A623;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

.pricing-card p {
  flex-grow: 1;
  color: #3A3A3A;
}

.pricing-card .btn-secondary,
.pricing-card .btn-primary {
  margin-top: auto;
  width: 100%;
}

.pricing-details {
  background: #FFFFFF;
}

.pricing-details .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.detail-card {
  background: #F5F5F5;
  padding: 32px;
  border-left: 4px solid #F5A623;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.detail-card h3 {
  color: #1A3D5F;
  margin-bottom: 16px;
}

/* CONTACT */
.contact-options {
  background: #F5F5F5;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: #FFFFFF;
  padding: 32px;
  border-top: 4px solid #F5A623;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
  color: #1A3D5F;
  margin-bottom: 16px;
}

.contact-card strong {
  display: block;
  font-size: 18px;
  color: #F5A623;
  margin: 12px 0;
}

.contact-form-section {
  background: #FFFFFF;
}

.form-notice {
  background: #F5F5F5;
  padding: 32px;
  border-left: 4px solid #F5A623;
  max-width: 800px;
  margin: 0 auto;
}

.office-info {
  background: #F5F5F5;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.detail-block h3 {
  color: #1A3D5F;
  margin-bottom: 16px;
  font-size: 20px;
}

.team-contact {
  background: #FFFFFF;
}

.team-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-contact-card {
  background: #F5F5F5;
  padding: 32px;
  border-left: 4px solid #F5A623;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.team-contact-card h3 {
  color: #1A3D5F;
  margin-bottom: 8px;
}

.team-contact-card .position {
  font-weight: 700;
  color: #F5A623;
  display: block;
  margin-bottom: 4px;
}

.team-contact-card .specialization {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-content {
  background: #FFFFFF;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #F5F5F5;
  border-left: 4px solid #F5A623;
}

.legal-section h2 {
  text-align: left;
  border-left: none;
  padding-left: 0;
  color: #1A3D5F;
  font-size: 24px;
  margin-bottom: 20px;
}

.legal-section h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section ul {
  margin-top: 16px;
}

/* THANK YOU PAGE */
.hero.thank-you {
  padding: 120px 20px;
}

.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #F5A623;
  color: #FFFFFF;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.next-steps {
  background: #F5F5F5;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.urgent-contact {
  background: #FFFFFF;
  text-align: center;
}

.contact-highlight {
  background: #F5F5F5;
  padding: 32px;
  border-left: 4px solid #F5A623;
  max-width: 600px;
  margin: 32px auto;
  font-size: 18px;
}

.useful-links {
  background: #F5F5F5;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.link-card {
  background: #FFFFFF;
  padding: 32px;
  border-top: 4px solid #F5A623;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.link-card h3 {
  color: #1A3D5F;
}

.link-card .btn-secondary {
  margin-top: auto;
}

.social-proof {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  color: #FFFFFF;
}

.social-proof h2 {
  color: #FFFFFF;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border: 2px solid rgba(245, 166, 35, 0.3);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F5A623;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0D1F33 0%, #1A3D5F 100%);
  color: #E8E8E8;
  padding: 60px 20px 20px;
  border-top: 4px solid #F5A623;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-col img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #B8B8B8;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a {
  color: #B8B8B8;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #F5A623;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 166, 35, 0.3);
  padding-top: 20px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A3D5F 0%, #0D1F33 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  border-top: 3px solid #F5A623;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #E8E8E8;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: 2px solid;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
}

.cookie-btn.accept {
  background: #F5A623;
  color: #1A1A1A;
  border-color: #F5A623;
}

.cookie-btn.accept:hover {
  background: #E89400;
  border-color: #E89400;
}

.cookie-btn.reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-btn.reject:hover {
  background: #FFFFFF;
  color: #1A3D5F;
}

.cookie-btn.settings {
  background: transparent;
  color: #F5A623;
  border-color: #F5A623;
}

.cookie-btn.settings:hover {
  background: #F5A623;
  color: #1A1A1A;
}

/* COOKIE PREFERENCES MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  border-top: 4px solid #F5A623;
}

.cookie-modal-header {
  background: linear-gradient(135deg, #1A3D5F 0%, #2C5F8D 100%);
  color: #FFFFFF;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: #FFFFFF;
  margin-bottom: 0;
  font-size: 20px;
}

.cookie-modal-close {
  background: transparent;
  border: 2px solid #F5A623;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 12px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.cookie-modal-close:hover {
  background: #F5A623;
  color: #1A3D5F;
}

.cookie-modal-body {
  padding: 32px 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-left: 4px solid #F5A623;
}

.cookie-category h4 {
  color: #1A3D5F;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  color: #3A3A3A;
  margin-bottom: 12px;
  font-size: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-toggle label {
  font-weight: 600;
  color: #2A2A2A;
  cursor: pointer;
  font-size: 14px;
}

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid #D0D0D0;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Mobile Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Mobile Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Mobile Cards */
  .solution-card,
  .service-card,
  .step-card,
  .value-card,
  .team-member,
  .pricing-card,
  .contact-card,
  .link-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Mobile Footer */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Mobile Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Mobile Sections */
  section {
    padding: 40px 20px;
  }
  
  /* Mobile Stats */
  .stat-card {
    flex: 1 1 100%;
  }
  
  /* Mobile Pricing */
  .pricing-card .price {
    font-size: 32px;
  }
  
  /* Mobile Process Steps */
  .process-steps {
    flex-direction: column;
  }
  
  .step-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .service-card,
  .pricing-card,
  .legal-section {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
  }
}

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

.service-card,
.step-card,
.testimonial-card,
.value-card,
.pricing-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  footer,
  #cookie-consent,
  .hero-cta,
  .cta-section,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  section {
    page-break-inside: avoid;
  }
}