@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --primary-navy: #1a2332;
  --accent-orange: #e67e22;
  --light-bg: #f4f4f4;
  --text-dark: #2c3e50;
  --success-green: #27ae60;
  --border-light: #dfe6e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
}

.mcginley-navbar {
  background-color: var(--primary-navy);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mcginley-navbar .navbar-brand .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mcginley-navbar .navbar-brand .logo-icon {
  color: var(--accent-orange);
  font-size: 2rem;
}

.mcginley-navbar .navbar-menu {
  background-color: var(--primary-navy);
}

.mcginley-navbar .navbar-item {
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.mcginley-navbar .navbar-item:hover,
.mcginley-navbar .navbar-item.is-active {
  background-color: rgba(230, 126, 34, 0.2);
  color: var(--accent-orange);
}

.mcginley-navbar .navbar-burger {
  color: #ffffff;
}

.hero-workshop {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #2c3e50 100%);
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-workshop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0l30 30-30 30L0 30z" fill="rgba(230,126,34,0.05)"/></svg>');
  opacity: 0.3;
}

.hero-workshop .hero-content {
  position: relative;
  z-index: 1;
}

.hero-workshop h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-workshop p {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-primary-workshop {
  background-color: var(--accent-orange);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary-workshop:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
  color: #ffffff;
}

.btn-secondary-workshop {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn-secondary-workshop:hover {
  background-color: #ffffff;
  color: var(--primary-navy);
  transform: translateY(-2px);
}

.section-workshop {
  padding: 5rem 1.5rem;
}

.section-alternate {
  background-color: var(--light-bg);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: var(--accent-orange);
}

.service-card .service-icon {
  font-size: 3rem;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.service-card p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card .price-tag {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: block;
}

.feature-box {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-box .icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-orange), #d35400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: #ffffff;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: #7f8c8d;
  line-height: 1.6;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  height: 100%;
  border-left: 4px solid var(--accent-orange);
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--accent-orange);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card .testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .client-name {
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.testimonial-card .client-role {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.team-member-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.team-member-card .member-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-card .member-info {
  padding: 1.5rem;
}

.team-member-card .member-name {
  font-size: 1.4rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.team-member-card .member-position {
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.team-member-card .member-bio {
  color: #7f8c8d;
  line-height: 1.6;
}

.contact-info-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

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

.contact-info-box .info-item:last-child {
  margin-bottom: 0;
}

.contact-info-box .info-icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
  min-width: 30px;
}

.contact-info-box .info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-navy);
}

.contact-info-box .info-content p {
  color: #7f8c8d;
  margin: 0;
}

.contact-info-box .info-content a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-box .info-content a:hover {
  color: #d35400;
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.footer-workshop {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-workshop h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-workshop p,
.footer-workshop a {
  color: #b2bec3;
  line-height: 1.8;
}

.footer-workshop a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-workshop a:hover {
  color: var(--accent-orange);
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b2bec3;
  font-size: 0.9rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: auto;
  max-width: 420px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 9999;
  border: 2px solid var(--accent-orange);
}

.cookie-consent-banner p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.cookie-consent-banner a {
  color: var(--accent-orange);
  text-decoration: none;
}

.cookie-consent-banner a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  flex: 1;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-buttons .btn-accept {
  background-color: var(--accent-orange);
  color: #ffffff;
}

.cookie-buttons .btn-accept:hover {
  background-color: #d35400;
}

.cookie-buttons .btn-decline {
  background-color: #ecf0f1;
  color: var(--text-dark);
}

.cookie-buttons .btn-decline:hover {
  background-color: #dfe6e9;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-bg);
}

.faq-question .icon {
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}

.faq-question.active .icon {
  transform: rotate(180deg);
}

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

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: #7f8c8d;
  line-height: 1.7;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-number {
  min-width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-orange), #d35400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.process-content {
  flex: 1;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
}

.process-content p {
  color: #7f8c8d;
  line-height: 1.7;
}

.success-message {
  background: linear-gradient(135deg, var(--success-green), #229954);
  color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  display: none;
}

.success-message.active {
  display: block;
}

.success-message .icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.success-message h3 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .hero-workshop {
    padding: 4rem 1.5rem;
  }

  .hero-workshop h1 {
    font-size: 2.5rem;
  }

  .section-workshop {
    padding: 3rem 1.5rem;
  }

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

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .process-number {
    margin: 0 auto;
  }

  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .btn-primary-workshop,
  .btn-secondary-workshop {
    width: 100%;
    justify-content: center;
  }
}
