:root {
  /* Primary Colors */
  --primary-color: #ff6b00;
  --primary-dark: #e05a00;
  --primary-light: #ff884d;
  
  /* Complementary Colors */
  --complementary-color: #0077ff;
  --complementary-dark: #0055cc;
  --complementary-light: #4d9dff;
  
  /* Neutral Colors */
  --text-dark: #222222;
  --text-light: #ffffff;
  --text-muted: #666666;
  --background-light: #f5f5f5;
  --background-dark: #1a1a1a;
  
  /* Accent Colors */
  --accent-1: #9500ff;
  --accent-2: #00e676;
  --accent-3: #ff006e;
  
  /* Shadows and Effects */
  --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  --brutalist-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
  --neo-brutalist-shadow: 6px 6px 0 var(--primary-dark);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --border-radius-small: 4px;
  --border-radius-normal: 8px;
  --border-radius-large: 16px;
}

/* Base Styles */
html, body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

.title.is-1, .title.is-2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.title.is-1::after, .title.is-2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.section {
  padding: 5rem 1.5rem;
}

/* Brutalist/Neo-Brutalist Design Elements */
.brutalist-card {
  border: 3px solid var(--text-dark);
  box-shadow: var(--brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.brutalist-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.8);
}

.neo-brutalist-element {
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.neo-brutalist-element:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

/* Buttons & Interactive Elements */
.button {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
}

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

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

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

.button.is-outlined.is-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.button.is-rounded {
  border-radius: 30px;
}

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

.hero .title, 
.hero .subtitle, 
.hero p {
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .button {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.hero-foot {
  padding-bottom: 2rem;
}

.hero-foot .icon {
  animation: bounce 2s infinite;
}

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

/* Services Section */
.services-section {
  background-color: var(--background-light);
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.service-card .card-image {
  width: 100%;
  overflow: hidden;
}

.service-card .image-container {
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.service-card .title {
  margin-bottom: 1rem;
  position: relative;
}

.service-card .title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.service-card .content {
  flex-grow: 1;
}

/* Awards Section */
.awards-section {
  background-color: var(--background-light);
}

.award-item {
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-normal);
}

.award-item:hover {
  transform: translateY(-10px);
}

.award-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-normal);
}

.award-item:hover img {
  transform: scale(1.1);
}

.award-item .title {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-section {
  background-color: #ffffff;
}

.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.pricing-card.is-featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-card.is-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card .title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-card .price-tag {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.pricing-card .subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-card .button {
  margin-top: auto;
}

.best-value {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  transform: rotate(45deg) translate(20%, -120%);
  width: 200px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-packages {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-normal);
  box-shadow: var(--box-shadow);
}

/* Resources Section */
.resources-section {
  background-color: var(--background-light);
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: 2rem;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

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

.resource-card .title {
  margin-bottom: 1rem;
}

.resources-accordion {
  margin-top: 2rem;
}

.accordion {
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}

.accordion-header {
  background-color: #f9f9f9;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: #f0f0f0;
}

.accordion-header.is-active {
  background-color: var(--primary-light);
  color: white;
}

.accordion-content {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion-content p {
  padding: 1rem 0;
}

/* Webinars Section */
.webinars-section {
  background-color: #ffffff;
}

.webinar-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
  margin-bottom: 2rem;
}

.webinar-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.webinar-card .card-image {
  position: relative;
  overflow: hidden;
}

.webinar-card .image-container {
  height: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webinar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.webinar-card .webinar-date {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
}

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

.webinar-card .title {
  margin-bottom: 1rem;
}

.webinar-card .button {
  margin-top: auto;
}

/* Media Section */
.media-section {
  background-color: var(--background-light);
}

.media-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: 2rem;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

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

.media-source {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.media-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.media-card .title {
  margin-bottom: 1rem;
}

.statistics-widgets {
  margin-top: 3rem;
}

.stat-widget {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-normal);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-normal);
}

.stat-widget:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Events Calendar Section */
.events-section {
  background-color: #ffffff;
}

.events-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.events-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 50%;
}

.timeline-item:nth-child(even) {
  padding-left: 0;
  padding-right: 50%;
}

.timeline-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.timeline-content {
  position: relative;
  padding: 0 2rem;
}

.event-card {
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.event-card .card-content {
  padding: 1.5rem;
  display: flex;
}

.event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-right: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-small);
  padding: 0.5rem;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-details {
  flex-grow: 1;
}

.event-location, .event-time {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.event-location i, .event-time i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--background-light);
}

.contact-info-card, .contact-form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--text-dark);
  box-shadow: var(--neo-brutalist-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-info-card:hover, .contact-form-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.contact-info-card .card-content, .contact-form-card .card-content {
  padding: 2rem;
  flex-grow: 1;
}

.contact-info {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.info-item i {
  width: 24px;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 4px;
}

.branches {
  margin-top: 2rem;
}

.branch-item {
  margin-bottom: 1.5rem;
}

.branch-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-form-card form {
  margin-top: 1rem;
}

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

.contact-form-card .label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-card .input, .contact-form-card .textarea, .contact-form-card .select select {
  border: 2px solid #ddd;
  border-radius: var(--border-radius-small);
  transition: border-color var(--transition-fast);
}

.contact-form-card .input:focus, .contact-form-card .textarea:focus, .contact-form-card .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

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

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

.footer p {
  color: #aaa;
  margin-bottom: 1rem;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  color: white;
  margin-right: 1rem;
  transition: color var(--transition-fast);
}

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

.footer-links, .footer-contact {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #aaa;
  transition: color var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  width: 20px;
  margin-right: 0.75rem;
  color: var(--primary-color);
  margin-top: 4px;
}

.newsletter input {
  border: 1px solid #444;
  background-color: #333;
  color: white;
}

.newsletter input::placeholder {
  color: #aaa;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #444;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #aaa;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .events-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
  }
  
  .timeline-marker {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .pricing-card.is-featured {
    transform: scale(1);
  }
  
  .pricing-card.is-featured:hover {
    transform: translateY(-10px);
  }
  
  .event-card .card-content {
    flex-direction: column;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .hero .button {
    width: 100%;
    margin-right: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

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

.success-message {
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  margin-bottom: 2rem;
}

.content-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-page p {
  margin-bottom: 1.5rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-consent button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 15px;
  font-weight: bold;
  transition: background-color var(--transition-fast);
}

.cookie-consent button:hover {
  background: var(--primary-dark);
}

/* Navbar */
.navbar {
  transition: all var(--transition-normal);
}

.navbar.is-fixed-top {
  border-bottom: 2px solid var(--primary-color);
}

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

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

.navbar-burger {
  width: 3.25rem;
  height: 3.25rem;
}

.navbar-burger span {
  height: 2px;
  width: 20px;
  left: calc(50% - 10px);
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 8px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 6px);
}

/* Additional Utility Classes */
.has-text-primary {
  color: var(--primary-color) !important;
}

.has-background-primary {
  background-color: var(--primary-color) !important;
}

.has-shadow {
  box-shadow: var(--box-shadow) !important;
}

.has-brutalist-shadow {
  box-shadow: var(--brutalist-shadow) !important;
}

.has-neo-brutalist-shadow {
  box-shadow: var(--neo-brutalist-shadow) !important;
}

.is-clickable {
  cursor: pointer;
}

.no-overflow {
  overflow: hidden;
}
