/* ============================================
   TWILIGHT TREK - PLAYFUL DYNAMIC 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6f0 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   PLAYFUL DYNAMIC TYPOGRAPHY
   ============================================ */

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

h2 {
  font-size: 36px;
  color: #2C5F7C;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8944F, #ff6b9d);
  border-radius: 10px;
  animation: wiggle 2s ease-in-out infinite;
}

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

h4 {
  font-size: 20px;
  color: #2C5F7C;
}

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

.lead {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
}

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

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes bounce-in {
  0% { transform: scale(0.8) translateY(20px); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

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

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  animation: slide-up 0.6s ease-out;
}

/* ============================================
   BUTTONS - PLAYFUL & ENERGETIC
   ============================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
  animation: pulse 0.6s ease;
}

.btn-secondary {
  background: #fff;
  color: #E8944F;
  border: 3px solid #E8944F;
  box-shadow: 0 4px 15px rgba(232, 148, 79, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E8944F, #ffb366);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 148, 79, 0.5);
}

/* ============================================
   HEADER - STICKY WITH BRIGHT COLORS
   ============================================ */

header {
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #E8944F;
}

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

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

.logo:hover img {
  transform: rotate(-5deg) scale(1.1);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2C5F7C;
  padding: 8px 0;
  position: relative;
}

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

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

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

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

/* ============================================
   MOBILE MENU - SLIDE IN ANIMATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #fff 0%, #ffe6f0 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #E8944F, #ffb366);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(232, 148, 79, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2C5F7C;
  padding: 16px 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #E8944F, #ffb366);
  color: #fff;
  transform: translateX(10px) scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 148, 79, 0.4);
}

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

.hero {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #ff6b9d 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: bounce-in 0.8s ease-out;
}

.hero h1 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 24px;
  -webkit-text-fill-color: #fff;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.trust-indicators span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-hero {
  background: linear-gradient(135deg, #E8944F 0%, #ffb366 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.page-hero h1 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 16px;
  -webkit-text-fill-color: #fff;
}

.page-hero p {
  color: #fff;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a,
.breadcrumb span {
  color: #fff;
  font-weight: 600;
}

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

/* ============================================
   CARDS & GRIDS - PLAYFUL LAYOUT
   ============================================ */

.value-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.process-steps,
.contact-grid,
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.value-card,
.service-card,
.service-detail-card,
.testimonial-card,
.stat-card,
.step,
.contact-card,
.mission-card,
.expertise-card,
.case-study-card,
.post-card,
.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-bottom: 24px;
  border: 3px solid transparent;
}

.value-card:hover,
.service-card:hover,
.service-detail-card:hover,
.post-card:hover,
.category-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(232, 148, 79, 0.3);
  border-color: #E8944F;
}

.value-card h3,
.service-card h3,
.service-detail-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price,
.service-detail-card .service-price {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #ff6b6b;
  margin-top: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fff5e6, #ffe6f0);
  border-radius: 10px;
}

.service-detail-card {
  flex: 1 1 calc(50% - 24px);
}

.service-benefits {
  margin: 24px 0;
  padding: 20px;
  background: #F4E8D8;
  border-radius: 15px;
  border-left: 5px solid #E8944F;
}

.service-benefits h4 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.service-benefits ul {
  padding-left: 20px;
}

.service-benefits li {
  margin-bottom: 8px;
  color: #4a5568;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
  border-left: 5px solid #E8944F;
  padding: 32px;
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2d3748;
  line-height: 1.8;
  font-weight: 500;
}

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

.testimonial-author strong {
  color: #1a202c;
  font-size: 18px;
  font-weight: 700;
}

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

.testimonial-card.featured {
  border-left-width: 8px;
  border-left-color: #ff6b6b;
}

.testimonial-results {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.testimonial-results span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ff6b6b;
  padding: 8px 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #E8944F 0%, #ffb366 100%);
  color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
}

.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================
   PROCESS STEPS
   ============================================ */

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

.step h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.step-detail {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  border-left: 6px solid #E8944F;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.duration {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #E8944F;
  padding: 8px 16px;
  background: #F4E8D8;
  border-radius: 10px;
  font-size: 14px;
}

