/* NAVBAR RESPONSIVE */
@media screen and (max-width: 1000px) {
    .navbar-container {
        padding: 0 1.5rem;
    }

    .navbar-item {
        margin-left: 1rem;
    }
    .navbar-logo{
        display: none;
    }
    body {
        padding-top: 70px;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-item {
        margin: 1rem 0;
    }

    .navbar-link {
        font-size: 1.1rem;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* HERO RESPONSIVE */
@media screen and (max-width: 1000px) {
    .hero-content {
        width: 90%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        padding-top: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
     .hero {
        margin-top: 30px;
        width: 100%;
    }

    .hero-content {
        width: 95%;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: auto;
    }

    .hero-content::before,
    .hero-content::after {
        width: 10%;
        height: 10%;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* FEATURES RESPONSIVE */
@media screen and (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
     .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
        box-shadow: none;
        border: 1px solid lightblue;
    }

    .feature-card:hover {
        box-shadow: none;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }
}
/* ABOUT RESPONSIVE */
@media screen and (max-width: 1000px) {
    .about-content {
        width: 90%;
        gap: 2rem;
    }

    .about-image {
        width: 400px;
        flex: 0 0 400px;
    }

    .values-mission {
        gap: 2rem;
    }
    .section {
        padding: 3rem 0;
    }

    .section-content {
        width: 95%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .about-content {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        width: 100%;
        max-width: 400px;
        flex: none;
        margin: 0 auto;
    }

    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .values-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-container,
    .mission-container {
        padding: 2rem;
        box-shadow: none;
        border: 1px solid lightblue;
        border-radius: 5px;
    }

    .values-container h4,
    .mission-container h4 {
        font-size: 1.5rem;
    }

    .values-list {
        gap: 0.5rem;
    }

    .value-item {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    .mission-text {
        font-size: 1rem;
    }
}

/* SERVICES RESPONSIVE */
@media screen and (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-body {
        padding: 1.5rem;
    }
     .section {
        padding: 3rem 0;
    }

    .section-content {
        width: 95%;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-body {
        padding: 1.5rem;
    }

    .service-body p {
        font-size: 1rem;
    }

    .service-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .service-card {
        box-shadow: none;
        border: 1px solid lightblue;
    }

    .service-card:hover {
        box-shadow: none;
    }
}

/* CTA RESPONSIVE */
@media screen and (max-width: 1000px) {
    .cla {
        width: 90%;
    }
    .section {
        padding: 3rem 0;
    }

    .section-content {
        width: 95%;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cla {
        width: 95%;
    }

    .cla-p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cla > .btn {
        width: 200px;
    }
}

/* FOOTER RESPONSIVE */
@media screen and (max-width: 992px) {
    .footer {
        width: 100%;
    }

    .footer-container {
        width: 95%;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-contact {
        flex: 2.5;
    }

    .contact-form {
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-container {
        width: 95%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav {
        display: none;
    }

    .footer-contact {
        flex: 1;
        width: 100%;
    }

    .footer-title {
        margin-top: 20px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .footer-title::after {
        width: 50px;
        height: 3px;
    }

    .contact-form {
        max-width: 100%;
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .social-media-section {
        margin-top: 20px;
    }

    .social-label {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 1rem 0;
    }

    .footer-container {
        width: 95%;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-title::after {
        width: 40px;
        height: 3px;
    }

    .contact-form {
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .social-media-section {
        margin-top: 15px;
    }

    .social-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}