/* VARIABLES */
:root {
  /* Primary Colors */
  --primary-color: #005bc5;
  --primary-dark: #004298;
  --primary-light: #4289e6;
  
  /* Secondary Colors */
  --secondary-color: #ffcc00;
  --secondary-dark: #e6b800;
  --secondary-light: #ffdb4d;
  
  /* Accent Colors */
  --accent-color: #ff3366;
  --accent-dark: #e60045;
  --accent-light: #ff6690;
  
  /* Neutral Colors */
  --dark-color: #222222;
  --dark-gray: #444444;
  --medium-gray: #777777;
  --light-gray: #eeeeee;
  --white-color: #ffffff;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --dark-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  --light-overlay: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  
  /* Shadows */
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 4px 12px rgba(0, 91, 197, 0.3);
  --hover-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  
  /* Animation */
  --transition-fast: 0.3s ease-out;
  --transition-medium: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-slow: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Typography */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Spacing */
  --section-spacing: 100px;
  --component-spacing: 50px;
  --inner-spacing: 20px;
}

/* GENERAL STYLES */
html {
  scroll-behavior: smooth;
}

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

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

.title {
  margin-bottom: 1.5rem;
  position: relative;
}

.title.is-2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  margin: 1rem auto;
  border-radius: 2px;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform var(--transition-medium);
}

section {
  padding: 5rem 1.5rem;
  position: relative;
}

.container {
  padding: 0 15px;
}

/* BUTTONS */
.button {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  box-shadow: var(--button-shadow);
  border-radius: 8px;
  z-index: 1;
}

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

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

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

.button.is-light:hover, .button.is-light:focus {
  background: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--hover-shadow);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s;
  z-index: -1;
}

.button:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.button.is-large {
  font-size: 1.25rem;
  height: 3.5rem;
  padding: 0 2rem;
}

/* HEADER & NAVIGATION */
.navbar {
  padding: 0.5rem 0;
  transition: all var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-item {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
}

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

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

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

.navbar-burger span {
  height: 2px;
  width: 24px;
  left: calc(50% - 12px);
  background-color: var(--primary-color);
}

/* HERO SECTION */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white-color);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-overlay);
  z-index: 1;
}

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

.hero .title, .hero .subtitle, .hero .has-text-white {
  color: var(--white-color) !important;
  text-shadow: var(--text-shadow);
}

.animated-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-medium) forwards;
}

.animated-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-medium) 0.3s forwards;
}

.animated-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-medium) 0.6s forwards;
}

.animated-button {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-medium) 0.9s forwards;
}

.scroll-down-icon {
  opacity: 0;
  animation: pulse 2s infinite var(--transition-medium) 1.2s forwards;
  display: inline-block;
  cursor: pointer;
}

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

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
}

/* SERVICES SECTION */
.services-section {
  background-color: var(--white-color);
}

.service-card {
  margin-bottom: 2rem;
  transition: all var(--transition-medium);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

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

.card-content .content {
  color: var(--dark-gray);
}

/* BEHIND THE SCENES SECTION */
.behind-scenes-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.behind-scenes-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.behind-scenes-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-medium);
}

.behind-scenes-image:hover {
  transform: scale(1.02);
  box-shadow: var(--hover-shadow);
}

.behind-scenes-section .content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.behind-scenes-section .content p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

/* EXTERNAL LINKS SECTION */
.external-links-section {
  background-color: var(--white-color);
  padding: 5rem 0;
}

.external-link-card {
  transition: all var(--transition-medium);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.external-link-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.external-link-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: var(--primary-color);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary-light);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.testimonials-section .title {
  color: var(--white-color);
}

.testimonial-card {
  background-color: var(--white-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
}

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

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.testimonial-card .title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonial-card .subtitle {
  color: var(--medium-gray);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.rating {
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-align: center;
}

.star {
  font-size: 1.25rem;
}

.testimonial-card .content {
  color: var(--dark-gray);
  text-align: center;
  font-style: italic;
  padding: 0 1rem;
}

.slider-controls {
  text-align: center;
  margin-top: 2rem;
}

.slider-controls button {
  background-color: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: all var(--transition-fast);
}

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

/* CAREERS SECTION */
.careers-section {
  background-color: var(--light-gray);
}

.careers-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.careers-text p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.career-positions {
  margin: 2rem 0;
  list-style: none;
}

.career-positions li {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.career-positions li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.career-positions h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.career-positions p {
  color: var(--dark-gray);
}

/* GALLERY SECTION */
.gallery-section {
  background-color: var(--white-color);
}

.gallery-container {
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 250px;
  transition: all var(--transition-medium);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
  text-shadow: var(--text-shadow);
}

/* CONTACT SECTION */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.contact-form {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-medium);
}

.contact-form:hover {
  box-shadow: var(--hover-shadow);
}

.contact-form .label {
  color: var(--primary-color);
  font-weight: 600;
}

.contact-form .input, .contact-form .textarea, .contact-form .select select {
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem;
  transition: all var(--transition-fast);
}

.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(0, 91, 197, 0.2);
}

.contact-form .checkbox input {
  margin-right: 0.5rem;
}

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

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 91, 197, 0.1);
  border-radius: 50%;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--dark-gray);
  margin-bottom: 0.25rem;
}

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

.footer-brand img {
  max-width: 150px;
}

.footer-brand p {
  color: var(--light-gray);
  margin-top: 1rem;
}

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

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

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icons a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  text-decoration: underline;
}

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

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

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

.footer-links a {
  color: var(--light-gray);
  transition: color var(--transition-fast);
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  transition: transform var(--transition-fast);
}

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

.footer-links a:hover::before {
  transform: translateX(5px);
}

.newsletter .input {
  background-color: rgba(255,255,255,0.1);
  border: none;
  color: var(--white-color);
  border-radius: 8px 0 0 8px;
  padding: 0.75rem;
}

.newsletter .input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter .button {
  border-radius: 0 8px 8px 0;
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.footer-divider {
  background-color: rgba(255,255,255,0.1);
  margin: 3rem 0 2rem;
}

.copyright {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

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

.success-container {
  max-width: 600px;
  padding: 3rem;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 3rem;
}

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

.success-message p {
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

/* TERMS AND PRIVACY PAGES */
.terms-page, .privacy-page {
  padding-top: 100px;
}

.terms-container, .privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.terms-header, .privacy-header {
  margin-bottom: 3rem;
  text-align: center;
}

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

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

.terms-content p, .privacy-content p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

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

.terms-content li, .privacy-content li {
  margin-bottom: 0.75rem;
  color: var(--dark-gray);
}

/* COOKIE CONSENT */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.9);
  color: var(--white-color);
  z-index: 9999;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  flex-grow: 1;
  padding-right: 2rem;
}

.cookie-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .service-card, .testimonial-card, .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .contact-item {
    margin-bottom: 2rem;
  }
  
  .social-icons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer {
    padding: 3rem 1rem 1.5rem;
  }
}

/* READ MORE LINKS */
.read-more {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
  transition: all var(--transition-fast);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
  padding-right: 1.75rem;
}

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* ANIMATIONS */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animated-link {
  position: relative;
  overflow: hidden;
}

.animated-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.animated-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar-burger{
  display: none;
}