:root {
  /* Primary Colors - Complementary Scheme */
  --primary: #3d6b8c;
  --primary-dark: #2a4d68;
  --primary-light: #5a8cb3;
  --secondary: #c87941;
  --secondary-dark: #a35825;
  --secondary-light: #e19d6a;

  /* Neutral Colors */
  --dark: #222222;
  --medium-dark: #555555;
  --medium: #888888;
  --medium-light: #cccccc;
  --light: #f5f5f5;
  --white: #ffffff;

  /* Functional Colors */
  --success: #4caf50;
  --info: #2196f3;
  --warning: #ff9800;
  --danger: #f44336;

  /* Typography */
  --heading-font: "Manrope", sans-serif;
  --body-font: "Rubik", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

section {
  padding: 4rem 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-auto {
  margin-top: auto;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.bg-light {
  background-color: var(--light);
}

.bg-primary {
  background-color: var(--primary);
  color: var(--white);
}

.bg-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

/* Header and Navigation */
.navbar {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color var(--transition-normal);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  transition: color var(--transition-bounce);
}

.navbar-item:hover {
  color: var(--secondary) !important;
  background-color: transparent !important;
}

.navbar-burger {
  color: var(--primary);
}

.navbar-burger:hover {
  color: var(--secondary);
}

.navbar-menu.is-active {
  animation: fadeIn var(--transition-normal);
}

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

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-body {
  padding: 8rem 1.5rem;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .button {
  margin: 0.5rem;
  transition: transform var(--transition-bounce),
    box-shadow var(--transition-normal);
}

.hero .button:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.icon-scroll {
  width: 30px;
  height: 50px;
  margin: 0 auto;
  border: 2px solid var(--white);
  border-radius: 25px;
  position: relative;
}

.icon-scroll:before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}

/* Buttons */
.button {
  font-family: var(--heading-font);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-bounce);
  letter-spacing: 0.5px;
}

.button.is-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 107, 140, 0.3);
}

.button.is-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.button.is-light:hover {
  background-color: var(--light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button.is-outlined {
  border-width: 2px;
}

.button.is-primary.is-outlined {
  color: var(--primary);
  border-color: var(--primary);
}

.button.is-primary.is-outlined:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 107, 140, 0.3);
}

/* Cards */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.card-content .title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.card-content .subtitle {
  color: var(--medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--medium-dark);
  margin-bottom: 1.5rem;
}

.card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* About Section */
#about {
  position: relative;
  overflow: hidden;
}

#about .image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

#about .image-container img {
  transition: transform var(--transition-slow);
}

#about .image-container:hover img {
  transform: scale(1.05);
}

/* Statistics Section */
.stat-widget {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  height: 100%;
}

.stat-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-title {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.stat-widget p {
  color: var(--medium-dark);
}

/* Gallery Section */
.gallery .card {
  margin-bottom: 2rem;
}

/* Success Stories Section */
.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card .media {
  margin-bottom: 1.5rem;
}

.testimonial-card .media-content .title {
  margin-bottom: 0.25rem;
}

.testimonial-card .content p {
  font-style: italic;
  color: var(--medium-dark);
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-card .content p::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: 0;
  top: -1rem;
  color: var(--medium-light);
  font-family: serif;
  opacity: 0.5;
}

.testimonial-card .is-rounded {
  border-radius: 50%;
  object-fit: cover;
}

/* Accolades Section */
.accolade-card {
  text-align: center;
}

.accolade-card .card-image {
  padding: 1.5rem 1.5rem 0;
}

.accolade-card .card-image img {
  height: 200px;
  object-fit: contain;
}

/* Careers Section */
.career-opportunity {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.career-opportunity:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.career-opportunity h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.career-opportunity p {
  margin-bottom: 1.5rem;
}

/* Press Section */
.press-card {
  height: 100%;
}

.press-card .title {
  font-size: 1.25rem;
}

.press-card .subtitle {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-card,
.info-card {
  height: 100%;
}

.info-card .card-image img {
  height: 300px;
}

.info-card .content h3 {
  margin-bottom: 1.5rem;
}

.info-card .content p {
  margin-bottom: 0.75rem;
}

.info-card .content h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card .field {
  margin-bottom: 1.5rem;
}

.contact-card .label {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--dark);
}

.contact-card .input,
.contact-card .textarea,
.contact-card .select select {
  border-radius: var(--radius-md);
  border: 2px solid var(--medium-light);
  box-shadow: none;
  transition: border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.contact-card .input:focus,
.contact-card .textarea:focus,
.contact-card .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-light);
}

.contact-card .button {
  height: 3rem;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--medium-light);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: var(--medium-light);
  transition: color var(--transition-normal);
}

