:root {
  --primary-color: #AE0D1C;
  --secondary-color: #ad3c4a;
  --accent-color: #A1977A;
  --text-color: #555;
  --light-text: #6D6D6D;
  --bg-light: #FFFFFF;
  --bg-off-white: #F7F7F7;
  --bg-accent: #F8F5EE;
  --border-light: #E5E5E5;
  --font-main: 'Montserrat', sans-serif;
  --font-secondary: 'Crimson Text', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.2rem; }
.btn {margin-bottom:5px}
.content-formatted {
  font-size: 16px;
  line-height: 1.7;
}

.header {
  background-color: var(--bg-light);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-title {
  display: flex;
  align-items: center;
}

.header-title img {
  max-height: 70px;
  width: auto;
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-menu li a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.main-menu li a:not(.btn):before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.main-menu li a:not(.btn):hover { color: var(--secondary-color); }
.main-menu li a:not(.btn):hover:before,
.main-menu li.active a:not(.btn):before { width: 100%; }
.main-menu li a.btn { margin-left: 10px; }

.toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.toggle-stripe {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.close-menu { display: none; }

.header-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 60px;
  background-image: url("https://media.voog.com/0000/0044/8249/photos/professional-female-physiotherapist-giving-shoulder-massage-blonde-woman_large.jpg");
}

.header-banner:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.header-banner .header-body {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.header-banner h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header-banner p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.header-banner--compact { min-height: 200px; }
.header-banner--compact .header-body { padding: 40px 20px 20px !important; }

.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.header-body {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px;
}

.header-body h1 {
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
}

.header-body h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
}

.header-body p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-card .btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.service-card .btn:hover { background-color: var(--secondary-color); }

.content-section { padding: 60px 0; }
.content-section:nth-child(even) { background-color: var(--bg-off-white); }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header { text-align: center; }

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

.footer {
  background-color: #333;
  color: white;
  padding: 60px 0 30px;
}

.footer .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-widget { margin-bottom: 20px; }

.footer-widget h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-widget p,
.footer-widget a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.patient-rights {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.patient-rights-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.patient-rights-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.patient-rights-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.patient-rights-content a:hover { color: #FFFFFF; }

.footer-bottom {
  margin-top: 30px;
  padding-top: 0;
  border-top: none;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background-color 0.3s ease;
}

.social-icons a:hover { background-color: var(--accent-color); }

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #FFFFFF !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #FFFFFF !important;
}

.footer .btn {
  background-color: var(--accent-color);
  color: white !important;
  border-color: var(--accent-color);
  margin-top: 10px;
}

.footer .btn:hover {
  background-color: white;
  color: var(--accent-color) !important;
  border-color: white;
}

.contact-card {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text-color);
}

.contact-card p {
  color: var(--light-text);
  padding: 0;
  margin: 0;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.content-section .contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial:hover { transform: translateY(-5px); }

.testimonial-content {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before,
.testimonial-content:after {
  content: '"';
  font-size: 50px;
  line-height: 0;
  position: absolute;
  color: var(--accent-color);
  opacity: 0.2;
}

.testimonial-content:before { top: 15px; left: -15px; }
.testimonial-content:after { bottom: -10px; right: -15px; }

.testimonial-author {
  text-align: right;
  font-weight: 600;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text h3 { margin-bottom: 20px; }

.content-section.bg-accent {
  background-color: var(--bg-accent);
  padding: 40px 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.form-submit {
  text-align: right;
  margin-top: 10px;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.condition-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.condition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(161, 151, 122, 0.3);
}

.condition-icon {
  color: var(--primary-color);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(104, 20, 30, 0.08);
  border-radius: 50%;
  line-height: 1;
}

.condition-icon i {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  margin: 0;
}

.condition-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  font-weight: 600;
  line-height: 1.3;
  min-height: 48px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  word-break: break-word;
  hyphens: auto;
}

.condition-card p {
  color: var(--light-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  word-break: break-word;
  hyphens: auto;
}

.more-conditions {
  background-color: white;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  margin: 40px 0;
  border-left: 4px solid var(--accent-color);
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

.section-cta .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(104, 20, 30, 0.2);
}

.section-cta .btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(174, 13, 28, 0.3);
}

.service-details {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 60px 0;
}

.service-image { flex: 1; transition: transform 0.5s ease; }
.service-image:hover { transform: scale(1.02); }

.service-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img.adjusted-height {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-text { flex: 1; }
.service-text p { margin-bottom: 20px; line-height: 1.7; color: var(--text-color); }
.service-text ul { list-style-type: disc; margin-left: 20px; margin-bottom: 25px; }
.service-text li { margin-bottom: 10px; line-height: 1.7; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 200px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-card h2 {
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
}

.price-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 0;
}

.price-item:last-child { border-bottom: none; }

.price-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.price-details .service-name {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
}

.price-details .price {
  color: #b8282e;
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-notes {
  background: #fff8f8;
  border-left: 4px solid #b8282e;
  padding: 20px 24px;
  border-radius: 6px;
  margin: 20px 0;
}

.pricing-notes p { margin: 0 0 10px; color: #444; }
.pricing-notes p:last-child { margin-bottom: 0; }

.payment-methods {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.payment-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.payment-item p { margin: 0; padding: 0; }
.stebby-logo { height: 40px; width: auto; }

.booking-cta {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-cta p { color: #6c757d; margin-bottom: 30px; }

.about-section { padding: 60px 0; }

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 { color: #2c3e50; margin-bottom: 20px; font-size: 2rem; }
.about-text h3 { color: #2c3e50; margin: 30px 0 15px; font-size: 1.5rem; }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 20px; }
.about-text ul { color: #555; line-height: 1.8; padding-left: 20px; margin-bottom: 20px; }
.about-text ul li { margin-bottom: 10px; }

.about-section .cta-section {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  text-align: center;
}

.about-section .cta-section h3 { margin-top: 0; }

.contact-section { padding: 60px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-details h2, .contact-form-section h2 {
  color: var(--text-color);
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-card i { font-size: 2.5rem; color: var(--text-color); margin-bottom: 15px; }
.contact-info-card h3 { color: #2c3e50; margin-bottom: 10px; font-size: 1.2rem; }
.contact-info-card p { color: #555; line-height: 1.6; }
.contact-info-card a { color: #b8282e; text-decoration: none; font-weight: 500; }
.contact-info-card a:hover { text-decoration: underline; }

.map-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.map-section h2 { color: #2c3e50; margin-bottom: 20px; }
.map-section p { color: #555; margin-bottom: 30px; }

.map-container {
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe { width: 100%; height: 400px; border: none; }

@media screen and (max-width: 991px) {
  .header-inner { padding: 10px 20px; }
  .toggle-btn { display: block; }
  
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: none;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-menu.expanded {
    right: 0 !important;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: block;
  }
  
  .main-menu ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-menu li a { font-size: 18px; }
  .main-menu li a.btn { display: inline-block; margin-top: 20px; }
  body.menu-open { overflow: hidden; }
  .header-banner h1 { font-size: 2.5rem; }
  
  .about-content,
  .testimonials,
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .testimonial { margin-bottom: 30px; }
  .about-image { margin-bottom: 30px; }
}

@media screen and (max-width: 992px) {
  .header-body { padding: 100px 20px; }
  .header-body h1 { font-size: 36px; }
  
  .service-details { flex-direction: column; gap: 40px; margin: 40px 0; }
  .service-image, .service-text { width: 100%; }
  .service-image { margin-bottom: 30px; }
  #spordimassaaz .service-details { flex-direction: column-reverse; }
  
  .conditions-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .about-content { grid-template-columns: 1fr; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px) {
  .header-banner { min-height: 400px; }
  .header-banner h1 { font-size: 2rem; }
  .header-banner p { font-size: 1.1rem; }
  .header-body { padding: 80px 20px; }
  .header-body h1 { font-size: 32px; }
  .header-body p { font-size: 18px; }
  .service-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .content-section .contact-info { grid-template-columns: 1fr; }
  
  .conditions-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }
  .condition-card { padding: 25px; }
  .condition-icon { width: 50px; height: 50px; }
  .service-details { margin: 30px 0; }
  
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 30px 20px; }
  .map-container iframe { height: 300px; }
}

@media screen and (max-width: 480px) {
  .header-banner { min-height: 300px; }
  .header-banner h1 { font-size: 1.75rem; }
  .header-banner p { font-size: 1rem; }
  .header-body { padding: 60px 20px; }
  .header-body h1 { font-size: 28px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .content-formatted { font-size: 15px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .more-conditions { padding: 25px; }
}

.will-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.field-error {
  border-color: var(--primary-color) !important;
  background-color: rgba(174, 13, 28, 0.05) !important;
}

.form-error {
  color: var(--primary-color);
  font-size: 12px;
  margin-top: 4px;
}
.hidden { display: none !important; }
.editmode .hidden { display: block !important; opacity: 0.4; }
.editmode .testimonials-section.hidden { opacity: 0.5; }
.editmode .testimonials-section.hidden .testimonials-settings { opacity: 1; }

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details h2, .contact-form-section h2 { margin-bottom: 30px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.contact-info-card { background-color: var(--bg-off-white); padding: 25px; border-radius: 8px; text-align: center; }
.contact-info-card i { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; display: block; }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-color); }
.contact-info-card p { color: var(--light-text); margin: 0; }
.contact-info-card a { color: var(--primary-color); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }


/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details h2, .contact-form-section h2 { margin-bottom: 30px; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.contact-info-card { background-color: var(--bg-off-white); padding: 25px; border-radius: 8px; text-align: center; }
.contact-info-card i { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; display: block; }
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-color); }
.contact-info-card p { color: var(--light-text); margin: 0; }
.contact-info-card a { color: var(--primary-color); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }

/* Voog form styles */
.form-wrapper { background-color: var(--bg-off-white); padding: 30px; border-radius: 8px; }
.form_area { width: 100%; }
.form_fields { display: flex; flex-direction: column; gap: 20px; }
.form_field { display: flex; flex-direction: column; }
.form_field_label { font-weight: 500; margin-bottom: 8px; color: var(--text-color); font-size: 14px; }
.form_field_textfield, .form_field_textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--bg-light);
}
.form_field_textfield:focus, .form_field_textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(174, 13, 28, 0.1);
}
.form_field_textarea { min-height: 150px; resize: vertical; }
.form_submit { margin-top: 20px; }
.form_submit_input {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form_submit_input:hover { background-color: var(--secondary-color); border-color: var(--secondary-color); }

/* Form error states */
.form_error {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}
.form_field_with_errors .form_field_textfield,
.form_field_with_errors .form_field_textarea {
  border-color: #ef4444;
  background-color: #fef2f2;
}
.form_field_with_errors .form_field_textfield:focus,
.form_field_with_errors .form_field_textarea:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.form_field_error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
}
.form_field_required .form_field_label:after {
  content: ' *';
  color: #dc2626;
}

/* Map section */
.map-section { margin-top: 60px; }
.map-container { margin-top: 20px; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.map-container iframe { display: block; }

@media screen and (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media screen and (max-width: 576px) {
  .contact-cards { grid-template-columns: 1fr; }
}
