/* ====================================
   UNSPOVALID - VIBRANT & ENERGETIC DESIGN
   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;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

/* ====================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ==================================== */

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: #2C5F8D;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #E84C3D, #F8B739);
  border-radius: 3px;
}

h3 {
  font-size: 24px;
  color: #2C5F8D;
}

h4 {
  font-size: 18px;
  color: #2C5F8D;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333333;
}

/* ====================================
   HEADER - ENERGETIC & BOLD
   ==================================== */

header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  box-shadow: 0 4px 20px rgba(232, 76, 61, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

.cta-button {
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 76, 61, 0.6);
}

/* ====================================
   MOBILE MENU - VIBRANT STYLE
   ==================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.5);
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(232, 76, 61, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  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: #E84C3D;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 76, 61, 0.4);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #F8B739;
}

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

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

.mobile-nav a:hover {
  border-left-color: #F8B739;
  background: rgba(248, 183, 57, 0.2);
  transform: translateX(10px);
}

/* ====================================
   BUTTONS - ENERGETIC & BOLD
   ==================================== */

.btn-primary, .btn-secondary, .btn-link, .btn-search, .btn-search-large, .btn-select, .btn-action {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 76, 61, 0.5);
}

.btn-secondary {
  background: #ffffff;
  color: #2C5F8D;
  border: 3px solid #2C5F8D;
}

.btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.4);
}

.btn-link {
  background: transparent;
  color: #E84C3D;
  padding: 10px 20px;
  font-weight: 700;
  box-shadow: none;
}

.btn-link:hover {
  color: #F8B739;
  transform: translateX(5px);
}

.btn-search, .btn-search-large {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  color: #ffffff;
  padding: 14px 30px;
}

.btn-search:hover, .btn-search-large:hover {
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  transform: translateY(-2px);
}

.btn-select, .btn-action {
  background: #2C5F8D;
  color: #ffffff;
  padding: 12px 28px;
}

.btn-select:hover, .btn-action:hover {
  background: #E84C3D;
  transform: translateY(-2px) scale(1.05);
}

/* ====================================
   HERO SECTION - VIBRANT & DYNAMIC
   ==================================== */

.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 50%, #2C5F8D 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 183, 57, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 76, 61, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite;
}

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

.hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  font-size: 52px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 35px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.trust-badges {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(248, 183, 57, 0.3);
  border-color: #F8B739;
  transform: translateY(-3px);
}

/* ====================================
   PAGE HERO - ENERGETIC STYLE
   ==================================== */

.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 50px;
}

.page-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  margin-bottom: 15px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.breadcrumbs a {
  color: #F8B739;
  font-weight: 600;
}

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

/* ====================================
   SECTIONS - VIBRANT LAYOUTS
   ==================================== */

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

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

.tracking-quick {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  padding: 50px 20px;
  margin-bottom: 0;
}

.tracking-quick h2 {
  text-align: center;
  margin-bottom: 30px;
}

.tracking-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.tracking-input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 3px solid #2C5F8D;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.tracking-input:focus {
  outline: none;
  border-color: #E84C3D;
  box-shadow: 0 4px 15px rgba(232, 76, 61, 0.3);
}

.help-text {
  text-align: center;
  font-size: 14px;
  color: #666666;
}

/* ====================================
   CARDS & GRIDS - DYNAMIC LAYOUTS
   ==================================== */

.services-overview, .benefits, .how-it-works, .testimonials {
  padding: 60px 20px;
}

.services-overview h2, .benefits h2, .how-it-works h2, .testimonials h2 {
  text-align: center;
  margin-bottom: 15px;
}

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #555555;
}

.services-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card, .benefit {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E84C3D, #F8B739);
  border-radius: 20px 20px 0 0;
}

.service-card:hover, .benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(232, 76, 61, 0.3);
  border-color: #E84C3D;
}

.service-card h3, .benefit h3 {
  margin-bottom: 15px;
  color: #2C5F8D;
}

.service-card p, .benefit p {
  margin-bottom: 15px;
  color: #555555;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #E84C3D;
  margin-top: 15px;
}

/* ====================================
   STEPS - VIBRANT PROCESS
   ==================================== */

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

