/* 
 * Style Sheet for Gitak Website Clone
 * Faithful copy of www.gitak.com.pt
 */

:root {
  --primary-color: #124ceb;
  --primary-hover: #1043cf;
  --bg-gray: #f5f5f5;
  --text-gray: #999999;
  --text-dark: #212529;
  --border-color: #e3e3e3;
  --font-sans: 'Open Sans', sans-serif;
}

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

/* Screen reader and SEO helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* General Layout Wrapper */
.body-wrapper {
  position: relative;
  background-color: #ffffff;
}

.body-innerwrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* 1. Top Bar (#sp-top-bar) */
#sp-top-bar {
  background-color: var(--bg-gray);
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
  font-size: 14px;
}

#sp-top-bar .topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#sp-top-bar ul.social-share {
  list-style: none;
  display: flex;
  gap: 15px;
}

#sp-top-bar ul.social-share li a {
  color: var(--text-gray);
}

#sp-top-bar ul.social-share li a:hover {
  color: var(--primary-color);
}

#sp-top-bar .contact-info {
  display: flex;
  gap: 20px;
  list-style: none;
}

#sp-top-bar .contact-info li {
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

#sp-top-bar .contact-info li a {
  color: var(--text-gray);
}

#sp-top-bar .contact-info li a:hover {
  color: var(--primary-color);
}

/* 2. Header (#sp-header) */
#sp-header {
  background-color: #ffffff;
  height: 90px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  position: relative;
  z-index: 99;
}

#sp-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo a {
  display: block;
}

.logo img {
  display: block;
  max-height: 60px;
  width: auto;
}

/* Main Navigation Menu */
.sp-megamenu-parent {
  list-style: none;
  display: flex;
  gap: 25px;
  height: 100%;
  align-items: center;
}

.sp-megamenu-parent > li {
  position: relative;
}

.sp-megamenu-parent > li > a {
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  display: block;
  position: relative;
}

.sp-megamenu-parent > li.active > a,
.sp-megamenu-parent > li > a:hover {
  color: var(--primary-color);
  font-weight: 600;
}

/* Mobile burger button */
.burger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #000000;
  cursor: pointer;
  padding: 5px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.open {
  left: 0;
}

.mobile-nav-overlay .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 30px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.mobile-nav-links li.active a,
.mobile-nav-links a:hover {
  color: var(--primary-color);
}

.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}

.overlay-backdrop.open {
  display: block;
}

/* 3. Slideshow Section (#sp-page-title / #sp-slideshow) */
.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  height: 480px;
  background-color: #000000;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: relative;
  height: 100%;
  z-index: 2;
}

/* Slide layers positionings */
.layer {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  pointer-events: auto;
}

.slide.active .layer {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger transition delays */
.layer-img-1 { transition-delay: 0.2s; }
.layer-img-2 { transition-delay: 0.4s; }
.layer-img-3 { transition-delay: 0.6s; }
.layer-pdf { transition-delay: 0.8s; }

.layer-text-1 { transition-delay: 0.2s; }
.layer-text-2 { transition-delay: 0.4s; }
.layer-text-3 { transition-delay: 0.6s; }
.layer-text-4 { transition-delay: 0.8s; }

/* Slide 1 positions */
.layer-img-1 {
  right: 10%;
  top: 60px;
  width: 343px;
  height: auto;
}

.layer-img-2 {
  left: 15%;
  top: 40px;
  width: 281px;
  height: auto;
}

.layer-img-3 {
  left: 12%;
  bottom: 50px;
  width: 346px;
  height: auto;
}

.layer-pdf {
  right: 10%;
  bottom: 50px;
  width: 50px;
  height: 50px;
  display: block;
}

.layer-pdf img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.layer-pdf:hover img {
  transform: scale(1.1);
}

/* Slide 3 positions */
.layer-img-4 {
  right: 10%;
  top: 70px;
  width: 450px;
  height: auto;
}

.layer-img-5 {
  left: 10%;
  top: 100px;
  width: 400px;
  height: auto;
}

/* Slide 4 positions */
.layer-img-6 {
  right: 10%;
  top: 60px;
  width: 500px;
  height: auto;
}

.layer-text {
  left: 10%;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 48px;
  line-height: 1.1;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.layer-text-1 { top: 100px; }
.layer-text-2 { top: 160px; }
.layer-text-3 { top: 220px; }
.layer-text-4 { top: 280px; }

/* Slideshow navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  color: white;
  background-color: rgba(61, 61, 61, 0.7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  user-select: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.prev {
  left: 20px;
  transform: translateY(-50%) translateX(-15px);
}

.next {
  right: 20px;
  transform: translateY(-50%) translateX(15px);
}

.slideshow-container:hover .prev {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.slideshow-container:hover .next {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.prev:hover, .next:hover {
  background-color: rgba(61, 61, 61, 0.95);
}

.slideshow-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #ffffff;
}

/* 4. Subpage Title & Breadcrumbs (#sp-page-title) */
#sp-page-title {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 30px 0;
}

#sp-page-title .title-breadcrumbs-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#sp-page-title h2 {
  font-size: 24px;
  font-weight: 600;
}

