:root {
  /* Modern Design System with Tetrad Color Scheme */
  --primary-color: #4a6feb;
  --primary-dark: #3a59c7;
  --primary-light: #7a91f3;
  
  --secondary-color: #eb4a6f;
  --secondary-dark: #c73a59;
  --secondary-light: #f37a91;
  
  --tertiary-color: #6feb4a;
  --tertiary-dark: #59c73a;
  --tertiary-light: #91f37a;
  
  --quaternary-color: #eb6f4a;
  --quaternary-dark: #c75a3a;
  --quaternary-light: #f3917a;
  
  --text-color: #333333;
  --text-light: #666666;
  --text-dark: #111111;
  --text-white: #ffffff;
  
  --bg-color: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #e9ecef;
  --bg-gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --header-height: 80px;
  --footer-height: auto;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ===== Base Styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

p {
  margin-bottom: 1.5rem;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 5rem 0;
}

/* ===== Custom Animations ===== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin-left: 1.5rem;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.navbar-item:hover::after {
  width: 100%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-white);
  padding: 10rem 0 5rem;
  display: flex;
  align-items: center;
}

.hero-body {
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: transparent;
  color: white;
  transition: all var(--transition-normal);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button.is-light {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-color: transparent;
  transition: all var(--transition-normal);
}

.button.is-light:hover {
  background-color: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Features Section ===== */
.features-section {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.card {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.card-content .subtitle {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.card-content p {
  color: var(--text-color);
  flex-grow: 1;
}

/* ===== Methodology Section ===== */
.methodology-section {
  background-color: var(--bg-color);
  position: relative;
}

.methodology-section .content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
}

.methodology-section .image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.methodology-section .image:hover img {
  transform: scale(1.03);
}

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

.media-carousel {
  position: relative;
  margin: 2rem 0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.carousel-slide {
  display: none;
  background-color: var(--bg-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
}

.carousel-slide.active {
  display: block;
  animation: fadeScale 0.5s ease-in-out;
}

.carousel-slide .image {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.carousel-slide .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.carousel-controls button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.carousel-controls button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

/* ===== Clientele Section ===== */
.clientele-section {
  background-color: var(--bg-color);
  text-align: center;
}

.clientele-section .image {
  padding: 1.5rem;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.clientele-section .image:hover {
  transform: scale(1.1);
}

.clientele-section .image img {
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.clientele-section .image:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

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

.resources-section .card {
  height: 100%;
  transition: all var(--transition-normal);
}

.resources-section .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resources-section .card-content {
  padding: 1.5rem;
}

.resources-section .title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.resources-section .title a {
  color: var(--primary-color);
  transition: color var(--transition-normal);
}

.resources-section .title a:hover {
  color: var(--primary-dark);
}

/* ===== Pricing Section ===== */
.pricing-section {
  background-color: var(--bg-color);
  position: relative;
}

.pricing-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

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

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

.pricing-card .title {
  color: var(--primary-color);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .price .currency {
  font-size: 1.5rem;
  margin-right: 0.25rem;
  align-self: flex-start;
}

.pricing-card .price .amount {
  line-height: 1;
}

.pricing-card .price .period {
  font-size: 1rem;
  color: var(--text-light);
  margin-left: 0.25rem;
  align-self: flex-end;
}

.pricing-card .price .custom {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.pricing-card .content {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card .content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

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

.pricing-card .content ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* ===== Events Section ===== */
.events-section {
  background-color: var(--bg-light);
}

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-card .date {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.event-card .title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.event-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* ===== Customer Stories Section ===== */
.customer-stories-section {
  background-color: var(--bg-color);
}

.testimonial-card {
  height: 100%;
}

.testimonial-card .card-content {
  padding: 2rem;
}

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

.testimonial-card .media-left {
  margin-right: 1rem;
}

.testimonial-card .image.is-64x64 {
  width: 64px;
  height: 64px;
}

.testimonial-card .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.testimonial-card .subtitle {
  color: var(--text-light);
}

.testimonial-card .content p {
  font-style: italic;
  color: var(--text-color);
}

/* ===== FAQ Section ===== */
.faq-section {
  background-color: var(--bg-light);
}

.accordion {
  margin-top: 2rem;
}

.accordion-item {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-color);
  transition: background-color var(--transition-normal);
}

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

.accordion-header .title {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.accordion-header .icon {
  color: var(--primary-color);
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.accordion-item.active .accordion-content {
  padding-bottom: 1.5rem;
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--bg-color);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

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

.contact-info p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-info p i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: var(--text-color);
  transition: color var(--transition-normal);
  display: flex;
  align-items: center;
}

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

.social-link i {
  margin-right: 0.5rem;
}

.contact-form-container {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

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

.contact-form .label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-dark);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(74, 111, 235, 0.2);
  outline: none;
}

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

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

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

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

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

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-normal);
}

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

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

.footer .social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 1rem;
  transition: color var(--transition-normal);
}

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

/* ===== Cookie Consent ===== */
#cookie-consent {
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--text-white);
  padding: 1.5rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  text-align: center;
}

#cookie-consent p {
  margin-bottom: 1rem;
}

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

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

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--bg-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  animation: fadeScale 0.5s ease-in-out;
}

.success-content .icon {
  font-size: 4rem;
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
}

.success-content .title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

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

.privacy-content,
.terms-content {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.privacy-content ul,
.terms-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    z-index: 999;
  }

  .navbar-menu.is-active {
    display: block;
  }

  .navbar-end {
    flex-direction: column;
    align-items: center;
  }

  .navbar-item {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }

  .navbar-burger {
    display: block;
  }

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

  .hero .subtitle {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

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

  .hero .subtitle {
    font-size: 1.25rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .buttons {
    flex-direction: column;
  }

  .button.is-large {
    width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

@media screen and (max-width: 480px) {
  .hero {
    padding: 7rem 0 3rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

.navbar-burger{
  display: none;
}
figure{
  width: 100%;
}