/* ============================================
   SHELL LECTURES - VIBRANT ENERGETIC DESIGN
   Modern Tech Education with Bold Energy
   ============================================ */

/* 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.7;
  color: #1a252f;
  background: #ffffff;
  overflow-x: hidden;
}

/* VIBRANT ENERGETIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a252f;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(192, 57, 43, 0.2);
}

h2 {
  font-size: 36px;
  color: #1a252f;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  border-radius: 2px;
}

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #34495e;
}

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

ul {
  list-style: none;
}

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

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

/* HEADER - VIBRANT & BOLD */
header {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%) !important;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #c0392b;
}

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

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

/* MAIN NAVIGATION - ENERGETIC */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: rgba(192, 57, 43, 0.2);
  transform: translateY(-2px);
  color: #e74c3c;
}

/* MOBILE MENU BUTTON - BOLD */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(192, 57, 43, 0.6);
}

/* MOBILE MENU OVERLAY - ENERGETIC */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%) !important;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c0392b;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #c0392b;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-nav a:hover {
  background: rgba(192, 57, 43, 0.2);
  transform: translateX(10px);
  border-left-width: 8px;
}

/* BUTTONS - VIBRANT & BOLD */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.6);
}

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

.btn-secondary:hover {
  background: #c0392b;
  color: #ffffff;
  transform: translateY(-3px);
}

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

/* HERO SECTION - EXPLOSIVE ENERGY */
.hero {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 50%, #34495e 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite reverse;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e74c3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subheadline {
  font-size: 24px;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  color: #ecf0f1;
  margin-bottom: 32px;
}

.trust-indicators {
  font-size: 14px;
  color: #bdc3c7;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* PAGE HERO - ENERGETIC */
.page-hero {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero h1 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 20px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

/* ERROR HERO - PLAYFUL */
.error-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.error-content {
  max-width: 700px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(192, 57, 43, 0.3);
}

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

.error-hero p {
  font-size: 18px;
  color: #ecf0f1;
}

.humor-text {
  font-size: 20px;
  color: #e74c3c;
  margin-top: 24px;
  font-weight: 600;
}

/* SECTIONS - DYNAMIC SPACING */
.section, section {
  padding: 80px 20px;
  position: relative;
}

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

/* BENEFITS GRID - FLEXBOX */
.benefits {
  background: #ffffff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.benefit-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.benefit-card:hover {
  border-color: #c0392b;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.2);
}

.benefit-card h3 {
  color: #c0392b;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #5a6c7d;
  line-height: 1.8;
}

/* SERVICES GRID - FLEXBOX */
.services-preview, .services-grid {
  padding: 80px 20px;
  background: #f8f9fa;
}

.services-preview h2, .services-grid h2 {
  text-align: center;
  margin-bottom: 20px;
}

.services-preview > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #e8ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.05), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::after {
  left: 100%;
}

.service-card:hover {
  border-color: #c0392b;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(192, 57, 43, 0.15);
}

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

.service-card p {
  color: #5a6c7d;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 32px;
  font-weight: 800;
  color: #c0392b;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card .details {
  font-size: 14px;
  color: #7f8c8d;
  margin-bottom: 8px;
}

.service-card .btn {
  width: 100%;
  margin-top: 16px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%) !important;
  color: #ffffff;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  background: none;
  margin-bottom: 60px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  margin: 12px auto 0;
  left: 50%;
  transform: translateX(-50%);
}

.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: rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid rgba(192, 57, 43, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #c0392b;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.3);
}

.testimonial-card p:first-child {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: 24px;
}

.testimonial-card p:first-child::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: #c0392b;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card .author {
  font-size: 14px;
  color: #e74c3c;
  font-weight: 600;
  margin-top: 8px;
  text-align: right;
}

/* STATS SECTION - BOLD NUMBERS */
.stats {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%) !important;
  color: #ffffff;
  padding: 80px 20px;
}