.step {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.3);
}

.step-number {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.4);
}

.step h3 {
  margin-bottom: 15px;
}

/* ====================================
   TESTIMONIALS - HIGH CONTRAST
   ==================================== */

.testimonials {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #E84C3D;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 76, 61, 0.3);
}

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

.author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author strong {
  color: #2C5F8D;
  font-size: 18px;
  font-weight: 700;
}

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

/* ====================================
   CTA SECTIONS - BOLD & ENERGETIC
   ==================================== */

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

.cta-banner h2, .cta-section h2 {
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-banner h2::after, .cta-section h2::after {
  background: #ffffff;
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p, .cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-banner .btn-primary, .cta-section .btn-primary {
  background: #ffffff;
  color: #E84C3D;
}

.cta-banner .btn-secondary, .cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.phone {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 20px;
}

/* ====================================
   PRICING - VIBRANT TABLES
   ==================================== */

.pricing-tables {
  padding: 60px 20px;
}

.pricing-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(232, 76, 61, 0.3);
  border-color: #E84C3D;
}

.pricing-card.popular {
  border-color: #F8B739;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-10px);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(232, 76, 61, 0.4);
}

.price-large {
  font-size: 48px;
  font-weight: 800;
  color: #E84C3D;
  margin: 20px 0;
}

.delivery-time {
  font-size: 16px;
  color: #666666;
  margin-bottom: 25px;
  font-weight: 600;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #333333;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.price-table, .fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.price-table thead {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  color: #ffffff;
}

.price-table th, .price-table td, .fees-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.price-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.price-table td {
  color: #333333;
  font-weight: 600;
}

.price-table tbody tr:hover, .fees-table tr:hover {
  background: rgba(248, 183, 57, 0.1);
}

.fees-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.fees-table td:first-child {
  font-weight: 600;
  color: #2C5F8D;
}

.fees-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #E84C3D;
  font-size: 18px;
}

/* ====================================
   TRACKING - ENERGETIC INTERFACE
   ==================================== */

.tracking-tool {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.tracking-form-large {
  display: flex;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

.tracking-input-large {
  flex: 1;
  min-width: 300px;
  padding: 18px 25px;
  border: 3px solid #2C5F8D;
  border-radius: 50px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.tracking-input-large:focus {
  outline: none;
  border-color: #E84C3D;
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.3);
}

.tracking-features {
  padding: 60px 20px;
}

.features-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #E84C3D;
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(232, 76, 61, 0.3);
}

.tracking-guide {
  padding: 60px 20px;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.status-item {
  padding: 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #2C5F8D;
  transition: all 0.3s ease;
}

.status-item:hover {
  transform: translateX(10px);
  border-left-color: #E84C3D;
}

/* ====================================
   ABOUT PAGE - DYNAMIC LAYOUTS
   ==================================== */

.company-story, .mission-vision {
  padding: 60px 20px;
}

.mission-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.mission-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  padding: 35px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.3);
}

.mission-item h2 {
  color: #F8B739;
}

.mission-item h2::after {
  background: #F8B739;
}

.values-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.value {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  padding: 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #E84C3D;
}

.value:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(232, 76, 61, 0.3);
}

.statistics {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  color: #ffffff;
  padding: 60px 20px;
}

.statistics h2 {
  color: #ffffff;
  text-align: center;
}

.statistics h2::after {
  background: #F8B739;
  left: 50%;
  transform: translateX(-50%);
}

.stats-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 calc(33.333% - 25px);
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(248, 183, 57, 0.2);
  border-color: #F8B739;
  transform: scale(1.05);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #F8B739;
  margin-bottom: 10px;
}

.stat p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

/* ====================================
   CONTACT PAGE - VIBRANT CARDS
   ==================================== */

.contact-methods {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  padding: 35px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #E84C3D;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(232, 76, 61, 0.3);
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #2C5F8D;
  margin-bottom: 10px;
}

.availability {
  font-size: 14px;
  color: #E84C3D;
  font-weight: 600;
  margin-bottom: 15px;
}

.departments-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.department {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  padding: 30px;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 5px solid #2C5F8D;
  transition: all 0.3s ease;
}

