/* ===================================
   REDNERKRAFT - INDUSTRIAL MODERN DESIGN
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E8E8E8;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #C94E3A;
}

ul {
  list-style: none;
}

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

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

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

/* ===================================
   HEADER - INDUSTRIAL STEEL LOOK
   =================================== */

header {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border-bottom: 3px solid #F4A261;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

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

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

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

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #F4A261;
  transition: width 0.3s ease;
}

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

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

/* ===================================
   MOBILE MENU - INDUSTRIAL SLIDER
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #F4A261;
  color: #1A1A1A;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C94E3A;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 3px solid #F4A261;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #F4A261;
  color: #F4A261;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #E8E8E8;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4A261;
  border-left-color: #F4A261;
  background: rgba(244, 162, 97, 0.1);
}

/* ===================================
   BUTTONS - INDUSTRIAL METAL STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #F4A261;
  background: #F4A261;
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #C94E3A;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #FFFFFF;
  border-color: #C94E3A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.btn-primary {
  background: #F4A261;
  border-color: #F4A261;
  color: #1A1A1A;
}

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

.btn-secondary:hover {
  background: #F4A261;
  color: #1A1A1A;
}

/* ===================================
   HERO SECTION - URBAN INDUSTRIAL
   =================================== */

.hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #F4A261;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(244, 162, 97, 0.05) 50%, transparent 60%);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

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

/* ===================================
   SECTIONS - MODULAR LAYOUT
   =================================== */

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

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

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

/* ===================================
   VALUE PROPOSITION - FLEX GRID
   =================================== */

.value-proposition {
  background: #242424;
  border-top: 3px solid #F4A261;
  border-bottom: 3px solid #F4A261;
}

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

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

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: #1A1A1A;
  padding: 32px;
  border-left: 4px solid #F4A261;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateX(8px);
  border-left-color: #C94E3A;
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.2);
}

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

/* ===================================
   SERVICES OVERVIEW - CARD GRID
   =================================== */

.services-overview {
  background: #1A1A1A;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #242424;
  padding: 32px;
  border: 2px solid #333333;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #F4A261;
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: #F4A261;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(244, 162, 97, 0.3);
}

.service-card:hover::before {
  height: 100%;
}

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

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #F4A261;
  margin: 20px 0;
}

/* ===================================
   PROCESS STEPS - FLEX TIMELINE
   =================================== */

.process {
  background: #242424;
  border-top: 3px solid #F4A261;
}

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

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

.process-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #1A1A1A;
  border: 2px solid #333333;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #F4A261;
  color: #1A1A1A;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.process-step h3 {
  margin-bottom: 12px;
}

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

.testimonials {
  background: #1A1A1A;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #F5F5F5;
  padding: 32px;
  border-left: 4px solid #F4A261;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #555555;
  font-weight: 600;
  font-style: normal;
  text-align: right;
}

/* ===================================
   STATS - FLEX DISPLAY
   =================================== */

.stats {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 60px 20px;
  border-top: 3px solid #F4A261;
  border-bottom: 3px solid #F4A261;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4A261;
  margin-bottom: 8px;
}

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

/* ===================================
   CTA BANNER - CENTERED ACTION
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #F4A261 0%, #C94E3A 100%);
  padding: 80px 20px;
  text-align: center;
  color: #FFFFFF;
}

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

.cta-banner p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFFFFF;
}

.cta-banner .btn:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #1A1A1A;
}

.cta-banner .btn-secondary {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ===================================
   FOOTER - INDUSTRIAL BASE
   =================================== */

footer {
  background: #0A0A0A;
  padding: 60px 20px 20px;
  border-top: 3px solid #F4A261;
}

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

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

.footer-section h3 {
  color: #F4A261;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #B8B8B8;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #B8B8B8;
  transition: all 0.3s ease;
}

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

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

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

/* ===================================
   PAGE HEADER - BREADCRUMB
   =================================== */

.page-header {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 3px solid #F4A261;
}