.stats h2 {
  text-align: center;
  color: #ffffff;
  background: none;
  margin-bottom: 60px;
}

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

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

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* CTA BANNER - EXPLOSIVE */
.cta-banner {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%) !important;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

.cta-banner h2 {
  color: #ffffff;
  background: none;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  margin: 12px auto 0;
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p {
  font-size: 20px;
  color: #ecf0f1;
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

/* TEAM GRID - FLEXBOX */
.team {
  padding: 80px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 20px;
}

.team > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 60px;
}

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

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #e8ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #c0392b;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.15);
}

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

.team-member .role {
  font-size: 16px;
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  color: #5a6c7d;
  line-height: 1.7;
}

/* BLOG/ARTICLES - FLEXBOX */
.featured-article {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.article-featured {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 16px;
  border: 3px solid #c0392b;
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.15);
  position: relative;
}

.article-featured .label {
  position: absolute;
  top: -15px;
  left: 40px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-featured h2 {
  color: #1a252f;
  margin-bottom: 20px;
}

.article-featured .meta {
  font-size: 14px;
  color: #7f8c8d;
  margin-top: 20px;
}

.blog-grid {
  padding: 80px 20px;
}

.blog-grid h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.article-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 16px;
  border: 2px solid #e8ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card:hover {
  border-color: #c0392b;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.15);
}

.article-card .category {
  display: inline-block;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.article-card h3 {
  color: #1a252f;
  font-size: 20px;
  margin: 8px 0;
}

.article-card p {
  color: #5a6c7d;
  flex-grow: 1;
}

.article-card .meta {
  font-size: 13px;
  color: #7f8c8d;
  margin-top: 8px;
}

/* CONSULTATION/PRICING - FLEXBOX */
.consultation-types, .pricing-packages {
  padding: 80px 20px;
}

.consultation-types h2, .pricing-packages h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.pricing-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 3px solid #e8ecef;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.pricing-card:hover {
  border-color: #c0392b;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(192, 57, 43, 0.15);
}

.pricing-card.featured {
  border-color: #c0392b;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f4 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(192, 57, 43, 0.2);
}

.pricing-card h3 {
  color: #1a252f;
  font-size: 24px;
}

.pricing-card > p {
  color: #5a6c7d;
  font-size: 16px;
}

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

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 12px 0;
  color: #5a6c7d;
  border-bottom: 1px solid #e8ecef;
  position: relative;
  padding-left: 28px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
  font-size: 18px;
}

.pricing-card .btn {
  margin-top: auto;
}

/* CONTACT SECTIONS - FLEXBOX */
.contact-methods {
  padding: 60px 20px;
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #e8ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #c0392b;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.15);
}

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

.contact-form-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

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

.contact-form-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 60px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8ecef;
}

.form-wrapper p {
  margin-bottom: 24px;
  color: #5a6c7d;
}

.form-wrapper strong {
  display: block;
  color: #1a252f;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-wrapper .note {
  font-size: 14px;
  color: #7f8c8d;
  margin: 24px 0;
}

.form-wrapper .btn {
  width: 100%;
  margin-top: 24px;
}

/* DEPARTMENTS/INFO - FLEXBOX */
.departments, .office-info {
  padding: 80px 20px;
}

.departments h2, .office-info h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.department-card, .info-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #e8ecef;
  transition: all 0.3s ease;
}

.department-card:hover, .info-card:hover {
  border-color: #c0392b;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.15);
}

.department-card h3, .info-card h3 {
  color: #c0392b;
  margin-bottom: 16px;
}

.department-card p, .info-card p {
  color: #5a6c7d;
  margin-bottom: 12px;
}

/* FINANCING - FLEXBOX */
.financing {
  padding: 80px 20px;
  background: #f8f9fa;
}

.financing h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.financing-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #c0392b;
  text-align: center;
  transition: all 0.3s ease;
}

.financing-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f4 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.2);
}

.financing-card h3 {
  color: #c0392b;
  margin-bottom: 16px;
}

/* ERROR/THANK YOU - FLEXBOX */
.error-links, .thank-you-hero, .next-steps, .while-you-wait {
  padding: 80px 20px;
}

