/* ===================================
   TRAVAVOLTU LOGISTIK - SCANDINAVIAN CLEAN DESIGN
   Complete CSS Styles for All Pages
   Design Style: Scandinavian Clean
   =================================== */

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - SCANDINAVIAN STYLE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A4D8F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
}

a {
  color: #1A4D8F;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E85D29;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

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

/* ===================================
   HEADER - CLEAN & MINIMAL
   =================================== */

header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #E85D29;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-weight: 600;
  color: #1A4D8F;
  font-size: 16px;
}

/* ===================================
   BUTTONS - SCANDINAVIAN MINIMAL
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Roboto Condensed', sans-serif;
}

.btn-primary {
  background-color: #1A4D8F;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #E85D29;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 41, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #1A4D8F;
  border: 2px solid #1A4D8F;
}

.btn-secondary:hover {
  background-color: #1A4D8F;
  color: #ffffff;
}

.btn-link {
  color: #1A4D8F;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.btn-link:after {
  content: '→';
}

.btn-link:hover {
  gap: 12px;
  color: #E85D29;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #1A4D8F;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #E85D29;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2c3e50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #E85D29;
}

/* ===================================
   HERO SECTION - CLEAN & AIRY
   =================================== */

.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #1A4D8F;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item strong {
  font-size: 32px;
  color: #E85D29;
  font-weight: 700;
}

.trust-item span {
  font-size: 14px;
  color: #4a5568;
}

/* ===================================
   PAGE HERO
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.breadcrumb {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #1A4D8F;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a5568;
}

/* ===================================
   SERVICES GRID - FLEXBOX ONLY
   =================================== */

.services-overview,
.service-details,
.capabilities-overview,
.transport-capabilities,
.warehouse-capabilities {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.services-overview h2,
.service-details h2,
.capabilities-overview h2,
.transport-capabilities h2,
.warehouse-capabilities h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #4a5568;
}

.services-grid,
.benefits-grid,
.stats-grid,
.capabilities-grid,
.tech-grid,
.certifications-grid,
.industries-grid,
.additional-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.benefit-item,
.capability-card,
.service-detail-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.service-card:hover,
.capability-card:hover,
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #1A4D8F;
}

