/* ============================================
   FROST PATHS ACADEMY - MODERN BOLD CSS
   Design Style: Bold modern with strong typography
   ============================================ */

/* ============================================
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul {
  list-style-position: inside;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY - BOLD MODERN STYLE
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Russo One', 'Impact', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #0D3A5C;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

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

strong {
  font-weight: 700;
  color: #0D3A5C;
}

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

/* ============================================
   HEADER - BOLD DESIGN
   ============================================ */
header {
  background: #0D3A5C;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px rgba(13, 58, 92, 0.2);
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cta-button {
  background: #FF8C61;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 140, 97, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 97, 0.4);
}

/* ============================================
   MOBILE MENU - HAMBURGER
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #FF8C61;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 140, 97, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0D3A5C;
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF8C61;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav a:hover {
  background: rgba(255, 140, 97, 0.2);
  border-left-color: #FF8C61;
  padding-left: 20px;
}

/* ============================================
   HERO SECTION - BOLD & DYNAMIC
   ============================================ */
.hero {
  background: linear-gradient(135deg, #0D3A5C 0%, #1a5a8a 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 32px;
  font-weight: 400;
}

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

.cta-primary {
  background: #FF8C61;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 140, 97, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary:hover {
  background: #ff6b35;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 140, 97, 0.5);
}

.cta-secondary {
  background: transparent;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-secondary:hover {
  background: #ffffff;
  color: #0D3A5C;
  transform: translateY(-4px);
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-indicators span {
  font-size: 16px;
  font-weight: 600;
  color: #E8F4F8;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   SECTIONS - BOLD SPACING
   ============================================ */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
  background: #F5F5F5;
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #0D3A5C;
  box-shadow: 6px 6px 0 #FF8C61;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #FF8C61;
}

.benefit-card h3 {
  color: #0D3A5C;
  margin-bottom: 16px;
  font-size: 24px;
}

.benefit-card p {
  color: #555555;
  line-height: 1.7;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 4px solid #0D3A5C;
  position: relative;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #FF8C61, #ff6b35);
  border-radius: 12px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
}

.service-card h3 {
  color: #0D3A5C;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 16px;
  color: #555555;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #FF8C61;
  margin: 20px 0;
  font-family: 'Russo One', sans-serif;
}

.btn {
  display: inline-block;
  background: #0D3A5C;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.btn:hover {
  background: #FF8C61;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 140, 97, 0.3);
}

.btn-primary {
  display: inline-block;
  background: #FF8C61;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 16px;
  font-size: 16px;
}

.btn-primary:hover {
  background: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 140, 97, 0.4);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  background: linear-gradient(135deg, #0D3A5C 0%, #1a5a8a 100%);
  color: #ffffff;
}

.process h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.step {
  flex: 1 1 calc(20% - 20px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 140, 97, 0.2);
  border-color: #FF8C61;
  transform: translateY(-5px);
}

.step-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FF8C61;
  margin-bottom: 16px;
  font-family: 'Russo One', sans-serif;
}

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

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

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: #F5F5F5;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #FF8C61;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  font-style: italic;
}

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

.author strong {
  font-size: 16px;
  color: #0D3A5C;
  font-weight: 700;
}

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

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #FF8C61;
  margin-top: 20px;
}

/* ============================================
   CTA BANNER - BOLD CALL TO ACTION
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #FF8C61 0%, #ff6b35 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  pointer-events: none;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

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

.cta-banner .cta-primary {
  background: #0D3A5C;
  position: relative;
  z-index: 2;
}

.cta-banner .cta-primary:hover {
  background: #1a5a8a;
}

.urgency {
  font-size: 14px;
  color: #ffffff;
  margin-top: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* ============================================
   FOOTER - BOLD DESIGN
   ============================================ */
footer {
  background: #0D3A5C;
  color: #ffffff;
  padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
  color: #FF8C61;
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: uppercase;
}

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

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

.footer-column nav a {
  color: #E8F4F8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
}

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

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-menu a {
  color: #E8F4F8;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #FF8C61;
}

.footer-bottom p {
  color: #E8F4F8;
  font-size: 13px;
  text-align: center;
}

/* ============================================
   HERO PAGE (SUBPAGES)
   ============================================ */
.hero-page {
  background: linear-gradient(135deg, #0D3A5C 0%, #1a5a8a 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

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

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

.breadcrumbs {
  font-size: 14px;
  color: #E8F4F8;
  margin-bottom: 20px;
  text-align: left;
}

.breadcrumbs a {
  color: #FF8C61;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

/* ============================================
   COURSES PAGE
   ============================================ */
.courses .course-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 4px solid #0D3A5C;
  box-shadow: 8px 8px 0 #FF8C61;
  transition: all 0.3s ease;
}

.courses .course-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #FF8C61;
}

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

.courses .course-card ul {
  margin: 24px 0;
  padding-left: 0;
}

.courses .course-card li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.courses .course-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF8C61;
  font-weight: 900;
  font-size: 18px;
}

/* ============================================
   CURRICULUM
   ============================================ */
.curriculum {
  background: #F5F5F5;
}

.curriculum h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.skill-level {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 3px solid #0D3A5C;
  text-align: center;
  transition: all 0.3s ease;
}

.skill-level:hover {
  transform: translateY(-5px);
  border-color: #FF8C61;
  box-shadow: 0 8px 20px rgba(255, 140, 97, 0.2);
}

.skill-level h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

/* ============================================
   PAYMENT OPTIONS
   ============================================ */
.payment-options {
  background: #F5F5F5;
}

.payment-options h2 {
  text-align: center;
  margin-bottom: 50px;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.payment-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #0D3A5C;
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: #FF8C61;
}

.payment-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.payment-methods {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 24px;
}

/* ============================================
   WORKSHOPS
   ============================================ */
.workshops-intro {
  background: #F5F5F5;
}

.workshops .workshop-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 4px solid #0D3A5C;
  box-shadow: 8px 8px 0 #FF8C61;
  transition: all 0.3s ease;
}