.department:hover {
  transform: translateX(10px);
  border-left-color: #E84C3D;
  box-shadow: 0 8px 25px rgba(44, 95, 141, 0.2);
}

/* ====================================
   THANK YOU PAGE - CELEBRATION
   ==================================== */

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  font-size: 60px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(232, 76, 61, 0.4);
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.confirmation {
  font-size: 20px;
  color: #2C5F8D;
  margin-bottom: 20px;
  font-weight: 600;
}

.what-next {
  padding: 60px 20px;
}

.action-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  max-width: 280px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(44, 95, 141, 0.3);
}

/* ====================================
   LEGAL PAGES - CLEAN LAYOUT
   ==================================== */

.legal-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #2C5F8D;
}

.content-section h2 {
  margin-bottom: 20px;
}

.content-section ul {
  list-style: disc;
  margin-left: 25px;
}

.content-section li {
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.7;
}

.rodo-rights {
  padding: 60px 20px;
}

.rights-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.right-item {
  padding: 25px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #E84C3D;
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(232, 76, 61, 0.3);
}

/* ====================================
   BUSINESS SOLUTIONS
   ==================================== */

.business-solutions, .business-pricing {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.business-solutions ul, .business-pricing ul {
  list-style: none;
  max-width: 600px;
  margin: 30px auto;
}

.business-solutions li, .business-pricing li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.business-solutions li:hover, .business-pricing li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(44, 95, 141, 0.2);
}

.business-solutions li::before, .business-pricing li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  color: #E84C3D;
  font-weight: 800;
  font-size: 20px;
}

.discount-tiers {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.tier {
  flex: 1 1 calc(25% - 20px);
  min-width: 220px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #E84C3D;
  transition: all 0.3s ease;
}

.tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(232, 76, 61, 0.3);
}

.discount {
  font-size: 32px;
  font-weight: 800;
  color: #E84C3D;
  margin-top: 15px;
}

/* ====================================
   FOOTER - VIBRANT & ORGANIZED
   ==================================== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

.footer-column h4 {
  color: #F8B739;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  margin-bottom: 12px;
  color: #cccccc;
  font-size: 14px;
}

.footer-column a {
  display: block;
  margin-bottom: 12px;
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #F8B739;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(248, 183, 57, 0.3);
}

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

/* ====================================
   COOKIE CONSENT BANNER - VIBRANT
   ==================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6e 100%);
  color: #ffffff;
  padding: 25px 20px;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

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

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accept-all {
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(232, 76, 61, 0.4);
}

.accept-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.6);
}

.reject-all {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: #ffffff;
  color: #2C5F8D;
}

.cookie-settings:hover {
  background: #F8B739;
  color: #ffffff;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  margin-bottom: 25px;
  color: #2C5F8D;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 10px;
  border-left: 5px solid #2C5F8D;
}

.cookie-category h3 {
  margin-bottom: 10px;
  color: #2C5F8D;
  font-size: 18px;
}

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

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #cccccc;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-switch.active {
  background: #E84C3D;
}

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

.toggle-switch.active::after {
  left: 33px;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.save-preferences {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(135deg, #E84C3D 0%, #F8B739 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.5);
}

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

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Layout adjustments */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  .services-grid, .benefits-grid {
    flex-direction: column;
  }
  
  .service-card, .benefit {
    flex: 1 1 100%;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .features-grid, .stats-grid, .values-grid {
    flex-direction: column;
  }
  
  .contact-grid, .departments-grid {
    flex-direction: column;
  }
  
  .mission-grid {
    flex-direction: column;
  }
  
  .action-cards {
    flex-direction: column;
  }
  
  .discount-tiers {
    flex-direction: column;
  }
  
  /* Table responsiveness */
  .price-table {
    font-size: 14px;
  }
  
  .price-table th, .price-table td {
    padding: 12px 8px;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .service-card, .benefit {
    flex: 1 1 calc(50% - 15px);
  }
  
  .stat {
    flex: 1 1 calc(33.333% - 20px);
  }
}

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

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

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

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

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

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

/* ====================================
   ANIMATIONS
   ==================================== */

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

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

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

/* Focus styles for accessibility */
a:focus, button:focus, input:focus {
  outline: 3px solid #F8B739;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}