.step-content h4 {
  color: #2C5F7C;
  margin: 24px 0 12px;
}

.step-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

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

.step-note {
  font-style: italic;
  color: #718096;
  font-size: 14px;
  margin-top: 16px;
  padding: 12px;
  background: #F4E8D8;
  border-radius: 10px;
}

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

.cta-banner {
  background: linear-gradient(135deg, #2C5F7C 0%, #3d7a9e 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 10px 40px rgba(44, 95, 124, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.cta-banner h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

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

.cta-banner p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

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

.trust-note,
.social-proof {
  font-size: 14px;
  color: #fff;
  margin-top: 16px;
  opacity: 0.9;
}

/* ============================================
   SECTION VARIATIONS
   ============================================ */

.value-proposition,
.services-overview,
.process,
.testimonials {
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #718096;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ============================================
   BLOG & POSTS
   ============================================ */

.featured-post {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  padding: 60px 40px;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  display: inline-block;
  background: #fff;
  color: #ff6b6b;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.featured-content h2 {
  color: #fff;
  font-size: 32px;
}

.featured-content h2::after {
  display: none;
}

.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0;
  font-size: 14px;
  opacity: 0.9;
}

.post-card {
  flex: 1 1 calc(33.333% - 24px);
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #E8944F;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.category-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #E8944F, #ffb366);
  color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
}

.category-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.category-card p {
  color: #fff;
  font-weight: 600;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
  background: linear-gradient(135deg, #F4E8D8 0%, #fff5e6 100%);
  padding: 60px 40px;
  border-radius: 30px;
  text-align: center;
  margin: 60px 0;
  border: 3px solid #E8944F;
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-benefits p {
  font-size: 16px;
  color: #2d3748;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 32px auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input,
input[type="text"],
input[type="email"],
textarea {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  border: 3px solid #E8944F;
  border-radius: 15px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.email-input:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
  transform: scale(1.02);
}

textarea {
  min-height: 150px;
  resize: vertical;
  width: 100%;
}

.privacy-note {
  font-size: 14px;
  color: #718096;
}

.privacy-note a {
  color: #2C5F7C;
  text-decoration: underline;
}

/* ============================================
   FORMS
   ============================================ */

.form-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.form-note {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #E8944F, #ffb366);
  padding: 32px;
  border-radius: 20px;
  color: #fff;
}

.form-note p {
  color: #fff;
  margin-bottom: 12px;
}

.form-fields {
  flex: 2 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
}

.checkbox-label input {
  min-width: 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* ============================================
   CASE STUDIES
   ============================================ */

.case-study-card {
  flex: 1 1 100%;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #2C5F7C;
}

.case-study-content {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

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

.case-section h4 {
  color: #E8944F;
  margin-bottom: 12px;
}

.case-section ul {
  padding-left: 20px;
}

.case-section li {
  margin-bottom: 8px;
  color: #4a5568;
}

/* ============================================
   INDUSTRIES & FACTORS
   ============================================ */

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

.industry-card,
.factor-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #2C5F7C, #3d7a9e);
  color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
}

.industry-card h3,
.factor-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.industry-card p,
.factor-card p {
  color: #fff;
  font-weight: 600;
}

.factor-card {
  background: linear-gradient(135deg, #E8944F, #ffb366);
}

/* ============================================
   VALUES & MISSION
   ============================================ */

.mission-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.mission-card {
  flex: 1 1 calc(50% - 32px);
  background: linear-gradient(135deg, #2C5F7C, #3d7a9e);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.mission-card h3 {
  color: #fff;
  margin-bottom: 16px;
}

.mission-card p {
  color: #fff;
  line-height: 1.8;
}

.values {
  background: #F4E8D8;
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #E8944F;
}

.values h3 {
  color: #2C5F7C;
  margin-bottom: 20px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}

.values-list li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 15px;
  font-weight: 600;
  color: #2d3748;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
   EXPERTISE
   ============================================ */

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

.expertise-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  background: #fff;
  padding: 32px 20px;
  border-radius: 20px;
  border-top: 5px solid #E8944F;
}

.expertise-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
  font-size: 20px;
}

.expertise-card p {
  color: #718096;
  font-weight: 600;
}

/* ============================================
   STORY & TEXT SECTIONS
   ============================================ */

.text-section {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #E8944F;
}

.text-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #2d3748;
}

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

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

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  animation: bounce-in 0.8s ease-out;
}

.success-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 60px;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.thank-you-content h1 {
  color: #fff;
  -webkit-text-fill-color: #fff;
  margin-bottom: 16px;
}

.thank-you-content p {
  color: #fff;
  font-size: 18px;
}

.next-steps {
  text-align: center;
  margin-bottom: 60px;
}

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

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #E8944F;
}

.step-num {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border-radius: 50%;
  margin-bottom: 16px;
}

.steps-simple {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto;
}

.steps-simple p {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  padding: 16px 24px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESOURCES & CONTACT OPTIONS
   ============================================ */

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

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid #E8944F;
}

.resource-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.contact-options {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}

.contact-option {
  flex: 1 1 300px;
  text-align: center;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-option h3 {
  color: #E8944F;
  margin-bottom: 16px;
}

/* ============================================
   OFFICE INFO
   ============================================ */

.office-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.detail-block h3 {
  color: #E8944F;
  margin-bottom: 12px;
}

.detail-block p {
  line-height: 1.8;
}

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

.page-hero.legal {
  background: linear-gradient(135deg, #2C5F7C, #3d7a9e);
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

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

.legal-text {
  background: #fff;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
  color: #2C5F7C;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-text a {
  color: #2C5F7C;
  text-decoration: underline;
}

.legal-text a:hover {
  color: #E8944F;
}

/* ============================================
   FOOTER - COLORFUL & ENGAGING
   ============================================ */

footer {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4d66 100%);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(135deg, transparent 49%, #2C5F7C 50%);
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 14px;
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column nav a:hover {
  color: #E8944F;
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

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

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C5F7C, #3d7a9e);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #fff;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

.cookie-btn-reject:hover {
  background: #fff;
  color: #2C5F7C;
}

.cookie-btn-settings {
  background: #E8944F;
  color: #fff;
}

.cookie-btn-settings:hover {
  background: #ffb366;
  transform: scale(1.05);
}

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

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

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: bounce-in 0.5s ease-out;
}

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

.cookie-modal-header h2 {
  color: #2C5F7C;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: #E8944F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: #ff6b6b;
}

.cookie-category {
  padding: 20px;
  background: #F4E8D8;
  border-radius: 15px;
  margin-bottom: 16px;
  border-left: 5px solid #E8944F;
}

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

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

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 30px;
}

.cookie-toggle input {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  position: absolute;
  z-index: 1;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cbd5e0;
  border-radius: 30px;
  transition: all 0.3s ease;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(30px);
}

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

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

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 40px; }
  .hero-subtitle { font-size: 16px; }
  
  .main-nav { display: none; }
  .header-cta { display: none; }
  
  .mobile-menu-toggle { display: block; }
  
  .value-card,
  .service-card,
  .service-detail-card,
  .testimonial-card,
  .stat-card,
  .step,
  .post-card,
  .category-card,
  .step-card,
  .resource-card,
  .industry-card,
  .factor-card,
  .mission-card,
  .expertise-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .case-section {
    flex: 1 1 100%;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .form-wrapper {
    flex-direction: column;
  }
  
  .office-details {
    flex-direction: column;
  }
  
  .step-header {
    flex-direction: column;
    text-align: center;
  }
  
  .text-section {
    padding: 24px;
  }
  
  .legal-text {
    padding: 24px;
  }
  
  .page-hero {
    padding: 60px 20px 40px;
  }
  
  .section {
    padding: 40px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .post-card,
  .category-card,
  .expertise-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
   ============================================ */

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

.bounce {
  animation: bounce-in 0.8s ease-out;
}

/* Ensure no CSS Grid or Columns */
/* All layouts use flexbox exclusively */
/* No display: grid, grid-*, column-count, etc. */

/* End of Stylesheet */