
@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');

:root {
  --primary-blue: #1e3a8a;
  --secondary-blue: #3b82f6;
  --accent-orange: #f97316;
  --warm-gray: #6b7280;
  --light-gray: #f3f4f6;
  --dark-charcoal: #1f2937;
  --white: #ffffff;
}

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.button {
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  padding: 12px 24px;
  min-height: 44px;
}

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

.button.is-primary:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.button.is-secondary {
  background-color: var(--accent-orange);
  color: var(--white);
}

.button.is-secondary:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.button.is-outline {
  background-color: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
}

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

.hero .button.is-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.button.is-outline:hover {
  background-color: var(--white);
  color: var(--primary-blue) !important;
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section.is-medium {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section.is-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.card {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 1.5rem;
}

.service-card {
  text-align: center;
  height: 100%;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 1rem 0;
}

.testimonial-card {
  border-left: 4px solid var(--secondary-blue);
  background-color: var(--light-gray);
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  object-fit: cover;
}

.input, .textarea {
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input:focus, .textarea:focus, .input.is-focused, .textarea.is-focused {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-burger {
  height: 44px;
  width: 44px;
}

.navbar-item {
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer {
  background-color: var(--dark-charcoal);
  color: var(--white);
  padding: 3rem 1.5rem 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

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

.footer h3, .footer h4 {
  color: inherit;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(31, 41, 55, 0.95);
  color: var(--white);
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.cookie-consent-banner .buttons {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero.is-fullheight .hero-body {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .button {
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

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

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

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

.process-step {
  position: relative;
  padding-left: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-blue);
}

.process-step::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--light-gray);
}

.process-step:last-child::after {
  display: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.gallery-overlay h3 {
  color: inherit;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.faq-question {
  cursor: pointer;
  padding: 1rem;
  background-color: var(--light-gray);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e7ff;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
  padding: 1rem;
  max-height: 500px;
}

.price-tag {
  display: inline-block;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  font-size: 1.25rem;
  color: var(--secondary-blue);
  margin-right: 1rem;
}

.map-container {
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.quote-icon {
  font-size: 3rem;
  color: var(--secondary-blue);
  opacity: 0.3;
  margin-bottom: -2rem;
}

.service-highlight {
  background: linear-gradient(120deg, var(--light-gray) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.is-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.badge.is-secondary {
  background-color: var(--accent-orange);
  color: var(--white);
}

.badge.is-success {
    background-color: #10b981;
    color: var(--white);
}

.content-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}