.service-card img,
.benefit-item img,
.tech-item img,
.capability-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.service-card h3,
.capability-card h3,
.service-detail-card h3 {
  color: #1A4D8F;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.capability-card p,
.service-detail-card p {
  color: #4a5568;
  flex-grow: 1;
}

.service-card .price,
.service-detail-card .price {
  font-size: 20px;
  font-weight: 700;
  color: #E85D29;
  margin-top: 16px;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-detail-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

.service-detail-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E85D29;
  font-weight: 700;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.benefit-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===================================
   STATS COUNTER
   =================================== */

.stats-counter {
  background: linear-gradient(135deg, #1A4D8F 0%, #2d5fa8 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats-counter h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.stat-item {
  flex: 1 1 calc(16.666% - 24px);
  min-width: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
}

.stat-item strong {
  font-size: 40px;
  color: #E85D29;
  font-weight: 700;
}

.stat-item span {
  font-size: 14px;
  color: #ffffff;
}

/* ===================================
   TESTIMONIALS - READABLE
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #f8f9fa;
  margin-bottom: 60px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E85D29;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #2c3e50;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
}

.testimonial-author strong {
  color: #1A4D8F;
  font-size: 16px;
}

.testimonial-author span {
  color: #718096;
  font-size: 14px;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1A4D8F 0%, #2d5fa8 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.cta-content,
.cta-section h2 {
  color: #ffffff;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p,
.cta-section p {
  font-size: 18px;
  color: #e9ecef;
  margin-bottom: 32px;
}

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

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

/* ===================================
   MISSION & VISION
   =================================== */

.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.mv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: center;
}

.mv-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #E85D29;
}

.mv-item h3 {
  margin-bottom: 16px;
}

.values {
  text-align: center;
  margin-top: 48px;
}

.values h3 {
  margin-bottom: 32px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.value-item img {
  width: 64px;
  height: 64px;
}

.value-item span {
  font-weight: 600;
  color: #2c3e50;
}

/* ===================================
   INFRASTRUCTURE & SUSTAINABILITY
   =================================== */

.infrastructure,
.sustainability {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.infra-grid,
.sustainability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.infra-item,
.sustainability-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
}

.infra-item h3 {
  margin-bottom: 16px;
}

.sustainability-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.sustainability-item img {
  width: 56px;
  height: 56px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
}

.contact-option img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.contact-option h3 {
  margin-bottom: 12px;
}

.contact-option .small {
  font-size: 14px;
  color: #718096;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-section {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #f8f9fa;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 32px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #4a5568;
}

.form-placeholder strong {
  color: #1A4D8F;
}

.form-placeholder em {
  color: #718096;
  font-size: 14px;
}

/* ===================================
   OFFICE LOCATION
   =================================== */

.office-location {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.office-location h2 {
  text-align: center;
  margin-bottom: 48px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 400px;
}

.location-info h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.map-placeholder {
  flex: 1 1 400px;
  background: #e2e8f0;
  min-height: 400px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
}

/* ===================================
   OFFICE HOURS & TEAM CONTACTS
   =================================== */

.office-hours,
.team-contacts {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #f8f9fa;
}

.hours-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.hours-item,
.team-contact {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
}

.hours-item h3,
.team-contact h3 {
  margin-bottom: 16px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-bottom: 60px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #48bb78;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thank-you-content h1 {
  margin-bottom: 24px;
}

.confirmation {
  color: #718096;
  font-size: 16px;
}

.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.step-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  background-color: #1A4D8F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.response-time {
  text-align: center;
  color: #E85D29;
  font-weight: 600;
}

.contact-reminder {
  padding: 60px 20px;
  margin-bottom: 60px;
  background-color: #f8f9fa;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.contact-info p {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

.useful-links {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.useful-links h2 {
  text-align: center;
  margin-bottom: 32px;
}

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

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #f8f9fa;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  color: #1A4D8F;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  background-color: #1A4D8F;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */

.legal-content {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: #4a5568;
}

.legal-content em {
  color: #718096;
  font-size: 14px;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content-section,
.services-intro,
.technology-platform,
.quality-standards,
.industry-expertise,
.additional-services {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.benefits-list span {
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  color: #2c3e50;
  font-size: 14px;
  font-weight: 600;
}

.tech-item,
.cert-item,
.industry-item,
.additional-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
}

.tech-item h3,
.cert-item h3,
.industry-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

/* ===================================
   FOOTER - MINIMAL SCANDINAVIAN
   =================================== */

footer {
  background-color: #2c3e50;
  color: #e9ecef;
  padding: 60px 20px 20px;
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: #cbd5e0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column a:hover {
  color: #E85D29;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-links a {
  color: #cbd5e0;
  font-size: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: #718096;
  text-align: center;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 20px;
  z-index: 2000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #E85D29;
  color: #ffffff;
}

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

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background-color: transparent;
  color: #cbd5e0;
  border: 1px solid #cbd5e0;
}

.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* ===================================
   COOKIE MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #1A4D8F;
  font-size: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #718096;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-category {
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  color: #2c3e50;
  font-size: 16px;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #cbd5e0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #48bb78;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero section */
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Header - show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .header-cta {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  
  .header-cta .btn {
    width: 100%;
  }
  
  /* Grid adjustments */
  .service-card,
  .benefit-item,
  .capability-card,
  .service-detail-card {
    flex: 1 1 100%;
  }
  
  .stat-item,
  .trust-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .mv-item,
  .infra-item,
  .contact-option,
  .hours-item,
  .team-contact {
    flex: 1 1 100%;
  }
  
  /* Location content */
  .location-content {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Sections spacing */
  .section {
    padding: 40px 20px;
  }
  
  section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .trust-item,
  .stat-item {
    flex: 1 1 100%;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

.service-card,
.testimonial-card,
.benefit-item {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* ===================================
   END OF STYLES
   =================================== */
