/* ================================
   INDUSTRIAL MODERN DESIGN SYSTEM
   BrightonTech Academy
   ================================ */

/* CSS RESET & BASE */
* {
  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: #E0E0E0;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 24px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 16px; }

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

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

a:hover {
  color: #FF9D5C;
}

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

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

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

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

.btn-primary {
  background-color: #E87C31;
  color: #1A1A1A;
  border-color: #E87C31;
  box-shadow: 0 4px 12px rgba(232, 124, 49, 0.3);
}

.btn-primary:hover {
  background-color: #FF9D5C;
  border-color: #FF9D5C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 124, 49, 0.4);
  color: #1A1A1A;
}

.btn-secondary {
  background-color: transparent;
  color: #E0E0E0;
  border-color: #666666;
}

.btn-secondary:hover {
  background-color: #2C2C2C;
  border-color: #E87C31;
  color: #E87C31;
  transform: translateY(-2px);
}

/* HEADER - INDUSTRIAL STYLE */
header {
  background: linear-gradient(180deg, #242424 0%, #1A1A1A 100%);
  border-bottom: 3px solid #E87C31;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.main-nav a:hover {
  color: #E87C31;
  border-bottom-color: #E87C31;
}

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

/* MOBILE MENU - INDUSTRIAL SLIDE-IN */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #E87C31;
  color: #1A1A1A;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 124, 49, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #FF9D5C;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  border-left: 3px solid #E87C31;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E87C31;
  color: #1A1A1A;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #FF9D5C;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: #E0E0E0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 20px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E87C31;
  padding-left: 10px;
  background-color: rgba(232, 124, 49, 0.1);
}

/* HERO SECTION - INDUSTRIAL IMPACT */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #E87C31;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(232, 124, 49, 0.03) 50px, rgba(232, 124, 49, 0.03) 51px),
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(232, 124, 49, 0.03) 50px, rgba(232, 124, 49, 0.03) 51px);
  pointer-events: none;
}

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

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