.workshops .workshop-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #FF8C61;
}

.workshops .workshop-card h2 {
  margin-bottom: 16px;
}

.workshops .workshop-card ul {
  margin: 24px 0;
  padding-left: 0;
}

.workshops .workshop-card li {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.workshops .workshop-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF8C61;
  font-weight: 900;
  font-size: 18px;
}

/* ============================================
   WORKSHOP STRUCTURE / TIMELINE
   ============================================ */
.workshop-structure {
  background: #F5F5F5;
}

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

.timeline-item {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border-left: 6px solid #FF8C61;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.timeline-item h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story,
.facility,
.achievements {
  background: #F5F5F5;
}

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

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

.value-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #0D3A5C;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: #FF8C61;
  box-shadow: 0 8px 20px rgba(255, 140, 97, 0.2);
}

.value-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.facility ul,
.achievements-list {
  margin: 24px 0;
  padding-left: 0;
}

.facility li,
.achievements-list li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  color: #333333;
  font-size: 16px;
}

.facility li::before,
.achievements-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #FF8C61;
  font-size: 14px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  background: linear-gradient(135deg, #0D3A5C 0%, #1a5a8a 100%);
  color: #ffffff;
}

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

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

.stat {
  flex: 1 1 calc(25% - 18px);
  min-width: 180px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 140, 97, 0.2);
  border-color: #FF8C61;
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 56px;
  font-weight: 900;
  color: #FF8C61;
  margin-bottom: 12px;
  font-family: 'Russo One', sans-serif;
}

.stat p {
  color: #E8F4F8;
  font-size: 16px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-intro {
  background: #F5F5F5;
  text-align: center;
}

.projects .project-card,
.student-work .work-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 3px solid #0D3A5C;
  box-shadow: 6px 6px 0 #FF8C61;
  transition: all 0.3s ease;
}

.projects .project-card:hover,
.student-work .work-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #FF8C61;
}

.projects .project-card h3,
.student-work .work-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.techniques {
  background: #F5F5F5;
}

.techniques h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.technique-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #0D3A5C;
  transition: all 0.3s ease;
}

.technique-item:hover {
  transform: translateY(-5px);
  border-color: #FF8C61;
}

.technique-item h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info {
  background: #F5F5F5;
}

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

.contact-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #0D3A5C;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #FF8C61;
  box-shadow: 0 8px 20px rgba(255, 140, 97, 0.2);
}

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

