html {
    margin-top: 0 !important;
}

/* .hero-bg {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 25%, rgba(236, 72, 153, 0.1) 50%, rgba(16, 185, 129, 0.1) 75%, rgba(6, 182, 212, 0.1) 100%);
    background-size: contain;
    background-position: bottom;
} */

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.headerNav ul {
    display: flex;
}

.headerNav ul li {
    margin-right: 10px;
}

.headerNav ul li a {
    font-size: 16px;
    color: #374151;
}

.headerNav ul li a:hover {
    color: #4f46e5;
}

#mobile-menu a {
    text-align: center;

}


.formClass input {
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-color: #d1d5db;
    border-width: 1px;
    border-radius: 0.5rem;
}

.formClass input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: #6366f1;
}

.formClass p br {
    display: none;
}

.formClass p label {
    margin-bottom: 0.2rem;
}

.formClass textarea {
    height: 100px;
}


.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 2rem auto;
    max-width: 800px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.call {}

.call_hide {
    display: none;
}

/* Mobile Menu Animations */
#mobile-menu {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.mobile-menu-open {
    opacity: 1;
    transform: translateX(0);
}

/* Menu item hover effects */
#mobile-menu nav a {
    position: relative;
    padding: 12px 16px;
    margin: 4px 0;
    border-radius: 12px;
    transition: all 0.2s ease;
    color: #374151;
    font-weight: 500;
    display: block;
}

#mobile-menu nav a:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stagger animation for menu items */
#mobile-menu.mobile-menu-open nav a {
    animation: slideInRight 0.4s ease forwards;
}

#mobile-menu nav a:nth-child(1) {
    animation-delay: 0.1s;
}

#mobile-menu nav a:nth-child(2) {
    animation-delay: 0.15s;
}

#mobile-menu nav a:nth-child(3) {
    animation-delay: 0.2s;
}

#mobile-menu nav a:nth-child(4) {
    animation-delay: 0.25s;
}

#mobile-menu nav a:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile menu backdrop blur enhancement */
#mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    z-index: -1;
}




.screen-reader-response {
	display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #885df6;
  padding: 16px 24px;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  z-index: 10000; /* чтобы точно был поверх всего */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); /* мягкая, но заметная тень */
  min-width: 200px;
  text-align: center;
  border: 3px solid aquamarine;
}

.screen-reader-response::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7A.996.996 0 1 0 5.7 7.11L10.59 12 5.7 16.89a.996.996 0 1 0 1.41 1.41L12 13.41l4.89 4.89a.996.996 0 1 0 1.41-1.41L13.41 12l4.89-4.89c.38-.38.38-1.01 0-1.4z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

#cf7-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#cf7-success-overlay.active {
  display: flex;
}

.cf7-success-content {
  background: #fff;
  color: #000;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  font-size: 18px;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}