.hero-subheadline {
  font-size: 20px;
  color: #B0B0B0;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

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

.trust-indicators span {
  color: #E87C31;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PAGE HERO - INDUSTRIAL BREADCRUMB */
.page-hero {
  background: linear-gradient(135deg, #242424 0%, #1A1A1A 100%);
  padding: 60px 20px;
  border-bottom: 3px solid #E87C31;
}

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

.breadcrumb a {
  color: #E87C31;
}

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

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

/* VALUE PROPOSITION - FLEXBOX GRID */
.value-proposition {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

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

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: linear-gradient(180deg, #242424 0%, #1F1F1F 100%);
  padding: 32px 24px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
  transition: all 0.3s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(1.2) contrast(1.1);
}

.value-item h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.value-item p {
  color: #B0B0B0;
  font-size: 14px;
}

/* SERVICES OVERVIEW - COURSE CARDS */
.services-overview {
  padding: 80px 20px;
  background-color: #242424;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-description {
  text-align: center;
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.course-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: linear-gradient(180deg, #2C2C2C 0%, #1F1F1F 100%);
  padding: 32px;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.course-card:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 12px 32px rgba(232, 124, 49, 0.3);
}

.course-card h3 {
  margin-bottom: 16px;
  color: #FFFFFF;
}

.course-card p {
  color: #B0B0B0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #E87C31;
  margin-bottom: 8px;
}

.course-duration {
  font-size: 14px;
  color: #888888;
  margin-bottom: 24px;
}

.course-highlights {
  text-align: center;
  margin-bottom: 40px;
}

.course-highlights p {
  font-size: 14px;
  color: #E87C31;
  font-weight: 600;
}

.services-overview .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* STATS COUNTER - INDUSTRIAL METRICS */
.stats-counter {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #242424 100%);
  border-top: 3px solid #E87C31;
  border-bottom: 3px solid #E87C31;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #E87C31;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(232, 124, 49, 0.3);
}

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

/* TESTIMONIALS - DARK CARDS WITH GOOD CONTRAST */
.testimonials {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #F4F4F4;
  padding: 32px;
  border-left: 4px solid #E87C31;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.testimonial-card p {
  color: #1A1A1A;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.testimonial-author strong {
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

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

.rating {
  color: #E87C31;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonials .btn-secondary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* CTA BANNER - INDUSTRIAL CALL TO ACTION */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #242424 0%, #1A1A1A 100%);
  border-top: 3px solid #E87C31;
  border-bottom: 3px solid #E87C31;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* COURSES CATALOG - DETAILED LISTINGS */
.courses-catalog {
  padding: 60px 20px;
  background-color: #1A1A1A;
}

.course-detailed {
  background: linear-gradient(180deg, #242424 0%, #1F1F1F 100%);
  padding: 40px;
  margin-bottom: 32px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
  transition: all 0.3s ease;
}

.course-detailed:hover {
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.course-detailed h2 {
  margin-bottom: 16px;
}

.course-detailed p {
  margin-bottom: 24px;
}

.course-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}

.course-meta span {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-meta .price {
  color: #E87C31;
  font-size: 24px;
}

.course-meta .duration,
.course-meta .level {
  color: #B0B0B0;
}

/* COURSE BENEFITS */
.course-benefits {
  padding: 80px 20px;
  background-color: #242424;
}

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

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

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

.benefit-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: brightness(1.2);
}

.benefit-item h3 {
  font-size: 16px;
  color: #E0E0E0;
}

/* ABOUT STORY */
.about-story {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.about-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

.mission-statements {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 60px;
}

.statement {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #242424;
  padding: 32px;
  text-align: center;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
}

.statement h3 {
  color: #E87C31;
  margin-bottom: 12px;
}

.statement p {
  color: #B0B0B0;
  margin-bottom: 0;
}

/* VALUES GRID */
.values-grid {
  padding: 80px 20px;
  background-color: #242424;
}

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

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

/* TIMELINE */
.achievements {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

.timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-item {
  background-color: #242424;
  padding: 24px;
  border-left: 4px solid #E87C31;
  position: relative;
}

.timeline-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #E87C31;
  display: block;
  margin-bottom: 8px;
}

.timeline-item p {
  color: #B0B0B0;
  margin-bottom: 0;
}

/* LOCATION INFO */
.location-info {
  padding: 80px 20px;
  background-color: #242424;
}

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

.location-details {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1A1A1A;
  padding: 40px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
}

.location-details p {
  margin-bottom: 24px;
}

.location-details strong {
  color: #E87C31;
  font-family: 'Montserrat', sans-serif;
}

/* CAREER SERVICES */
.career-services {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.career-services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.career-services > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.service-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: #242424;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.service-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  filter: brightness(1.2);
}

/* CAREER PATHS */
.career-paths {
  padding: 80px 20px;
  background-color: #242424;
}

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

.paths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.path-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #1A1A1A;
  padding: 32px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.path-card:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.path-card h3 {
  margin-bottom: 12px;
}

.salary {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #E87C31;
  font-weight: 700;
  margin-bottom: 8px;
}

.outlook {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 16px;
}

/* SUCCESS METRICS */
.success-metrics {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

/* FEATURED STORY */
.featured-story {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.story-featured {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #242424 0%, #1F1F1F 100%);
  padding: 48px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
}

.story-featured h2 {
  margin-bottom: 16px;
}

.career-change,
.timeline,
.salary {
  display: block;
  margin-bottom: 12px;
}

.career-change {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #E87C31;
  font-weight: 600;
}

.story-content {
  margin-top: 32px;
}

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

/* SUCCESS STORIES GRID */
.success-stories-grid {
  padding: 80px 20px;
  background-color: #242424;
}

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

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.story-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #1A1A1A;
  padding: 32px;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.story-card h3 {
  margin-bottom: 8px;
}

.story-card .career,
.story-card .course {
  color: #B0B0B0;
  font-size: 14px;
}

.story-card .quote {
  font-style: italic;
  color: #E0E0E0;
  margin: 16px 0;
  font-size: 15px;
  line-height: 1.6;
}

.story-card .salary {
  color: #E87C31;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.salary-increase {
  color: #4CAF50;
  font-weight: 600;
  font-size: 14px;
}

/* CAREER TRANSITIONS */
.career-transitions {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

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

.transition-item {
  background-color: #242424;
  padding: 24px;
  border-left: 4px solid #E87C31;
}

.transition-item strong {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.transition-item p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 0;
}

/* ALUMNI NETWORK */
.alumni-network {
  padding: 80px 20px;
  background-color: #242424;
  text-align: center;
}

.alumni-network h2 {
  margin-bottom: 24px;
}

.alumni-network > p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.benefits-list {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.benefits-list li {
  color: #B0B0B0;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E87C31;
  font-weight: 700;
  font-size: 18px;
}

.member-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #E87C31;
  font-weight: 700;
}

/* BLOG CATEGORIES */
.blog-categories {
  padding: 40px 20px;
  background-color: #242424;
}

.category-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-tab {
  background-color: transparent;
  color: #B0B0B0;
  border: 2px solid #333333;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
  background-color: #E87C31;
  color: #1A1A1A;
  border-color: #E87C31;
}

/* FEATURED POST */
.featured-post {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

.post-featured {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #242424 0%, #1F1F1F 100%);
  padding: 48px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E87C31;
  color: #1A1A1A;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-featured h2 {
  margin-bottom: 16px;
}

.excerpt {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #888888;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
}

.post-meta .author {
  color: #E87C31;
  font-weight: 600;
}

.post-meta .category {
  background-color: #333333;
  padding: 4px 12px;
  border-radius: 3px;
}

/* BLOG GRID */
.blog-grid {
  padding: 60px 20px 80px;
  background-color: #242424;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.post-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background-color: #1A1A1A;
  padding: 32px;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.post-card p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

.post-card .post-meta {
  border-top: 1px solid #333333;
  padding-top: 16px;
  margin-top: auto;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  padding: 80px 20px;
  background: linear-gradient(135deg, #242424 0%, #1A1A1A 100%);
  border-top: 3px solid #E87C31;
  text-align: center;
}

.newsletter-signup h2 {
  margin-bottom: 16px;
}

.newsletter-signup > p {
  font-size: 18px;
  margin-bottom: 32px;
}

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

.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  background-color: #2C2C2C;
  border: 2px solid #333333;
  color: #E0E0E0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #E87C31;
  background-color: #1A1A1A;
}

.privacy-notice {
  font-size: 12px;
  color: #888888;
}

/* CONTACT OPTIONS */
.contact-options {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

.option-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #242424;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.option-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: brightness(1.2);
}

.option-card h3 {
  margin-bottom: 16px;
}

.option-card p {
  font-size: 14px;
  margin-bottom: 8px;
}

.option-card strong {
  color: #E87C31;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  padding: 80px 20px;
  background-color: #242424;
}

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

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #1A1A1A;
  padding: 48px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
}

.form-note {
  text-align: center;
  font-size: 18px;
  color: #E87C31;
  font-weight: 600;
  margin-bottom: 32px;
  padding: 20px;
  background-color: rgba(232, 124, 49, 0.1);
  border: 1px solid rgba(232, 124, 49, 0.3);
}

.form-fields-display {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-item {
  color: #B0B0B0;
  font-size: 16px;
  padding: 16px;
  background-color: #242424;
  border: 1px solid #333333;
}

.form-wrapper .btn-primary {
  width: 100%;
  display: block;
}

.contact-info,
.contact-email {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #888888;
}

.contact-email a,
.contact-info a {
  color: #E87C31;
  font-weight: 600;
}

/* LOCATION MAP */
.location-map {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

.location-details {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.map-placeholder {
  flex: 1 1 400px;
  background-color: #242424;
  padding: 100px 40px;
  text-align: center;
  border: 2px solid #333333;
  color: #888888;
}

.directions {
  flex: 1 1 400px;
  background-color: #242424;
  padding: 40px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
}

.directions h3 {
  margin-bottom: 24px;
}

.directions p {
  margin-bottom: 24px;
}

.directions strong {
  color: #E87C31;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px 80px;
  background-color: #1A1A1A;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #242424;
  padding: 48px;
  border: 2px solid #333333;
  border-left: 4px solid #E87C31;
}

.last-updated {
  font-size: 14px;
  color: #888888;
  font-style: italic;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.content-wrapper h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #E87C31;
}

.content-wrapper p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-wrapper ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-wrapper li {
  color: #B0B0B0;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ERROR PAGE */
.error-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #242424 0%, #1A1A1A 100%);
  text-align: center;
  border-bottom: 3px solid #E87C31;
}

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

.error-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: #E87C31;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(232, 124, 49, 0.3);
}

.error-hero h1 {
  margin-bottom: 16px;
}

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

.helpful-links {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

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

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background-color: #242424;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.link-card:hover {
  transform: translateY(-8px);
  border-color: #E87C31;
  box-shadow: 0 8px 24px rgba(232, 124, 49, 0.2);
}

.link-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  filter: brightness(1.2);
}

.link-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-cta {
  padding: 80px 20px;
  background-color: #242424;
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 16px;
}

.contact-cta > p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #242424 0%, #1A1A1A 100%);
  text-align: center;
  border-bottom: 3px solid #E87C31;
}

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

.checkmark-icon {
  width: 100px;
  height: 100px;
  background-color: #E87C31;
  color: #1A1A1A;
  font-size: 64px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 0 40px rgba(232, 124, 49, 0.4);
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.subheadline {
  font-size: 20px;
  color: #B0B0B0;
  margin-bottom: 16px;
}

.confirmation {
  font-size: 14px;
  color: #888888;
}

.next-steps {
  padding: 80px 20px;
  background-color: #1A1A1A;
}

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

.steps-timeline {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background-color: #242424;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #E87C31;
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 24px;
}

.step-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.step-item p {
  color: #B0B0B0;
  font-size: 14px;
}

.meanwhile-actions {
  padding: 80px 20px;
  background-color: #242424;
}

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

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

.action-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background-color: #1A1A1A;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #333333;
  border-top: 4px solid #E87C31;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.action-card img {
  width: 64px;
  height: 64px;
  filter: brightness(1.2);
}

.contact-reminder {
  padding: 80px 20px;
  background-color: #1A1A1A;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 24px;
}

.office-hours {
  font-size: 14px;
  color: #888888;
  margin-top: 16px;
}

.trust-badge {
  font-family: 'Montserrat', sans-serif;
  color: #E87C31;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
}

/* FOOTER - INDUSTRIAL DESIGN */
footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  border-top: 3px solid #E87C31;
  padding: 60px 20px 30px;
  color: #B0B0B0;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.2);
}

.footer-section h3 {
  color: #E87C31;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #B0B0B0;
  margin-bottom: 12px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333333;
}

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

/* COOKIE CONSENT BANNER - INDUSTRIAL STYLE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #242424 0%, #1A1A1A 100%);
  border-top: 3px solid #E87C31;
  padding: 24px 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}

.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-text {
  flex: 1 1 400px;
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #E87C31;
  text-decoration: underline;
}

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

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

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

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

.cookie-reject {
  background-color: transparent;
  color: #B0B0B0;
  border-color: #666666;
}

.cookie-reject:hover {
  background-color: #2C2C2C;
  border-color: #888888;
}

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

.cookie-settings:hover {
  background-color: rgba(232, 124, 49, 0.1);
}

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

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

.modal-content {
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  border: 3px solid #E87C31;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 40px rgba(232, 124, 49, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E87C31;
  color: #1A1A1A;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.modal-content h2 {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.cookie-category {
  background-color: #242424;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #E87C31;
}

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

.category-header h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #666666;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

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

.category-description {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

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

.modal-buttons button {
  flex: 1 1 200px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* MOBILE MENU VISIBLE */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* HERO MOBILE */
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
  
  /* FLEXBOX MOBILE ADJUSTMENTS */
  .value-grid,
  .course-grid,
  .stats-grid,
  .testimonial-grid,
  .services-grid,
  .paths-grid,
  .stories-grid,
  .posts-grid,
  .options-grid,
  .link-grid,
  .benefits-grid {
    flex-direction: column;
  }
  
  .value-item,
  .course-card,
  .stat-item,
  .testimonial-card,
  .service-item,
  .path-card,
  .story-card,
  .post-card,
  .option-card,
  .link-card,
  .benefit-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* BUTTONS MOBILE */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* FOOTER MOBILE */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE BANNER MOBILE */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* MODAL MOBILE */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
  
  /* ERROR PAGE MOBILE */
  .error-number {
    font-size: 80px;
  }
  
  /* FORMS MOBILE */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* STATS MOBILE */
  .stat-number {
    font-size: 40px;
  }
  
  /* LOCATION MOBILE */
  .location-details {
    flex-direction: column;
  }
  
  .map-placeholder,
  .directions {
    flex: 1 1 100%;
  }
  
  /* TIMELINE MOBILE */
  .steps-timeline {
    flex-direction: column;
  }
  
  .step-item {
    flex: 1 1 100%;
  }
  
  /* COURSE META MOBILE */
  .course-meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  /* CATEGORY TABS MOBILE */
  .category-tabs {
    flex-direction: column;
  }
  
  .category-tab {
    width: 100%;
  }
  
  /* MISSION STATEMENTS MOBILE */
  .mission-statements {
    flex-direction: column;
  }
  
  .statement {
    flex: 1 1 100%;
  }
  
  /* ACTION GRID MOBILE */
  .action-grid {
    flex-direction: column;
  }
  
  .action-card {
    flex: 1 1 100%;
  }
}

/* TABLET ADJUSTMENTS */
@media (min-width: 769px) and (max-width: 1024px) {
  .value-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .course-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 20px);
  }
  
  .path-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .post-card {
    flex: 1 1 calc(50% - 16px);
  }
}

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

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.hidden { display: none; }

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

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

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}