.breadcrumb {
  font-size: 14px;
  color: #B8B8B8;
  margin-bottom: 20px;
  text-align: center;
}

.breadcrumb a {
  color: #F4A261;
}

.breadcrumb span {
  color: #FFFFFF;
}

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

/* ===================================
   COURSES PAGE - CARD LAYOUT
   =================================== */

.courses {
  padding: 60px 20px;
}

.course-card {
  background: #242424;
  padding: 40px;
  border-left: 4px solid #F4A261;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.3);
}

.course-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 24px 0;
}

.course-details span {
  color: #B8B8B8;
  font-size: 14px;
}

.course-details .price {
  font-size: 32px;
  font-weight: 700;
  color: #F4A261;
}

.course-details .duration,
.course-details .level {
  padding: 8px 16px;
  background: #1A1A1A;
  border: 1px solid #333333;
}

/* ===================================
   FAQ - ACCORDION STYLE
   =================================== */

.faq {
  background: #242424;
  padding: 60px 20px;
}

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

.faq-item {
  background: #1A1A1A;
  padding: 24px;
  margin-bottom: 20px;
  border-left: 4px solid #F4A261;
}

.faq-item h3 {
  color: #F4A261;
  margin-bottom: 12px;
}

/* ===================================
   ABOUT PAGE - TEXT/IMAGE SECTIONS
   =================================== */

.about-story,
.methodology,
.achievements,
.team-intro,
.philosophy {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.about-story {
  background: #242424;
}

.mission-vision {
  padding: 60px 20px;
  background: #1A1A1A;
}

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

.mission, .vision {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #242424;
  padding: 40px;
  border-top: 4px solid #F4A261;
}

.values {
  padding: 60px 20px;
  background: #242424;
}

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

.values-grid .value-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
}

.methodology ul,
.achievements ul,
.philosophy ul {
  list-style: disc;
  padding-left: 24px;
}

.methodology li,
.achievements li,
.philosophy li {
  color: #B8B8B8;
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ===================================
   TRAINERS PAGE - GRID CARDS
   =================================== */

.trainers {
  padding: 60px 20px;
}

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

.trainer-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #242424;
  padding: 32px;
  border-top: 4px solid #F4A261;
  text-align: center;
  margin-bottom: 20px;
}

.trainer-title {
  color: #F4A261;
  font-weight: 600;
  margin-bottom: 8px;
}

.specialization {
  color: #B8B8B8;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 16px;
}

.qualifications,
.philosophy {
  background: #242424;
}

/* ===================================
   SUCCESS STORIES - FEATURED + GRID
   =================================== */

.featured-story {
  background: #242424;
  padding: 60px 20px;
  border-left: 6px solid #F4A261;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.participant-name {
  font-size: 20px;
  font-weight: 700;
  color: #F4A261;
  margin-bottom: 16px;
}

.story-content blockquote {
  font-size: 20px;
  font-style: italic;
  color: #E8E8E8;
  padding: 24px;
  background: #1A1A1A;
  border-left: 4px solid #F4A261;
  margin: 24px 0;
}

.course-taken {
  font-size: 14px;
  color: #777777;
}

.success-stories {
  padding: 60px 20px;
}

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

.story-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #242424;
  padding: 32px;
  border-left: 4px solid #F4A261;
  margin-bottom: 20px;
}

.story-card .role {
  color: #F4A261;
  font-size: 14px;
  margin-bottom: 12px;
}

.story-card h4 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.results {
  background: #242424;
  padding: 60px 20px;
}

.results ul {
  list-style: disc;
  padding-left: 24px;
}

.results li {
  color: #B8B8B8;
  margin-bottom: 12px;
  padding-left: 8px;
}

.industries {
  padding: 60px 20px;
}

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

.industries-grid span {
  padding: 12px 24px;
  background: #242424;
  border: 1px solid #333333;
  color: #B8B8B8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.industries-grid span:hover {
  background: #F4A261;
  color: #1A1A1A;
  border-color: #F4A261;
}

