/* ===== ROOT VARIABLES ===== */
:root {
  /* Primary Colors - Complementary Scheme */
  --primary: #3273dc;
  --primary-dark: #2366d1;
  --primary-light: #4a89e8;
  --primary-transparent: rgba(50, 115, 220, 0.15);

  /* Complementary Colors */
  --complementary: #dc6632;
  --complementary-dark: #c55a2c;
  --complementary-light: #e87c4a;
  --complementary-transparent: rgba(220, 102, 50, 0.15);

  /* Neutral Colors */
  --dark: #333333;
  --dark-light: #4a4a4a;
  --grey: #757575;
  --light-grey: #f5f5f5;
  --white: #ffffff;

  /* Accent Colors */
  --success: #48c774;
  --warning: #ffdd57;
  --danger: #f14668;
  --info: #3298dc;
  
  /* Typography */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Shadows & Effects */
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.7s ease;
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-rounded: 9999px;
  
  /* Z-indexes */
  --z-navbar: 1000;
  --z-dropdown: 1100;
  --z-modal: 1300;
}

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

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

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

p {
  margin-bottom: 1.5rem;
}

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

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

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--complementary);
  margin-top: 1rem;
  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(--complementary-dark);
  padding-right: 1.8rem;
}

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

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

/* ===== BUTTONS ===== */
.button {
  font-family: var(--heading-font);
  font-weight: 600;
  border-radius: var(--radius-medium);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.button.is-outlined {
  background-color: transparent;
  border-color: currentColor;
}

.button.is-rounded {
  border-radius: var(--radius-rounded);
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  transition: background-color var(--transition-fast);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

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

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

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s both;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.3s both;
}

.hero .button {
  animation: fadeInUp 1s 0.6s both;
}

/* ===== ABOUT US SECTION ===== */
#about-us {
  position: relative;
  overflow: hidden;
}

#about-us .title {
  color: var(--dark);
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}

#about-us .title:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

#about-us .image {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-medium);
}

#about-us .image:hover {
  transform: perspective(1000px) rotateY(0);
}

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

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

/* ===== FEATURED BARS GALLERY ===== */
.card {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  overflow: hidden;
}

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

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

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

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

.card .subtitle {
  color: var(--complementary);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ===== HISTORY SECTION ===== */
#history {
  position: relative;
}

#history .image {
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transform: perspective(1000px) rotateY(5deg);
  transition: transform var(--transition-medium);
}

#history .image:hover {
  transform: perspective(1000px) rotateY(0);
}

#history .content p:first-of-type {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ===== RESOURCES SECTION ===== */
.has-background-info-light {
  background-color: var(--primary-transparent) !important;
}

.buttons.is-centered {
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== ACCOLADES SECTION ===== */
#accolades .card {
  background-color: var(--white);
}

#accolades .card-content {
  padding: 1.5rem;
}

#accolades .subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--complementary);
  margin-top: -0.5rem;
}

/* ===== CUSTOMER STORIES SECTION ===== */
.has-background-primary-light {
  background-color: var(--primary-transparent) !important;
}

#customer-stories .card {
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

#customer-stories .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

#customer-stories .media-left {
  margin-right: 1.2rem;
}

#customer-stories .image.is-64x64 {
  overflow: hidden;
  border: 3px solid var(--primary);
}

#customer-stories .image.is-64x64 img {
  transition: transform var(--transition-medium);
}

#customer-stories .card:hover .image.is-64x64 img {
  transform: scale(1.1);
}

#customer-stories .title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

#customer-stories .subtitle {
  font-size: 0.9rem;
  color: var(--grey);
}

#customer-stories .content {
  font-style: italic;
  color: var(--dark-light);
}

#customer-stories .content p::before {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

#customer-stories .content p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

/* ===== CAREERS SECTION ===== */
#careers .content ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

#careers .content ul li:before {
  content: '•';
  color: var(--primary);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

#careers .card {
  height: 100%;
}

/* ===== CONTACT SECTION ===== */
.has-background-warning-light {
  background-color: var(--complementary-transparent) !important;
}

#contact .card {
  overflow: visible;
}

#contact .input,
#contact .textarea,
#contact .select select {
  border: 1px solid #dbdbdb;
  border-radius: var(--radius-medium);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

#contact .input:focus,
#contact .textarea:focus,
#contact .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.125em var(--primary-transparent);
}

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

#contact .card-image {
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  overflow: hidden;
}

/* ===== FOOTER SECTION ===== */
.footer {
  padding: 3rem 1.5rem;
}

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

.footer .title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--complementary);
}

.footer ul {
  margin-bottom: 1.5rem;
}

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

.footer a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer a:hover {
  opacity: 1;
  color: var(--complementary-light);
}

/* Social media links */
.footer .social-links a {
  display: inline-block;
  margin-right: 1rem;
  font-weight: 600;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.footer .social-links a:hover {
  transform: translateY(-3px);
  color: var(--complementary-light);
}

/* ===== MODAL ===== */
.modal-content {
  max-width: 800px;
  width: 90%;
}

.modal-content img {
  width: 100%;
  border-radius: var(--radius-medium);
}

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

.success-content {
  max-width: 600px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  animation: fadeInUp 1s both;
}

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

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-page,
.terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-page .content,
.terms-page .content {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

/* ===== UTILITY CLASSES ===== */
.has-text-white {
  color: var(--white) !important;
}

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

.has-text-complementary {
  color: var(--complementary) !important;
}

.has-text-centered {
  text-align: center !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

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

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

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

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media screen and (max-width: 1023px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  h2.title.is-2 {
    font-size: 1.75rem;
  }
  
  .card {
    margin-bottom: 1.5rem;
  }
  
  #history .image,
  #about-us .image {
    margin-bottom: 2rem;
  }
  
  .footer .column {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 1.75rem;
  }
  
  .hero .subtitle {
    font-size: 1rem;
  }
  
  .button.is-large {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
.navbar-burger{
  display: none !important;
}