/*
Theme Name: Cheer Terrace
Description: 営業力×見た目改革で成果と自信を手に入れる
Version: 1.0
*/

:root {
  --primary-orange: #FF6B35;
  --secondary-orange: #FF8F42;
  --accent-orange: #FFB347;
  --light-orange: #FFF4E6;
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8F42 35%, #FFB347 100%);
  --gradient-secondary: linear-gradient(135deg, #FFF4E6 0%, #FFEDE0 50%, #FFE6D3 100%);
  --gradient-accent: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7a7a;
  --surface-white: #ffffff;
  --surface-light: #fafafa;
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.08);
  --shadow-md: 0 8px 25px rgba(255, 107, 53, 0.12);
  --shadow-lg: 0 20px 40px rgba(255, 107, 53, 0.15);
  --shadow-xl: 0 25px 50px rgba(255, 107, 53, 0.2);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
}

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

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-feature-settings: 'kern', 'liga', 'clig', 'calt';
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-white);
  overflow-x: hidden;
  padding-top: 80px;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo img {
  width: 4rem;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange);
}

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

.header-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.header-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  padding: 20px 24px;
}

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

.mobile-nav .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

/* Typography */
.text-display {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.text-h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

.text-body {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-secondary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 179, 71, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(255, 143, 66, 0.08) 0%, transparent 50%);
  z-index: 1;
}

/* Floating Dots Animation */
.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  animation: float-freely infinite ease-in-out;
  backdrop-filter: blur(1px);
  will-change: transform, opacity;
  animation-play-state: running;
}

.dot:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
  background: rgba(255, 154, 86, 0.15);
}

.dot:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 80%;
  animation-duration: 25s;
  animation-delay: 2s;
  background: rgba(255, 143, 66, 0.12);
  animation-name: float-big;
}

.dot:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 80%;
  left: 20%;
  animation-duration: 18s;
  animation-delay: 4s;
  background: rgba(255, 179, 71, 0.18);
}

.dot:nth-child(4) {
  width: 70px;
  height: 70px;
  top: 30%;
  left: 70%;
  animation-duration: 22s;
  animation-delay: 1s;
  background: rgba(255, 107, 53, 0.1);
  animation-name: float-wide;
}

.dot:nth-child(5) {
  width: 50px;
  height: 50px;
  top: 10%;
  left: 50%;
  animation-duration: 28s;
  animation-delay: 3s;
  background: rgba(255, 188, 133, 0.14);
}

.dot:nth-child(6) {
  width: 90px;
  height: 90px;
  top: 70%;
  left: 60%;
  animation-duration: 24s;
  animation-delay: 5s;
  background: rgba(255, 154, 86, 0.08);
  animation-name: float-big;
}

.dot:nth-child(7) {
  width: 35px;
  height: 35px;
  top: 40%;
  left: 15%;
  animation-duration: 26s;
  animation-delay: 1.5s;
  background: rgba(255, 143, 66, 0.16);
}

.dot:nth-child(8) {
  width: 65px;
  height: 65px;
  top: 85%;
  left: 85%;
  animation-duration: 21s;
  animation-delay: 3.5s;
  background: rgba(255, 179, 71, 0.11);
  animation-name: float-wide;
}

@keyframes float-big {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.5;
  }
  25% {
    transform: translate(180px, -120px) rotate(120deg) scale(1.5);
    opacity: 0.9;
  }
  50% {
    transform: translate(-100px, -200px) rotate(240deg) scale(0.6);
    opacity: 0.3;
  }
  75% {
    transform: translate(-180px, 100px) rotate(300deg) scale(1.4);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.5;
  }
}

@keyframes float-wide {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  20% {
    transform: translate(150px, -60px) rotate(72deg) scale(1.2);
    opacity: 0.9;
  }
  40% {
    transform: translate(50px, -180px) rotate(144deg) scale(0.8);
    opacity: 0.4;
  }
  60% {
    transform: translate(-120px, -100px) rotate(216deg) scale(1.1);
    opacity: 0.6;
  }
  80% {
    transform: translate(-160px, 60px) rotate(288deg) scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.7;
  }
}