/* ===================================
   BLOG PAGE - FEATURED + GRID
   =================================== */

.featured-post {
  background: #242424;
  padding: 60px 20px;
  border-left: 6px solid #F4A261;
}

.post-featured {
  max-width: 800px;
  margin: 0 auto;
}

.excerpt {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 24px;
}

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

.blog-posts {
  padding: 60px 20px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: #242424;
  padding: 32px;
  border-top: 4px solid #F4A261;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(244, 162, 97, 0.3);
}

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

.blog-card .post-meta {
  margin-top: 20px;
}

.newsletter {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #F4A261;
  border-bottom: 3px solid #F4A261;
}

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

.newsletter-form {
  max-width: 600px;
  margin: 32px auto 0;
}

.form-note {
  color: #777777;
  font-size: 14px;
  margin-top: 16px;
}

/* ===================================
   CONTACT PAGE - FORM & INFO
   =================================== */

.contact-options {
  padding: 60px 20px;
  background: #242424;
}

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

.contact-option {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #1A1A1A;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #F4A261;
}

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

.contact-form-section {
  padding: 60px 20px;
}

.office-hours {
  background: #242424;
  padding: 60px 20px;
}

.office-hours ul {
  list-style: none;
  max-width: 400px;
  margin: 0 auto;
}

.office-hours li {
  padding: 12px;
  border-bottom: 1px solid #333333;
  color: #B8B8B8;
}

/* ===================================
   LEGAL PAGES - CONTENT STYLING
   =================================== */

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #F4A261;
}

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

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

.legal-content li {
  color: #B8B8B8;
  margin-bottom: 8px;
  padding-left: 8px;
}

/* ===================================
   THANK YOU PAGE - CENTERED MESSAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 120px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.next-steps {
  padding: 60px 20px;
  background: #242424;
}

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

.steps-grid .step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #1A1A1A;
  margin-bottom: 20px;
}

.steps-grid .step-number {
  width: 50px;
  height: 50px;
  background: #F4A261;
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.resources {
  padding: 60px 20px;
}

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

.resource-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #242424;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #F4A261;
  margin-bottom: 20px;
}

.community {
  background: #242424;
  padding: 60px 20px;
  text-align: center;
}

.community .stats-grid {
  justify-content: center;
  margin-top: 32px;
}

.community .stat {
  font-size: 18px;
  color: #F4A261;
  font-weight: 600;
}

/* ===================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2A2A2A;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  z-index: 950;
  border-top: 3px solid #F4A261;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-text p {
  color: #E8E8E8;
  margin-bottom: 0;
}

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

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 13px;
}

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

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

.cookie-modal-content {
  background: #2A2A2A;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 2px solid #F4A261;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #F4A261;
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #1A1A1A;
  border-left: 3px solid #F4A261;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Grids to single column */
  .value-grid,
  .service-grid,
  .process-grid,
  .testimonial-grid,
  .stats-grid,
  .mission-vision-grid,
  .values-grid,
  .trainer-grid,
  .stories-grid,
  .blog-grid,
  .contact-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .process-step,
  .testimonial-card,
  .stat-item,
  .mission,
  .vision,
  .trainer-card,
  .story-card,
  .blog-card,
  .contact-option,
  .resource-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  /* Course Details */
  .course-details {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Industries Grid */
  .industries-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .service-card,
  .course-card,
  .trainer-card {
    padding: 24px;
  }
}

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

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

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

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

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: #F4A261;
  color: #1A1A1A;
}

::-moz-selection {
  background: #F4A261;
  color: #1A1A1A;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #F4A261;
  outline-offset: 2px;
}

/* ===================================
   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);
  }
}

/* Apply fade-in to sections on load */
section {
  animation: fadeIn 0.6s ease-out;
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: #000000;
    color: #FFFFFF;
  }
  
  .btn {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ===================================
   END OF STYLESHEET
   =================================== */