/* ============================================
   ASSOLDEGGI ENGLISH ACADEMY - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

/* ============================================
   TYPOGRAPHY - INDUSTRIAL FONTS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Impact', 'Arial Black', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #d4d4d4;
  margin-bottom: 16px;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8A547 0%, #808080 100%);
  margin-top: 12px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #b0b0b0;
  line-height: 1.7;
}

strong {
  font-weight: 600;
  color: #E8A547;
}

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

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

/* ============================================
   HEADER - INDUSTRIAL STEEL STYLE
   ============================================ */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-bottom: 3px solid #E8A547;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

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

.main-nav a {
  color: #d4d4d4;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

/* ============================================
   MOBILE MENU - INDUSTRIAL SLIDE
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6d 100%);
  border: 2px solid #E8A547;
  color: #fff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  border-left: 3px solid #E8A547;
  box-shadow: -4px 0 20px rgba(0,0,0,0.7);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 0 40px 0;
}

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

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

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

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

.mobile-nav a {
  color: #d4d4d4;
  padding: 18px 30px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #333;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(232, 165, 71, 0.1);
  transition: width 0.3s ease;
}

.mobile-nav a:hover::before {
  width: 100%;
}

.mobile-nav a:hover {
  color: #E8A547;
  padding-left: 40px;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================
   HERO SECTION - URBAN INDUSTRIAL
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(232, 165, 71, 0.03) 10px,
    rgba(232, 165, 71, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #d4d4d4;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  margin-bottom: 24px;
}

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

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

.trust-indicators {
  font-size: 14px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   BUTTONS - METALLIC INDUSTRIAL
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #E8A547 0%, #d89537 100%);
  color: #1a1a1a;
  border-color: #E8A547;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d89537 0%, #E8A547 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 165, 71, 0.4);
}

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

.btn-secondary:hover {
  background: rgba(128, 128, 128, 0.2);
  border-color: #E8A547;
  color: #E8A547;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(128, 128, 128, 0.3);
}

/* ============================================
   CARDS - INDUSTRIAL PANELS
   ============================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.testimonial-card,
.stat-card,
.blog-card,
.contact-card,
.pricing-card,
.course-detail,
.value-card,
.action-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  border: 2px solid #3a3a3a;
  border-left: 4px solid #E8A547;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-card:hover,
.service-card:hover,
.blog-card:hover,
.contact-card:hover,
.pricing-card:hover,
.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(232, 165, 71, 0.2);
  border-left-width: 6px;
}

.benefit-card h3,
.service-card h3,
.blog-card h3,
.contact-card h3,
.pricing-card h3,
.course-detail h3,
.value-card h3,
.action-card h3 {
  color: #E8A547;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.blog-card p,
.contact-card p,
.pricing-card p,
.course-detail p,
.value-card p,
.action-card p {
  color: #b0b0b0;
}

.benefit-card img,
.contact-card img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(51%) saturate(527%) hue-rotate(357deg) brightness(95%) contrast(90%);
}

/* ============================================
   GRIDS - FLEXBOX LAYOUTS
   ============================================ */
.benefits-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.blog-grid,
.contact-grid,
.pricing-grid,
.values-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.testimonial-card,
.blog-card,
.contact-card,
.pricing-card,
.value-card,
.action-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6d 100%);
  border-left-color: #E8A547;
}

.stat-card h3 {
  font-size: 48px;
  color: #E8A547;
  margin-bottom: 8px;
}

.stat-card p {
  color: #d4d4d4;
  font-size: 14px;
}

@media (max-width: 768px) {
  .benefit-card,
  .service-card,
  .testimonial-card,
  .blog-card,
  .contact-card,
  .pricing-card,
  .stat-card,
  .value-card,
  .action-card {
    flex: 1 1 100%;
  }
}

/* ============================================
   TESTIMONIALS - REVIEW CARDS
   ============================================ */
.testimonials {
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: rgba(42, 42, 42, 0.8);
  border-left-color: #2C5F8D;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.testimonial-card p {
  color: #d4d4d4;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #E8A547;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #E8A547;
  font-weight: 600;
  margin-top: 24px;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  position: relative;
}

.pricing-card.featured {
  border: 3px solid #E8A547;
  transform: scale(1.02);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #E8A547;
  color: #1a1a1a;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(232, 165, 71, 0.4);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #E8A547;
  margin: 16px 0;
}

.price-per {
  font-size: 16px;
  color: #808080;
  margin-top: -12px;
}

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

.pricing-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #b0b0b0;
}

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

/* ============================================
   SECTIONS & CONTENT AREAS
   ============================================ */
.benefits,
.services-preview,
.stats,
.cta-block,
.courses-detailed,
.story,
.values,
.team,
.achievements,
.booking-section,
.how-it-works,
.guarantee,
.newsletter,
.payment-info,
.office-info,
.legal-content,
.contact-section,
.key-points,
.alternative-contact,
.next-steps,
.while-you-wait,
.urgent-contact,
.back-navigation {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.cta-block {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6d 100%);
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid #E8A547;
  border-bottom: 4px solid #E8A547;
  position: relative;
}

.cta-block h2 {
  color: #d4d4d4;
  margin-bottom: 16px;
}