@keyframes float-freely {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(120px, -100px) rotate(90deg) scale(1.3);
    opacity: 0.9;
  }
  50% {
    transform: translate(-80px, -150px) rotate(180deg) scale(0.7);
    opacity: 0.4;
  }
  75% {
    transform: translate(-120px, 80px) rotate(270deg) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.6;
  }
}

.hero-content {
  color: #B8400A;
  max-width: 600px;
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-small-text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 400;
}

.hero-btn {
   background: var(--gradient-primary);
   color: white;
   padding: 15px 35px;
   border: none;
   border-radius: 25px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   box-shadow: var(--shadow-md);
   text-decoration: none;
   display: inline-block;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #E55A2B 0%, #FF7A35 50%, #FFA640 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Section Layouts */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 20;
  background: inherit;
}

.section-light {
  background: var(--surface-light);
  position: relative;
  z-index: 25;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
}

.section-title::before {
  content: attr(data-en-title);
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: rgb(255 107 53 / 27%);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title::after {
   content: '';
   position: absolute;
   bottom: -8px;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 3px;
   background: var(--gradient-primary);
   border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Vision Section */
.vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.vision-content h2 {
  color: var(--text-primary);
  margin-bottom: 32px;
  line-height: 1.4;
}

.vision-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.vision-highlight {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 24px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary-orange);
}

.vision-visual {
  position: relative;
}

.vision-card {
  background: var(--surface-white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  border-left: 4px solid var(--secondary-orange);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.vision-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.vision-card h4 {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.vision-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Services Section */
.services-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
/*
.services-container::before {
  content: 'WHAT YOU CAN DO HERE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  color: rgba(255, 107, 53, 0.08);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  letter-spacing: 0.1em;
} */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 15px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  padding: 40px 20px 20px 30px;
  text-align: center;
  position: relative;
  /* min-height: 350px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #e0e0e0;
}

.service-number {
  left: 95px;
  position: absolute;
  top: -25px;
  background: white;
  border-radius: 50px;
  padding: 11px;
  font-size: 35px;
  border: 1px solid;
  font-weight: 700;
  color: #FF6B35;
  line-height: 1;
}

.service-icon-wrapper {
  width: 50px;
  height: 50px;
  margin: 15px auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrapper svg {
  width: 50px;
  height: 50px;
  stroke: #333;
  stroke-width: 1.5;
  fill: none;
}

.service-main-text {
  font-size: 0.9rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-sub-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-description {
  font-size: 0.7rem;
  color: #666;
  line-height: 1.4;
  text-align: left;
  /* margin-top: auto; */
}

/* Curriculum */
.curriculum-container {
  margin-top: 80px;
}

.curriculum-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.curriculum-section {
  background: var(--surface-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.curriculum-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.curriculum-header {
  margin-bottom: 32px;
}

.curriculum-header h4 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.curriculum-header p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.lesson-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.lesson-item {
  padding: 16px 20px;
  background: var(--surface-light);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--secondary-orange);
  transition: all 0.3s ease;
  cursor: pointer;
}

.lesson-item:hover {
  background: var(--gradient-accent);
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.lesson-number {
  font-weight: 700;
  color: var(--primary-orange);
  margin-right: 12px;
  font-size: 0.875rem;
}

.lesson-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Flow */
.flow-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.flow-timeline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: translateY(-50%);
  z-index: 1;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.flow-item {
  text-align: center;
  position: relative;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto -28px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 3;
}

.flow-content {
  background: var(--surface-white);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e1e1e1;

}

.flow-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flow-title {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.flow-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Target Grid */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface-white);
  padding: 32px 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.target-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-orange);
}

.target-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.target-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
  stroke: var(--primary-orange);
}

.target-text {
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--surface-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.before-after {
  display: grid;
  gap: 20px;
}

.before, .after {
  padding: 20px;
  border-radius: var(--border-radius-sm);
  position: relative;
}

.before {
  background: rgba(239, 68, 68, 0.05);
  border-left: 4px solid #EF4444;
}

.after {
  background: var(--gradient-accent);
  border-left: 4px solid var(--primary-orange);
}

.label {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.before .label {
  color: #EF4444;
}

.after .label {
  color: var(--primary-orange);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-white);
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 24px 32px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  border-left-color: var(--primary-orange);
}

.faq-question:hover {
  background: var(--surface-light);

}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 32px 0;
  color: var(--text-secondary);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding-top: 8px;
  padding-bottom: 24px;
}

/* CTA */
.cta {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
  radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
  radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.cta-title {
   margin-bottom: 24px;
   font-weight: 700;
   position: relative;
}

.cta-title::before {
   content: attr(data-en-title);
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: clamp(2.7rem, 8vw, 6rem);
   font-weight: 900;
   color: rgba(255, 255, 255, 0.08);
   white-space: nowrap;
   z-index: -1;
   pointer-events: none;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.cta-description {
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
}

.btn-secondary {
  background: white;
  color: var(--primary-orange);
  padding: 18px 40px;
  border-radius: var(--border-radius-md);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ccc;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--accent-orange);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.6;
  opacity: 0.8;
}

.footer-section h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #404040;
  color: #888;
  font-size: 0.875rem;
}

/* Contact Form 7 Styles */
.wpcf7-form {
  display: grid;
  gap: 24px;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: grid;
  gap: 8px;
}

.wpcf7-form label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  width: 100%;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
}

.wpcf7-form .wpcf7-submit {
  background: var(--gradient-primary);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius-md);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #166534;
}