.error-links h2, .next-steps h2, .while-you-wait h2 {
  text-align: center;
  margin-bottom: 20px;
}

.error-links > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 60px;
}

.links-grid, .steps-grid, .actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.link-card, .step-card, .action-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 2px solid #e8ecef;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card:hover, .step-card:hover, .action-card:hover {
  border-color: #c0392b;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.15);
}

.link-card h3, .step-card h3, .action-card h3 {
  color: #1a252f;
  margin-bottom: 12px;
}

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

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

/* FUN FACT SECTION */
.fun-fact {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
}

.fun-fact h2 {
  margin-bottom: 24px;
}

.fun-fact p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #5a6c7d;
  line-height: 1.8;
}

/* TESTIMONIAL SINGLE */
.testimonial {
  padding: 60px 20px;
  background: #f8f9fa;
}

.testimonial h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e8ecef;
}

/* MISSION VISION */
.mission-vision {
  padding: 80px 20px;
}

.mission-vision h2 {
  margin-bottom: 24px;
  margin-top: 48px;
}

.mission-vision h2:first-child {
  margin-top: 0;
}

.mission-vision p {
  font-size: 18px;
  color: #5a6c7d;
  line-height: 1.8;
  max-width: 900px;
}

.mission-vision ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin-top: 24px;
}

.mission-vision ul li {
  padding: 16px 0 16px 40px;
  color: #5a6c7d;
  font-size: 18px;
  position: relative;
  border-bottom: 1px solid #e8ecef;
}

.mission-vision ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 24px;
  font-weight: 700;
}

/* CONSULTANTS SECTION */
.consultants {
  padding: 80px 20px;
  background: #f8f9fa;
}

.consultants h2 {
  text-align: center;
  margin-bottom: 20px;
}

.consultants > .container > p {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 60px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 80px 20px;
  background: #ffffff;
}

.legal-content h1 {
  color: #1a252f;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #34495e;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 16px;
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 900px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

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

/* FOOTER - BOLD & ENERGETIC */
footer {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%) !important;
  color: #ffffff;
  padding: 60px 20px 32px;
  border-top: 4px solid #c0392b;
}

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

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

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

.footer-section p {
  color: #bdc3c7;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #bdc3c7;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #e74c3c;
  padding-left: 8px;
}

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

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

/* COOKIE CONSENT BANNER - VIBRANT */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a252f 95%, #2C3E50 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #c0392b;
}

#cookie-banner.show {
  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-content p {
  flex: 1 1 400px;
  color: #ecf0f1;
  font-size: 14px;
  margin: 0;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid #c0392b;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e8ecef;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #bdc3c7;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #c0392b;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle label {
  color: #34495e;
  font-weight: 600;
  cursor: pointer;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero .subheadline {
    font-size: 20px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  /* Sections */
  .section, section {
    padding: 60px 20px;
  }
  
  .hero, .page-hero {
    padding: 60px 20px;
  }
  
  .cta-banner {
    padding: 60px 20px;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid .services-grid,
  .testimonials-grid,
  .stats-grid,
  .team-grid,
  .articles-grid,
  .pricing-grid,
  .contact-grid,
  .departments-grid,
  .info-grid,
  .financing-grid,
  .links-grid,
  .steps-grid,
  .actions-grid {
    gap: 24px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .team-member,
  .article-card,
  .pricing-card,
  .contact-card,
  .department-card,
  .info-card,
  .financing-card,
  .link-card,
  .step-card,
  .action-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stat-number {
    font-size: 48px;
  }
  
  /* Forms */
  .form-wrapper {
    padding: 32px 24px;
  }
  
  /* Featured pricing card */
  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .article-card,
  .team-member,
  .contact-card,
  .department-card,
  .info-card,
  .financing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Smooth scroll */
html {
  scroll-padding-top: 100px;
}

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

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal,
  .btn {
    display: none;
  }
}
.services-grid {
    display: flex;
    gap: 10px;
}