.note {
  font-size: 13px;
  color: #999999;
  margin-top: 12px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  background: #F5F5F5;
}

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

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 40px;
  color: #666666;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 3px solid #0D3A5C;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #0D3A5C;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #FF8C61;
  box-shadow: 0 0 0 3px rgba(255, 140, 97, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.btn-submit {
  display: inline-block;
  background: #FF8C61;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 140, 97, 0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: #F5F5F5;
}

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

.faq-item {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 6px solid #FF8C61;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.legal-content ul {
  margin: 20px 0;
  padding-left: 0;
}

.legal-content li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #FF8C61;
  font-size: 20px;
}

.legal-content a {
  color: #FF8C61;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ============================================
   CANCELLATION POLICY
   ============================================ */
.cancellation {
  background: #F5F5F5;
}

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

.cancellation ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 0;
}

.cancellation li {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 5px solid #FF8C61;
  font-size: 16px;
  padding-left: 48px;
  position: relative;
}

.cancellation li::before {
  content: '→';
  position: absolute;
  left: 20px;
  color: #FF8C61;
  font-size: 20px;
  font-weight: 900;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-hero {
  background: linear-gradient(135deg, #0D3A5C 0%, #1a5a8a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.icon-success {
  width: 100px;
  height: 100px;
  background: #FF8C61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #ffffff;
  margin: 0 auto 32px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(255, 140, 97, 0.3);
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 18px;
  color: #E8F4F8;
  margin-bottom: 32px;
}

.next-steps {
  background: #F5F5F5;
}

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

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

.step-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #0D3A5C;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
  border-color: #FF8C61;
}

.step-num {
  display: block;
  width: 60px;
  height: 60px;
  background: #FF8C61;
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Russo One', sans-serif;
}

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

.timeline-note {
  text-align: center;
  color: #666666;
  font-style: italic;
  margin-top: 24px;
}

.resources {
  background: #ffffff;
}

.resources h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.resource-card {
  flex: 1 1 calc(50% - 16px);
  max-width: 400px;
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 3px solid #0D3A5C;
  box-shadow: 6px 6px 0 #FF8C61;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 #FF8C61;
}

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

.social-proof-alt {
  background: linear-gradient(135deg, #0D3A5C 0%, #1a5a8a 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.social-proof-alt h2 {
  color: #ffffff;
  margin-bottom: 32px;
}

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

.stats-inline span {
  font-size: 18px;
  font-weight: 600;
  color: #E8F4F8;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D3A5C;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

#cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: #E8F4F8;
  min-width: 250px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#accept-cookies {
  background: #FF8C61;
  color: #ffffff;
}

#accept-cookies:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

#reject-cookies {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

#reject-cookies:hover {
  background: #ffffff;
  color: #0D3A5C;
}

#cookie-settings {
  background: transparent;
  color: #E8F4F8;
  border: 2px solid #E8F4F8;
}

#cookie-settings:hover {
  background: #E8F4F8;
  color: #0D3A5C;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.cookie-modal-content h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 8px;
  border-left: 4px solid #FF8C61;
}

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

#save-preferences,
#close-modal {
  flex: 1;
  min-width: 150px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

#save-preferences {
  background: #FF8C61;
  color: #ffffff;
}

#save-preferences:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

#close-modal {
  background: #0D3A5C;
  color: #ffffff;
}

#close-modal:hover {
  background: #1a5a8a;
}

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

/* Tablet Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .cta-primary,
  .cta-secondary {
    font-size: 16px;
    padding: 14px 28px;
  }
  
  .benefit-card {
    flex: 1 1 100%;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .skill-level,
  .payment-card,
  .value-card,
  .stat,
  .technique-item,
  .contact-card,
  .step-item {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 50px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-indicators span {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .skill-level,
  .payment-card,
  .value-card,
  .stat,
  .technique-item,
  .contact-card,
  .step-item {
    flex: 1 1 100%;
  }
  
  .step-number {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .cta-banner h2 {
    font-size: 28px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  #save-preferences,
  #close-modal {
    width: 100%;
  }
  
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .container {
    padding: 0 15px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

/* ============================================
   ACCESSIBILITY & UTILITY CLASSES
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-button,
  .cta-banner {
    display: none !important;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Respect user's motion preferences */
@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;
  }
}