.footer ul li a:hover {
  color: var(--white);
}

.footer .social-links a {
  color: var(--medium-light);
  transition: color var(--transition-normal);
  display: inline-block;
  margin-right: 1rem;
  font-weight: 500;
}

.footer .social-links a:hover {
  color: var(--secondary);
}

/* Cookie Consent */
#cookieConsent {
  transition: transform var(--transition-normal);
}

#cookieConsent.hidden {
  transform: translateY(100%);
}

#acceptCookies {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transition: background-color var(--transition-normal);
}

#acceptCookies:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light);
}

.success-content {
  text-align: center;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  width: 90%;
}

.success-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-content p {
  margin-bottom: 2rem;
}

.success-content .icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page,
.terms-page {
  padding-top: 100px;
}

.privacy-page .content,
.terms-page .content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.privacy-page h1,
.terms-page h1 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.privacy-page h2,
.terms-page h2 {
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.privacy-page p,
.terms-page p {
  margin-bottom: 1.5rem;
}

/* External Resources Section */
.external-resources .card {
  height: 100%;
}

.external-resources .card-image img {
  height: 200px;
  object-fit: cover;
}

.external-resources .button {
  margin-top: 1rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .hero-body {
    padding: 6rem 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .card-image img {
    height: 200px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-title {
    font-size: 1.1rem;
  }

  .footer {
    padding: 3rem 1rem 2rem;
  }

  .column {
    padding: 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-body {
    padding: 5rem 1rem;
  }

  .section {
    padding: 2.5rem 0.75rem;
  }

  .card-image img {
    height: 180px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-widget {
    padding: 1.5rem;
  }

  .contact-card .button {
    height: 2.5rem;
  }
}

/* Responsive Typography */
@media screen and (min-width: 1024px) {
  h1,
  .title.is-1 {
    font-size: 3.5rem;
  }

  h2,
  .title.is-2 {
    font-size: 2.75rem;
  }

  h3,
  .title.is-3 {
    font-size: 2rem;
  }

  .is-size-5 {
    font-size: 1.25rem !important;
  }
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
  h1,
  .title.is-1 {
    font-size: 3rem;
  }

  h2,
  .title.is-2 {
    font-size: 2.5rem;
  }

  h3,
  .title.is-3 {
    font-size: 1.75rem;
  }

  .is-size-5 {
    font-size: 1.15rem !important;
  }
}

@media screen and (max-width: 768px) {
  h1,
  .title.is-1 {
    font-size: 2.5rem;
  }

  h2,
  .title.is-2 {
    font-size: 2rem;
  }

  h3,
  .title.is-3 {
    font-size: 1.5rem;
  }

  .is-size-5 {
    font-size: 1.1rem !important;
  }
}

/* Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Read More Links */
.read-more {
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-right: 20px;
  transition: color var(--transition-normal);
}

.read-more:after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform var(--transition-normal);
}

.read-more:hover {
  color: var(--secondary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Parallax Effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

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

.faq-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-question::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
  opacity: 1;
}

.faq-question h3 {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin-right: 20px;
  position: relative;
  z-index: 2;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #764ba2, #667eea);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-answer-content {
  padding: 0 30px 30px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 1;
}

.yoga-icons {
  text-align: center;
  margin-top: 50px;
  opacity: 0.3;
}

.yoga-icons span {
  font-size: 2rem;
  margin: 0 15px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.yoga-icons span:nth-child(2) {
  animation-delay: 1s;
}

.yoga-icons span:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .faq-section {
    margin: 20px;
    padding: 40px 15px;
    border-radius: 15px;
  }

  .faq-question {
    padding: 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
    margin-right: 0;
  }

  .faq-answer-content {
    padding: 0 20px 25px;
    font-size: 1rem;
  }

  .faq-icon {
    align-self: flex-end;
    margin-top: -35px;
  }
}

@media (max-width: 480px) {

  .faq-section {
    margin: 10px;
    padding: 30px 10px;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }
}