.cta-block p {
  color: #b0b0b0;
  margin-bottom: 24px;
}

.guarantee {
  text-align: center;
  font-size: 14px;
  color: #808080;
  margin-top: 16px;
}

/* ============================================
   PAGE HERO - BREADCRUMBS
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 60px 20px 40px 20px;
  border-bottom: 3px solid #E8A547;
  margin-bottom: 40px;
}

.breadcrumbs {
  font-size: 14px;
  color: #808080;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #E8A547;
}

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

.subtitle {
  font-size: 18px;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 32px;
}

.last-updated,
.trust-badge {
  font-size: 14px;
  color: #808080;
  margin-top: 16px;
}

/* ============================================
   TEXT SECTIONS & CONTENT
   ============================================ */
.text-section {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 32px;
  border-left: 4px solid #E8A547;
  margin-bottom: 32px;
  border-radius: 4px;
}

.text-section h2,
.text-section h3 {
  color: #d4d4d4;
  margin-bottom: 16px;
}

.text-section h2::after {
  background: linear-gradient(90deg, #E8A547 0%, #808080 100%);
}

.text-section ul,
.text-section ol {
  margin-left: 20px;
  color: #b0b0b0;
}

.text-section ul li,
.text-section ol li {
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ============================================
   FORMS - INDUSTRIAL INPUT STYLE
   ============================================ */
.form-container {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 40px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #E8A547;
  border-radius: 4px;
  max-width: 600px;
  margin: 0 auto;
}

.form-container p {
  margin-bottom: 20px;
}

.form-container strong {
  display: block;
  margin-bottom: 8px;
  color: #d4d4d4;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.note {
  font-size: 14px;
  color: #808080;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   STEPS & PROCESSES
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.step {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 24px;
  border-left: 4px solid #E8A547;
  border-radius: 4px;
  position: relative;
}

.step h3 {
  color: #E8A547;
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #b0b0b0;
}

.expected-response {
  text-align: center;
  font-weight: 600;
  color: #E8A547;
  margin-top: 32px;
  padding: 16px;
  background: rgba(232, 165, 71, 0.1);
  border: 2px solid #E8A547;
  border-radius: 4px;
}

/* ============================================
   FOOTER - INDUSTRIAL BASE
   ============================================ */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-top: 4px solid #E8A547;
  color: #b0b0b0;
  padding: 60px 20px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-section h4 {
  color: #E8A547;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #808080;
}

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

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

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #E8A547;
}

.footer-nav a:hover {
  color: #E8A547;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #3a3a3a;
  color: #606060;
  font-size: 14px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-top: 3px solid #E8A547;
  padding: 20px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.7);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #b0b0b0;
  font-size: 14px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #E8A547 0%, #d89537 100%);
  color: #1a1a1a;
  border-color: #E8A547;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #d89537 0%, #E8A547 100%);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #b0b0b0;
  border-color: #808080;
}

.cookie-reject:hover {
  background: rgba(128, 128, 128, 0.2);
  color: #E8A547;
  border-color: #E8A547;
}

.cookie-settings {
  background: transparent;
  color: #d4d4d4;
  border-color: #3a3a3a;
}

.cookie-settings:hover {
  background: rgba(58, 58, 58, 0.3);
  border-color: #E8A547;
  color: #E8A547;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid #E8A547;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.8);
}

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

.cookie-modal-close:hover {
  background: #E8A547;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(42, 42, 42, 0.5);
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #E8A547;
  border-radius: 4px;
}

.cookie-category h3 {
  color: #E8A547;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: #b0b0b0;
  font-size: 14px;
}

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

.cookie-toggle.active {
  background: #E8A547;
}

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

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

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

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

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4a6d 100%);
  margin-bottom: 40px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #E8A547;
  color: #1a1a1a;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 16px rgba(232, 165, 71, 0.4);
}

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

.thank-you-hero p {
  color: #b0b0b0;
  font-size: 18px;
}

/* ============================================
   BLOG SPECIFIC STYLES
   ============================================ */
.blog-card.featured {
  flex: 1 1 100%;
  border-left-width: 6px;
}

.meta {
  font-size: 14px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
}

/* ============================================
   COURSE DETAILS
   ============================================ */
.course-detail {
  margin-bottom: 40px;
}

.course-detail ul {
  list-style: none;
  margin: 20px 0;
}

.course-detail ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #b0b0b0;
}

.course-detail ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E8A547;
  font-weight: 700;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #E8A547;
  border-bottom: 3px solid #E8A547;
}

.newsletter-form {
  max-width: 500px;
  margin: 24px auto;
}

.newsletter-form p {
  margin-bottom: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.phone {
  font-size: 28px;
  font-weight: 700;
  color: #E8A547;
  margin: 16px 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .text-section {
    padding: 20px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

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

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

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

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

.cookie-banner.show {
  animation: slideUp 0.4s ease;
}

.cookie-modal.show {
  animation: fadeIn 0.3s ease;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-block,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
.btn:focus,
a:focus,
button:focus {
  outline: 2px solid #E8A547;
  outline-offset: 2px;
}

.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;
}

/* ============================================
   END OF INDUSTRIAL MODERN CSS
   ============================================ */