.wpcf7-response-output.wpcf7-validation-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* Contact Page Styles */
.contact-hero {
   background: var(--gradient-secondary);
   padding: 120px 0 80px;
   text-align: center;
   position: relative;
   margin-top: 80px;
}

.contact-hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background:
     radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
     radial-gradient(circle at 70% 70%, rgba(255, 179, 71, 0.08) 0%, transparent 50%);
   z-index: 1;
}

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

.contact-hero-title {
   font-size: clamp(2rem, 4vw, 3rem);
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: 24px;
}

.contact-hero-subtitle {
   font-size: 1.125rem;
   color: var(--text-secondary);
   line-height: 1.7;
}

.contact-form-section {
   padding: 120px 0;
   background: var(--surface-light);
}

.contact-form-container {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 80px;
   max-width: 1200px;
   margin: 0 auto;
}

.contact-info-title {
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: 16px;
}

.contact-info-text {
   color: var(--text-secondary);
   line-height: 1.7;
   margin-bottom: 40px;
}

.contact-features {
   display: grid;
   gap: 32px;
}

.contact-feature {
   display: flex;
   align-items: flex-start;
   gap: 16px;
}

.contact-feature-icon {
   width: 48px;
   height: 48px;
   background: var(--gradient-accent);
   border-radius: var(--border-radius-md);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.contact-feature-icon svg {
   width: 24px;
   height: 24px;
   color: var(--primary-orange);
}

.contact-feature h4 {
   font-size: 1.125rem;
   font-weight: 600;
   color: var(--text-primary);
   margin-bottom: 8px;
}

.contact-feature p {
   font-size: 0.9rem;
   color: var(--text-secondary);
   line-height: 1.6;
}

.contact-form-wrapper {
   background: var(--surface-white);
   border-radius: var(--border-radius-lg);
   padding: 40px;
   box-shadow: var(--shadow-md);
   border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-form {
   display: grid;
   gap: 24px;
}

.form-group {
   display: grid;
   gap: 8px;
}

.form-group label {
   font-weight: 500;
   color: var(--text-primary);
   font-size: 0.9rem;
}

.required {
   color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 12px 16px;
   border: 2px solid #E5E7EB;
   border-radius: var(--border-radius-sm);
   font-size: 1rem;
   transition: all 0.3s ease;
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: var(--primary-orange);
   box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
   resize: vertical;
   min-height: 100px;
}

.form-privacy {
   margin: 16px 0;
}

.privacy-checkbox {
   display: flex;
   align-items: center;
   gap: 12px;
   cursor: pointer;
   font-size: 0.9rem;
   color: var(--text-secondary);
}

.privacy-checkbox input[type="checkbox"] {
   width: 18px;
   height: 18px;
   margin: 0;
}

.privacy-checkbox a {
   color: var(--primary-orange);
   text-decoration: none;
}

.privacy-checkbox a:hover {
   text-decoration: underline;
}

.form-submit-btn {
   background: var(--gradient-primary);
   color: white;
   padding: 16px 32px;
   border: none;
   border-radius: var(--border-radius-md);
   font-size: 1.125rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
   box-shadow: var(--shadow-md);
}

.form-submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-lg);
}

