/* Base Variables */
:root {
  /* Triadic Color Scheme */
  --primary-color: #ff6b6b;
  --primary-dark: #e05050;
  --primary-light: #ff8585;
  
  --secondary-color: #6b9fff;
  --secondary-dark: #5085e0;
  --secondary-light: #85b3ff;
  
  --tertiary-color: #6bff9c;
  --tertiary-dark: #50e079;
  --tertiary-light: #85ffb0;
  
  /* Neutral Colors */
  --light-color: #f8f9fa;
  --dark-color: #2a2a2a;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  
  /* Typography */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-slow: 0.5s;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.title, .subtitle {
  font-family: var(--heading-font);
}

p {
  line-height: 1.7;
}

/* Typography Responsive Adjustments */
@media screen and (max-width: 768px) {
  h1, .title.is-1 {
    font-size: 2.5rem !important;
  }
  
  h2, .title.is-2 {
    font-size: 2rem !important;
  }
  
  h3, .title.is-3 {
    font-size: 1.5rem !important;
  }
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color var(--transition-normal);
}

.navbar.is-fixed-top {
  padding: 0.5rem 0;
}

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

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

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

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

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

@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
  }
}

/* Buttons */
.button {
  font-family: var(--heading-font);
  font-weight: 600;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

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

.button.is-secondary {
  background-color: var(--secondary-color);
  color: white;
  border-color: transparent;
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
}

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

.button.is-tertiary:hover {
  background-color: var(--tertiary-dark);
}

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

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

.button.is-outlined.is-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

.button.is-outlined.is-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: white;
}

.animated-button {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.animated-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.7s;
  z-index: -1;
}

.animated-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.animated-button:hover:before {
  left: 100%;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero.is-fullheight {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

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

.hero .has-text-white {
  color: white !important;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  animation: scrollIndicator 2s infinite;
  opacity: 0.8;
}

@keyframes scrollIndicator {
  0% {
    transform: rotate(45deg) translate(-5px, -5px);
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: rotate(45deg) translate(5px, 5px);
    opacity: 0.8;
  }
}

.parallax-element {
  transition: transform var(--transition-slow);
}

/* Catalog Section */
.catalog-section {
  padding: var(--spacing-lg) 0;
}

.tabs.is-toggle li.is-active a {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

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

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

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

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

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

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: var(--spacing-md);
}

.content ul {
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.content ul li {
  margin-bottom: calc(var(--spacing-xs) / 2);
}

/* Research Section */
.research-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.research-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary-light) 0%, transparent 70%);
  opacity: 0.1;
}

.research-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.research-map img {
  width: 100%;
  height: auto;
  display: block;
}

.accordion-container {
  margin-top: var(--spacing-md);
}

.accordion {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--spacing-sm);
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: var(--spacing-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  transition: background-color var(--transition-fast);
}

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

.accordion-header p {
  margin: 0;
  font-weight: 600;
}

.accordion-content {
  padding: 0 var(--spacing-sm) var(--spacing-sm);
  display: none;
}

.accordion.active .accordion-content {
  display: block;
}

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

.accordion-header .icon {
  transition: transform var(--transition-fast);
}

/* About Us Section */
.about-section {
  padding: var(--spacing-lg) 0;
  position: relative;
  background-color: white;
}

.about-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(225deg, var(--tertiary-light) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.values-box {
  background-color: var(--light-color);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.values-icons {
  display: flex;
  justify-content: space-around;
  margin-top: var(--spacing-md);
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-container {
  margin-bottom: var(--spacing-sm);
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
}

/* Portfolio Section */
.portfolio-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

/* Stories Section */
.stories-section {
  padding: var(--spacing-lg) 0;
  background-color: white;
  position: relative;
}

.testimonial-card {
  height: 100%;
}

.testimonial-card .card-content {
  padding: var(--spacing-md);
}

.rating {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: var(--spacing-sm);
}

.media-left img {
  border-radius: 50%;
  object-fit: cover;
}

/* Contact Section */
.contact-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--light-gray);
  position: relative;
}

.contact-section form {
  padding: var(--spacing-md);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-info-box {
  background-color: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: var(--spacing-md);
}

.contact-item .icon {
  margin-right: var(--spacing-sm);
  width: 24px;
  color: var(--primary-color);
}

.contact-item .text {
  flex-grow: 1;
}

.social-media .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-lg) var(--spacing-md);
}

.footer .title {
  color: white;
}

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

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.social-links a {
  color: white;
  margin-right: var(--spacing-xs);
  transition: color var(--transition-fast);
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 5px;
}

.social-links a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.2);
}

hr {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  text-align: center;
}

.success-icon {
  font-size: 5rem;
  color: var(--tertiary-color);
  margin-bottom: var(--spacing-md);
}

/* Terms & Privacy Pages */
.terms-page, .privacy-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-lg);
}

.terms-page .content, .privacy-page .content {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

/* Utility Classes */
.has-shadow {
  box-shadow: var(--shadow-md);
}

.has-radius {
  border-radius: var(--radius-md);
}

.has-bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.has-bg-dots {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f8f9fa' fill-opacity='0.4' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.animate-fade {
  animation: fadeIn 1s both;
}

.animate-up {
  animation: slideUp 0.8s both;
}

.animate-down {
  animation: slideDown 0.8s both;
}

.animate-left {
  animation: slideLeft 0.8s both;
}

.animate-right {
  animation: slideRight 0.8s both;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .values-icons {
    flex-direction: column;
    align-items: center;
  }
  
  .value-item {
    margin-bottom: var(--spacing-md);
  }
  
  .contact-info-box {
    margin-top: var(--spacing-md);
  }
}

@media screen and (max-width: 1023px) {
  .column.is-two-thirds {
    width: 100%;
  }
}
h1{
  font-size: 20px!important;
}