
/* Contact page styles removed - using default theme styles only */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Performance optimizations */
.hero__bg,
.navbar,
.service-card,
.testimonial-card,
.blog-card,
.value-card,
.gallery__item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Staggered entrance animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Premium hover effects */
.premium-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced interactive states */
button,
.btn,
a[href],
.service-card,
.testimonial-card,
.blog-card,
.navbar__link {
    /* cursor: pointer; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for better accessibility */
button:focus-visible,
.btn:focus-visible,
a[href]:focus-visible,
.navbar__toggle:focus-visible {
    /* outline: 2px solid #4A90E2; */
    outline: none;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

/* ===================================
   COMPREHENSIVE TABLET RESPONSIVE STYLES
   ================================= */

/* Tablet breakpoint: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1199px) {

    /* ===== HERO SECTION ===== */
    .hero {
        /* height: 800px; */
        padding: 0;
    }

    .hero .container {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-left: 40px;
        padding-right: 40px;
        justify-content: center;
    }

    .hero__title {
        /* font-size: 60px; */
        /* line-height: 70px; */
        text-align: center;
    }

    .hero__copy {
        font-size: 20px;
        /* max-width: 500px; */
        text-align: center;
        /* margin: 0 auto 30px; */
    }

    .hero__actions {
        text-align: center;
        margin: 30px 0 0 0;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 700px;
        margin: 60px auto 0;
    }

    .quick-action-card {
        /* padding: 20px 15px; */
    }

    .quick-action-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .quick-action-card__title {
        font-size: 14px;
    }

    /* ===== NAVIGATION ===== */
    .navbar__container {
        padding: 0 30px;
    }

    #site-header .navbar-nav > li > a {
        padding: 12px 16px;
        font-size: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        /* padding: 0 30px; */
    }

    .service-card {
        /* height: 280px; */
    }

    .service-card__overlay {
        padding: 30px 20px;
    }

    .service-card__benefits li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-card__title {
        font-size: 16px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-row {
        /* padding: 70px 0; */
    }

    .split-content {
        gap: 50px;
        /* padding: 0 30px; */
    }

    .split-title {
        font-size: 32px;
    }

    .split-desc {
        font-size: 15px;
    }

    .split-image {
        /* height: 400px; */
    }

    /* ===== STEPS SECTION ===== */
    .steps {
        padding: 80px 0;
    }

    .steps__grid {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 30px;
        /* padding: 0 30px; */
        display: flex;
        flex-wrap: wrap;
    }

    .step-card {
        /* padding: 30px 20px; */
    }

    .step-card__title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .step-card__desc {
        font-size: 14px;
    }

    .steps__cta {
        /* margin-top: 50px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split {
        padding: 80px 0;
    }

    .values-split .container {
        /* padding: 0 30px; */
        gap: 40px;
    }

    .values-split__content{
        text-align: center;
    }

    .values-split__desc{
        margin: auto;
    }

    .values-split__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .values-split__desc {
        font-size: 15px;
    }

    .values-split__right {
        gap: 20px;
    }

    .values-phone {
        width: 200px;
        height: auto;
    }

    .value-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .value-card__title {
        font-size: 1rem;
    }

    .value-card__desc {
        font-size: 13px;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials__swiper {
        /* padding: 0 30px; */
    }

    .testimonial-card {
        padding: 30px;
        gap: 25px;
    }

    .testimonial-card__content {
        padding: 0;
    }

    .testimonial-card__quote h3 {
        /* font-size: 1.3rem; */
    }

    .testimonial-card__text {
        font-size: 15px;
    }

    .testimonial-card__name {
        /* font-size: 1.1rem; */
    }

    .testimonials__nav {
        gap: 15px;
    }

    /* ===== BLOG SECTION ===== */
    .blog {
        padding: 80px 0;
    }

    .blog__container {
        /* padding: 0 30px; */
    }

    .blog__title {
        font-size: 2rem;
        /* margin-bottom: 40px; */
    }

    .blog-card {
        /* height: 350px; */
    }

    .blog-card__content {
        /* padding: 25px; */
    }

    .blog-card__title {
        font-size: 1.1rem;
    }

    .blog-card__date {
        font-size: 13px;
    }

    /* ===== CTA SECTION ===== */
    .cta-band {
        padding: 60px 0;
    }

    .cta-band__content {
        padding: 0 30px;
        text-align: center;
    }

    .cta-band__title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .cta-band__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band__btn {
        padding: 14px 35px;
        font-size: 16px;
    }

    /* ===== GALLERY SECTION ===== */
    .gallery {
        padding: 80px 0;
    }

    .gallery__header {
        /* padding: 0 30px; */
        margin-bottom: 50px;
    }

    .gallery__title {
        font-size: 2rem;
    }

    .gallery__subtitle {
        font-size: 15px;
    }

    .gallery__item {
        width: 280px;
        height: 200px;
        /* margin-right: 20px; */
    }

    .gallery__row {
        /* margin-bottom: 25px; */
    }

    /* ===== FOOTER ===== */
    .footer__top {
        /* padding: 50px 0 30px 0; */
    }

    .footer__cols {
        /* grid-template-columns: 2fr 1fr 1fr 1fr; */
        /* gap: 50px; */
        /* padding: 0 30px; */
    }

    .footer__logo {
        /* height: 80px; */
    }

    .footer__title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer__tagline,
    .footer__contact-item,
    .footer__list a {
        font-size: 14px;
    }

    .footer__bottom {
        /* padding: 15px 0; */
    }

    .footer__bottom-content {
        /* padding: 0 30px; */
        flex-direction: column;
        /* gap: 15px; */
        text-align: center;
    }

    /* ===== CONTACT FORM 7 ===== */
    .wpcf7-form {
        gap: 18px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .wpcf7-form input[type="submit"] {
        padding: 15px 35px;
        font-size: 17px;
    }

    .wpcf7-form label {
        font-size: 15px;
    }

    .wpcf7-form .form-row {
        gap: 18px;
    }

    /* ===== CONTACT PAGE SPECIFIC ===== */
    .contact-section {
        padding: 70px 0;
    }

    .contact-section .container {
        /* padding: 0 30px; */
    }

    .page-header {
        margin-bottom: 50px;
    }

    .page-title {
        /* font-size: 2.2rem; */
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-content {
        gap: 50px;
        margin-top: 30px;
    }

    .contact-info-section {
        /* padding: 25px 20px; */
    }

    .contact-info-title {
        /* font-size: 1.5rem; */
    }

    /* ===== BUTTONS AND INTERACTIVE ELEMENTS ===== */
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .btn-primary,
    .hero__btn,
    .values__btn,
    .cta__btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    /* ===== SECTION HEADERS ===== */
    .section {
        padding: 62px 0 70px;
    }

    .section__header {
        margin-bottom: 3rem;
        padding: 0 30px;
    }

    .section__title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section__subtext {
        font-size: 15px;
        max-width: 500px;
    }

    /* ===== TOUCH OPTIMIZATIONS ===== */
    button,
    .btn,
    a[href],
    .service-card,
    .testimonial-card,
    .blog-card {
        min-height: 44px; /* Apple's recommended touch target size */
    }

    /* Larger touch targets for navigation */
    .navbar__link{
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* ===== HOVER STATES ADJUSTMENT ===== */
    /* Reduce hover intensity on tablets for better touch experience */
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: translateY(-3px);
    }

    .premium-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 991px) {
    .section.gallery {
        padding: 82px 0 90px;
    }
}

/* ===================================
   IPAD AIR SPECIFIC RESPONSIVE STYLES
   ================================= */

@media (max-width: 1199px){
    .split-image{
        height: 100%;
    }
    
    .step-card,
    .steps__cta{
        width: calc( ( 100% / 3 ) - ( 60px / 3 ) );
    }
    
    .steps__cta{
        display: flex;
        flex-direction: column;
        justify-content: center;

    }
    
    .steps__cta .btn-primary{
        max-width: 100%;
    }

    .testimonial-card__quote h3{
        font-size: 25px;
    }

    .hero__actions{
        margin-top: 50px;
    }
}

@media (max-width: 991px){
    .step-card,
    .steps__cta {
        width: calc( 50% - ( 30px / 2 ) );
    }

    .gallery__row{
        /* margin-bottom: 15px; */
    }

    .gallery__row:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 767px){
    .step-card, .steps__cta {
        width: calc( 100% );
    }

    .steps .section__header{
        margin-bottom: 30px;
    }

    .steps__cta{
        flex-direction: column-reverse;
    }

    .hero__actions {
        margin-top: 20px;
    }

    .gallery__row {
        margin-bottom: 4px;
    }

    .section.gallery {
        padding: 62px 0 70px;
    }
}

/* iPad Air Portrait: 820px - 834px */
@media (min-width: 820px) and (max-width: 834px) and (orientation: portrait) {

    /* ===== HERO SECTION ===== */
    .hero {
        height: 900px;
    }

    .hero .container {
        padding-top: 180px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero__title {
        /* font-size: 64px; */
        /* line-height: 72px; */
        margin-bottom: 25px;
    }

    .hero__copy {
        font-size: 21px;
        /* max-width: 550px; */
        margin-bottom: 35px;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        max-width: 750px;
        margin: 45px auto 0;
    }

    .quick-action-card__icon {
        width: 60px;
        height: 60px;
    }

    .quick-action-card__title {
        font-size: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        /* padding: 0 40px; */
    }

    .service-card {
        /* height: 320px; */
    }

    .service-card__benefits li {
        font-size: 17px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-content {
        gap: 60px;
        padding: 0 40px;
    }

    .split-title {
        font-size: 36px;
    }

    .split-desc {
        font-size: 16px;
    }

    .split-image {
        height: 450px;
    }

    /* ===== STEPS SECTION ===== */
    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
        /* gap: 35px; */
        /* padding: 0 40px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split .container {
        /* padding: 0 40px; */
        gap: 50px;
    }

    .values-phone {
        width: 220px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials__swiper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 35px;
        gap: 30px;
    }

    /* ===== FOOTER ===== */
    .footer__cols {
        /* padding: 0 40px; */
        gap: 60px;
    }

    /* ===== CONTACT FORM ===== */
    .wpcf7-form {
        padding: 0 40px;
    }
}

/* iPad Air Landscape: 1180px */
@media (width: 1180px) and (height:820px) {

    /* ===== HERO SECTION - OPTIMIZED FOR IPAD AIR LANDSCAPE ===== */
    .hero {
        /* height: 700px; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero .container {
        padding: 0 80px;
        width: 100%;
        max-width: 1200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero__content {
        margin-bottom: 40px;
    }

    .hero__title {
        /* font-size: 72px; */
        /* line-height: 80px; */
        font-weight: 700;
        max-width: 1000px;
        margin: 0 auto 25px;
        letter-spacing: -1px;
    }

    .hero__title-highlight {
        color: #5C86B0;
        font-weight: 800;
    }

    .hero__copy {
        /* font-size: 24px; */
        line-height: 1.4;
        max-width: 700px;
        /* margin: 0 auto 40px; */
        font-weight: 400;
        opacity: 0.9;
    }

    .hero__actions {
        /* margin-bottom: 50px; */
    }

    .hero__btn {
        padding: 18px 45px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .hero__btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(92, 134, 176, 0.4);
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
        width: 100%;
    }

    .quick-action-card {
        /* padding: 30px 25px; */
        transition: all 0.3s ease;
    }

    .quick-action-card:hover {
        transform: translateY(-5px);
    }

    .quick-action-card__icon {
        width: 70px;
        height: auto;
        margin-bottom: 15px;
    }

    .quick-action-card__icon img {
        /* width: 40px; */
    }

    .quick-action-card__title {
        font-size: 17px;
        font-weight: 600;
        line-height: 1.3;
    }

    /* ===== NAVIGATION - NO HAMBURGER, DESKTOP-STYLE LINKS ===== */
    .navbar__container {
        padding: 0 80px;
        justify-content: space-between;
        align-items: center;
    }

    /* Hide hamburger menu completely */
    .navbar__toggle,
    .navbar__menu {
        display: none !important;
    }

    /* Show desktop navigation */
    #site-header .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        height: auto !important;
        width: auto !important;
    }

    #site-header .navbar-nav > li {
        margin: 0 !important;
        display: inline-block !important;
    }

    #site-header .navbar-nav > li > a {
        padding: 15px 20px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        /* color: #333 !important; */
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        /* min-height: 50px !important; */
        border-bottom: none !important;
        background: transparent !important;
    }

    /* White underline hover effect for iPad Air */
    #site-header .navbar-nav > li > a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 8px !important;
        left: 50% !important;
        width: 0 !important;
        height: 2px !important;
        background: white !important;
        transition: all 0.3s ease !important;
        transform: translateX(-50%) !important;
    }

    #site-header .navbar-nav > li > a:hover::after {
        width: 75% !important;
    }

    #site-header .navbar-nav > li > a:hover {
        /* color: #333 !important; */
        background: transparent !important;
    }

    /* Current menu item styling */
    #site-header .navbar-nav > li.current-menu-item > a {
        color: #ffffff !important;
        background: transparent !important;
    }

    #site-header .navbar-nav > li.current-menu-item > a::after {
        width: 75% !important;
        background: white !important;
    }

    /* Nav button styling */
    .Nav__btn {
        background: #5C86B0 !important;
        color: white !important;
        /* padding: 12px 25px !important; */
        border-radius: 8px !important;
        font-weight: 600 !important;
        margin-left: 15px !important;
    }

    .Nav__btn:hover {
        background: #4A72A0 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(92, 134, 176, 0.4) !important;
    }

    .Nav__btn:hover::after {
        width: 0 !important;
    }

    /* Brand logo */
    .navbar__brand img,
    #site-header .navbar-brand img {
        height: 50px !important;
        width: auto !important;
    }

    /* Ensure header has proper height */
    #site-header {
        height: auto !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        padding: 100px 0;
    }

    .services__grid {
        /* grid-template-columns: repeat(4, 1fr); */
        gap: 30px;
        /* padding: 0 60px; */
    }

    .service-card {
        /* height: 300px; */
    }

    .service-card__overlay {
        padding: 35px 25px;
    }

    .service-card__benefits li {
        font-size: 18px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-row {
        padding: 120px 0;
    }

    .split-content {
        gap: 80px;
        /* padding: 0 60px; */
    }

    .split-title {
        font-size: 42px;
    }

    .split-desc {
        font-size: 17px;
    }

    .split-image {
        /* height: 500px; */
    }
    .split-photo {
        /* width: 100%; */
        /* height: 590px; */
        object-fit: cover;
    }   

    /* ===== STEPS SECTION ===== */
    .steps {
        padding: 100px 0;
    }

    .steps__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        /* padding: 0 60px; */
    }

    .step-card {
        /* padding: 35px 25px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split {
        padding: 100px 0;
    }

    .values-split .container {
        /* padding: 0 60px; */
        gap: 60px;
    }

    .values-split__title {
        font-size: 38px;
    }

    .values-phone {
        width: 240px;
    }

    .value-card {
        padding: 25px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials {
        padding: 100px 0;
    }

    .testimonials__swiper {
        /* padding: 0 60px; */
    }

    .testimonial-card {
        padding: 40px;
        gap: 35px;
    }

    .testimonial-card__quote h3 {
        font-size: 1.5rem;
    }

    .testimonial-card__text {
        font-size: 16px;
    }

    /* ===== BLOG SECTION ===== */
    .blog {
        padding: 100px 0;
    }

    .blog__container {
        /* padding: 0 60px; */
    }

    .blog__title {
        font-size: 2.5rem;
    }

    .blog-card {
        /* height: 380px; */
    }

    .blog-card__content {
        /* padding: 30px; */
    }

    /* ===== CTA SECTION ===== */
    .cta-band {
        padding: 80px 0;
    }

    .cta-band__content {
        padding: 0 60px;
    }

    .cta-band__title {
        font-size: 2.8rem;
    }

    .cta-band__subtitle {
        font-size: 18px;
        max-width: 600px;
    }

    /* ===== GALLERY ===== */
    .gallery {
        padding: 100px 0;
    }

    .gallery__header {
        padding: 0 60px;
    }

    .gallery__item {
        width: 320px;
        height: 220px;
        /* margin-right: 25px; */
    }

    /* ===== FOOTER ===== */
    .footer__top {
        padding: 70px 0 40px 0;
    }

    .footer__cols {
        /* gap: 70px; */
        /* padding: 0 60px; */
    }

    .footer__logo {
        /* height: 90px; */
    }

    /* ===== CONTACT FORM ===== */
    .contact-section {
        padding: 100px 0;
    }

    .contact-section .container {
        padding: 0 60px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 16px 20px;
        font-size: 16px;
    }

    .wpcf7-form input[type="submit"] {
        padding: 16px 40px;
        font-size: 18px;
    }

    /* ===== SECTION HEADERS ===== */
    .section {
        padding: 90px 0;
    }

    .section__header {
        padding: 0 60px;
        margin-bottom: 4rem;
    }

    .section__title {
        font-size: 2.5rem;
    }

    .section__subtext {
        font-size: 16px;
        max-width: 600px;
    }
}

/* iPad Air General (both orientations) - Additional optimizations */
@media (min-width: 820px) and (max-width: 1199px) {

    /* ===== IMPROVED TOUCH TARGETS ===== */
    button,
    .btn,
    a[href],
    .service-card,
    .testimonial-card,
    .blog-card {
        min-height: 48px; /* Slightly larger for iPad Air */
    }

    .owl-carousel .owl-dot{
        min-height: unset;
    }

    .navbar__link {
        min-height: 48px;
    }

    /* ===== OPTIMIZED HOVER STATES ===== */
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: translateY(-4px);
        transition: all 0.3s ease;
    }

    /* ===== IMPROVED SCROLLING ===== */
    .gallery__row {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* ===== BETTER SPACING ===== */
    .wpcf7-form {
        gap: 20px;
    }

    .wpcf7-form .form-row {
        gap: 20px;
    }
}

.footer__list a,
a.footer__contact-link,
.footer__legal a,
a.footer__domedia-link,
.blog-sidebar .btn-search,
.navbar-default .navbar-brand{
    min-height: auto;
}