.form-submit-btn svg {
   width: 20px;
   height: 20px;
}

.form-success {
   text-align: center;
   padding: 40px;
   background: var(--gradient-accent);
   border-radius: var(--border-radius-lg);
   border: 2px solid var(--primary-orange);
}

.success-icon {
   width: 64px;
   height: 64px;
   background: var(--primary-orange);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 24px;
}

.success-icon svg {
   width: 32px;
   height: 32px;
   color: white;
}

.form-success h3 {
   color: var(--text-primary);
   margin-bottom: 12px;
}

.form-success p {
   color: var(--text-secondary);
   line-height: 1.6;
}

/* Animations */
.fade-in {
   opacity: 0;
   transform: translateY(30px);
   transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .flow-timeline {
    display: none;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .service-card {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }
	
	
  .section-title::before {
	font-size: clamp(2.5rem, 8vw, 6rem);
  }

  .hero {
    min-height: 92vh
  }

  .hero-content {
    padding: 40px 0px;
    margin: 20px;
    top: -60px;
  }

  .header-btn {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .service-card {
    min-height: 280px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .service-number {
    left: 9rem;
  }

  .service-icon-wrapper {
    margin: 30px auto 20px;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Header Mobile */
  .nav-menu {
    display: none;
  }

  .vision-card {
    border-left: 0px;
    border-top: 4px solid var(--secondary-orange);
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .header-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .dot {
    transform: scale(0.6);
  }

  @keyframes float-freely {
    0% {
      transform: translate(0, 0) rotate(0deg) scale(0.6);
      opacity: 0.5;
    }
    25% {
      transform: translate(60px, -50px) rotate(90deg) scale(0.8);
      opacity: 0.8;
    }
    50% {
      transform: translate(-40px, -75px) rotate(180deg) scale(0.4);
      opacity: 0.3;
    }
    75% {
      transform: translate(-60px, 40px) rotate(270deg) scale(0.7);
      opacity: 0.7;
    }
    100% {
      transform: translate(0, 0) rotate(360deg) scale(0.6);
      opacity: 0.5;
    }
  }

  @keyframes float-big {
    0% {
      transform: translate(0, 0) rotate(0deg) scale(0.6);
      opacity: 0.4;
    }
    25% {
      transform: translate(90px, -60px) rotate(120deg) scale(0.9);
      opacity: 0.8;
    }
    50% {
      transform: translate(-50px, -100px) rotate(240deg) scale(0.4);
      opacity: 0.2;
    }
    75% {
      transform: translate(-90px, 50px) rotate(300deg) scale(0.8);
      opacity: 0.7;
    }
    100% {
      transform: translate(0, 0) rotate(360deg) scale(0.6);
      opacity: 0.4;
    }
  }

  @keyframes float-wide {
    0% {
      transform: translate(0, 0) rotate(0deg) scale(0.6);
      opacity: 0.5;
    }
    20% {
      transform: translate(75px, -30px) rotate(72deg) scale(0.7);
      opacity: 0.8;
    }
    40% {
      transform: translate(25px, -90px) rotate(144deg) scale(0.5);
      opacity: 0.3;
    }
    60% {
      transform: translate(-60px, -50px) rotate(216deg) scale(0.7);
      opacity: 0.5;
    }
    80% {
      transform: translate(-80px, 30px) rotate(288deg) scale(0.8);
      opacity: 0.7;
    }
    100% {
      transform: translate(0, 0) rotate(360deg) scale(0.6);
      opacity: 0.5;
    }
  }
}

@media (max-width: 480px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
	
  .hero-subtitle{
	font-size: 0.9rem;
  }

  .curriculum-section {
    padding: 24px;
  }

  .faq-question {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-answer {
    padding: 0 20px 0;
  }

  .faq-answer.active {
    padding: 8px 20px 24px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px 15px;
    min-height: 260px;
  }

  .service-description {
    font-size: 0.7rem;
  }

     .services-grid {
     grid-template-columns: 1fr;
   }

   /* Contact Form Mobile */
   .contact-form-container {
     grid-template-columns: 1fr;
     gap: 40px;
   }

   .contact-form-wrapper {
     padding: 24px;
   }

   .contact-hero {
     padding: 100px 0 60px;
   }
 }