/* Footer */
.footer {
    background: #27aae1;
    color: #fff;
    padding: 4vh 4vw 2vh;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* ← critical fix */
    flex-wrap: wrap;
}


.footer-contact {
    text-align: right;
    color: #fff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.company-name {
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.address {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info {
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.footer-logo {
    width: auto;
    height: 15vh;
    padding: 0vh 0 4vh 0;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.social-icons img {
    width: 1.09vw;
    height: auto;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-text {

    font-family: "Lato  ", sans-serif;
    margin-top: 10px;
    line-height: 1.5;
}

.footer-text a {
    color: #fff;
    text-decoration: underline;
}

.footer-contact-form {
    margin-top: 20px;
    max-width: 420px;
    text-align: left;
}

.footer-form-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: white;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-contact-form input {
    width: 100%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 10px 12px;
    margin-bottom: 10px;
    font-size: 13px;
    outline: none;
}

.footer-contact-form input::placeholder {
    color: #666;
}

.footer-contact-form button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 6px 18px;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.2s ease;
    display: block;
    margin-left: auto;
    margin-bottom: 2vh;
}

.footer-contact-form button:hover {
    background: rgba(255, 255, 255, 0.15);
}


/* Mobile view */
@media (max-width: 767px) {
    .hero-title {
        font-size: 8vw;
    }

    .hero-subTitle {
        font-size: 4vw;
    }

    .storeLogo {
        width: 200px;
        height: 32px;
    }

    .storeBtn {
        width: 100%;
        height: auto;
    }

    .phone-front {
        margin-left: 0;
    }

    .phone {
        top: 0;
    }

    .hero-section {
        margin-bottom: 0;
    }



    .stats {
        margin-left: 0 !important;
        width: 100% !important;
        padding-left: 0 !important;

    }

    .stat-number,
    .stat-label {
        display: block !important;
    }

    .stat-label {
        font-size: 3vw !important;
    }

    .about-label {
        font-size: 4vw !important;
    }

    .about-title {
        display: none;
    }

    .about-titleMob {
        display: block;
        font-size: 6vw !important;
    }

    .about-text {
        max-width: 100vw !important;
        font-size: 4vw !important;
        line-height: 24px !important;
    }

    .features-label {
        font-size: 4vw !important;
    }

    .features-title {
        font-size: 6vw !important;
    }

    .features-desc {
        font-size: 4vw !important;
        margin-top: 0 !important;
    }

    .feature-title {
        font-size: 5vw !important;
    }

    .feature-text {
        font-size: 4vw !important;
    }

    .mobBg {
        background-color: #ffffff !important;
        height: auto;
    }

    .nobgMob {
        background-color: transparent !important;
        box-shadow: none !important;
    }

    /* .contact-section {
    min-height: 700px !important;
    padding: 20px 0 !important;
  }

  .contact-left {
    max-width: 100% !important;
    padding: 0 0px !important;
  }

  .form-control,
  .message-control {
    width: 100% !important;
    font-size: 4vw !important;
    height: auto !important;
    padding: 2vh 4vw !important;
  }

  .message-control::placeholder {
    font-size: 4vw !important;
  }

  .form-control::placeholder {
    font-size: 4vw !important;
  }

  .contact-label {
    font-size: 4vw !important;
  }

  .contact-title {
    font-size: 6vw !important;
  }

  .btn {
    width: auto !important;
    height: auto !important;
    border-radius: 30px !important;
    font-size: 4vw !important;
    padding: 10px 20px !important;
  } */

}