.breadcrumbs {
  font-size: 13px;
}

.breadcrumbs span {
  color: #ffffff;
}

.breadcrumbs ul {
  display: inline-flex;
  list-style: none;
  gap: 5px;
}

.breadcrumbs ul li::after {
  content: "/";
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs ul li:last-child::after {
  content: "";
}

.breadcrumbs a {
  color: #ffffff;
  font-weight: 600;
}

.breadcrumbs li.active {
  color: rgba(255, 255, 255, 0.8);
}

/* 5. Main Body (#sp-main-body) */
#sp-main-body {
  padding: 60px 0;
  flex-grow: 1;
}

/* Homepage 4-Column Grid */
.home-services-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.sppb-col-sm-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.service-box {
  padding: 20px;
  height: 100%;
}

.sppb-icon-container {
  width: 70px;
  height: 70px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 24px;
  transition: all 0.3s ease;
}

.service-box:hover .sppb-icon-container {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.sppb-feature-box-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333333;
}

.sppb-addon-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
}

/* Subpage layout elements */
#sp-component {
  width: 100%;
}

/* Empresa Page main body */
.item-page {
  width: 100%;
}

.entry-header {
  margin-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.entry-header h1,
.entry-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 10px;
}

.entry-header h1 i,
.entry-header h2 i {
  color: var(--primary-color);
  font-size: 18px;
}

.article-content {
  overflow: hidden;
  margin-bottom: 30px;
}

.article-text {
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
}

.article-img {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 570px;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Social Share Footer on Article */
.social-share-article {
  margin-top: 40px;
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
}

.social-share-article span {
  font-weight: 600;
  margin-right: 15px;
  font-size: 14px;
}

.social-share-buttons {
  display: inline-flex;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}

.share-btn:hover {
  opacity: 0.9;
  color: #ffffff;
}

.share-facebook { background-color: #3b5998; }
.share-twitter { background-color: #1da1f2; }
.share-linkedin { background-color: #0077b5; }

/* Contacto Page main body */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.contact-info-col {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
  padding-right: 15px;
  padding-left: 15px;
}

.contact-form-col {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.contact h1,
.contact h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.contact h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #212529;
}

.contact-address {
  margin-bottom: 40px;
}

.contact-address dl {
  display: flex;
  flex-wrap: wrap;
}

.contact-address dt {
  flex: 0 0 50px;
  max-width: 50px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.contact-address dt img {
  width: 16px;
  height: 16px;
  margin-top: 5px;
}

.contact-address dd {
  flex: 0 0 calc(100% - 50px);
  max-width: calc(100% - 50px);
  margin-bottom: 15px;
  font-size: 15px;
  color: #333333;
}

/* Contact Form (#contact-form) */
.form-horizontal.well {
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 25px;
}

.form-horizontal.well p {
  font-size: 13px;
  color: #666666;
  margin-bottom: 20px;
}

.form-horizontal.well p strong.red {
  color: #d9534f;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
}

.form-group label span.star {
  color: #d9534f;
  margin-left: 3px;
}

.form-control {
  width: 100%;
  height: 38px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(18, 76, 235, 0.6);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Captcha styling */
.captcha-container {
  margin-bottom: 25px;
}

.captcha-box {
  width: 304px;
  height: 78px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-checkbox {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
}

.captcha-checkbox.checked::after {
  content: "✓";
  color: #009b00;
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  top: -4px;
  left: 4px;
}

.captcha-label {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #212529;
}

.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.captcha-right img {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
}

.captcha-right span {
  font-size: 8px;
  color: #555555;
  font-family: Roboto, sans-serif;
}

.captcha-right a {
  font-size: 8px;
  color: #555555;
}

/* Form Action Buttons */
.form-actions {
  display: flex;
  justify-content: flex-start;
}

.btn-primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-hover);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: #0d38ae;
}

/* Alert notifications for forms */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: none;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* 6. Footer (#sp-footer) */
#sp-footer {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
}

#sp-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#sp-footer p {
  margin: 0;
}

#sp-footer a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

#sp-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive media queries */
@media (max-width: 991.98px) {
  #sp-header {
    height: 70px;
  }
  
  .burger-menu {
    display: block;
  }
  
  .sp-megamenu-parent {
    display: none;
  }
  
  /* Slideshow scaling down for tablets */
  .slideshow-container {
    height: 380px;
  }
  
  .layer-img-1 { right: 5%; top: 40px; width: 260px; }
  .layer-img-2 { left: 10%; top: 30px; width: 220px; }
  .layer-img-3 { left: 8%; bottom: 30px; width: 260px; }
  .layer-img-4 { right: 5%; top: 50px; width: 340px; }
  .layer-img-5 { left: 5%; top: 70px; width: 300px; }
  .layer-img-6 { right: 5%; top: 40px; width: 380px; }
  .layer-text { font-size: 34px; left: 8%; }
  .layer-text-1 { top: 80px; }
  .layer-text-2 { top: 130px; }
  .layer-text-3 { top: 180px; }
  .layer-text-4 { top: 230px; }

  /* 4-column home services grid to 2-column */
  .sppb-col-sm-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Contact page columns layout */
  .contact-info-col,
  .contact-form-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .contact-form-col {
    margin-top: 40px;
  }

  .article-img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 767.98px) {
  #sp-top-bar .topbar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  #sp-top-bar .contact-info {
    justify-content: center;
  }
  
  #sp-footer .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Slideshow scaling down for mobile */
  .slideshow-container {
    height: 280px;
  }
  
  .slide:nth-child(1),
  .slide:nth-child(2) {
    background-size: contain;
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .prev, .next, .slideshow-dots {
    display: none; /* Hide navigation helpers on small screens */
  }

  /* Layer repositionings/simplification for mobile */
  .layer-img-1 { right: 8%; top: 40px; width: 110px; }
  .layer-img-2 { left: 8%; top: 30px; width: 100px; }
  .layer-img-3 { left: 8%; bottom: 30px; width: 110px; }
  .layer-img-4 { right: 5%; top: 40px; width: 200px; }
  .layer-img-5 { left: 5%; top: 50px; width: 180px; }
  .layer-img-6 { right: 5%; top: 30px; width: 220px; }
  .layer-pdf { right: 5%; bottom: 20px; width: 35px; height: 35px; }

  .layer-text { font-size: 24px; left: 5%; }
  .layer-text-1 { top: 50px; }
  .layer-text-2 { top: 90px; }
  .layer-text-3 { top: 130px; }
  .layer-text-4 { top: 170px; }

  /* 4-column home services grid to 1-column */
  .sppb-col-sm-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  #sp-page-title .title-breadcrumbs-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* 7. Modern Contacts Page Layout */
.modern-contact-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.modern-contact-card {
  flex: 1 1 300px;
  max-width: 360px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modern-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(18, 76, 235, 0.12);
  border-color: var(--primary-color);
}

.card-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), #0b2da8);
  color: #ffffff;
  border-radius: 50%;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(18, 76, 235, 0.3);
}

.modern-contact-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-contact-card p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 6px;
  line-height: 1.6;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 6px rgba(18, 76, 235, 0.2);
}

.card-action-btn:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
  box-shadow: 0 5px 12px rgba(18, 76, 235, 0.35);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 10px;
}

.method-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px dashed #eaeaea;
  padding-bottom: 8px;
  width: 100%;
}

.method-item:last-child {
  border-bottom: none;
}

.method-item span:first-child {
  font-weight: 600;
  color: #555555;
}

.method-item span:last-child,
.method-item a {
  font-weight: 600;
  color: #333333;
}

.method-item a {
  color: var(--primary-color);
  transition: color 0.2s ease;
}

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

.email-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.email-text a {
  color: var(--primary-color);
}

.email-text a:hover {
  color: var(--primary-hover);
}

.opening-hours {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  width: 100%;
}

.opening-hours h5 {
  font-size: 12px;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.hours-badge {
  display: inline-block;
  background-color: #f0f4fe;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 15px;
  margin-top: 5px;
}
