/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #302a1b;
    font-family: helvetica, sans-serif;
}

/* Global Elements */
  
.menu__btn {    /* hamburger menu */
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 4;
    color: #ffffff;
    display: none;
}

.menu__btn i {
    font-size: 40px;
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1440px;
    margin: auto;
}

/* WhatsApp Widget */
.wa-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    height: 70px;
    background-color: #25D366;
    border-radius: 40px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s;
}

.wa-widget a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-widget a p {
    font-size: 1.2em;
    
    font-weight: bold;
}

.wa-widget i {
    font-size: 3em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.wa-widget {
    animation: bounce 2s infinite;
    animation-delay: 4s; /* Delays the start of the bounce */
}

.wa-widget.pause-bounce {
    animation-play-state: paused;
}


.wa-widget:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
}

/* Chat Box */
.wa-chat-box {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 2;
}

.wa-chat-header {
    background: #25D366;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-chat-header p {
    margin: 0;
}

.wa-chat-header span {
    cursor: pointer;
    font-size: 1.5em;
}

.wa-chat-content {
    padding: 10px;
}

.wa-chat-footer {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #f1f1f1;
}

.wa-chat-footer a {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

/* Button Styles */
.button--whatsapp,
.button--cta {
    border: none;
    color: white;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.button--whatsapp {
    background-color: #25D366;
    font-size: 1em;
}

.button--whatsapp:hover {
    background-color: #1DA851;
}

.button--whatsapp:active, .button--cta:active {
    transform: scale(0.95);
}

.button--cta {
    background-color: #3F7CAC;
    font-size: 1.2em;
}

.button--cta:hover {
    background-color: #2C5777;
}

/* cta Modal */

.modal {
    display: none; /* Hidden by default; shown via JS */
    position: fixed;
    z-index: 2000; /* To make sure it sits above all other content */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enables scrolling if content exceeds viewport */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
}

/* Modal Content */
.modal-content {
    position:fixed;
    top: 25%;
    background-color: #fff; /* White background for contrast */
    margin: auto; /* Centered vertically (with some top/bottom spacing) and horizontally */
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px; /* Limit width on larger screens */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative; /* For positioning the close button */
}

.modal-content .contact__form {
    max-width: 95%;
    min-width: 70%;
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #3F7CAC; /* Matches your button--cta hover color */
}

/* Header Section */
.stretch__container {
    background-color: #0C1B33;
    border-bottom: 1.5px solid white;
}

.header {
    display: flex;
    justify-content: space-between;
    height: 120px;
    align-items: center;
}

.header__left {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 80px;
    margin-right: 20px;
}

.header__logotext {
    color: #ffffff;
}

.header__links {
    list-style: none;
    display: flex;
    font-size: 1.15em;
}

.header__link {
    padding-right: 15px;
}

.header__link a {
    color: #ffffff;
    font-weight: bold;
}

.header__link a:hover {
    text-decoration: underline;
}

/* Hero Section */
section#hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}

section#hero::before {
    content: '';
    background: url('../images/01. unsplash.jpg') no-repeat center / cover;
    opacity: 0.5; /* Adjust this for transparency */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__maintext {
    font-size: 2.8em;
    margin: 0 0 20px;
    line-height: 1.2;
}

.typewriter::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero__subtext {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* Services Section */
section#services {
    padding: 60px 0;
    background-color: #f4f4f9;
    text-align: center;
    color: #333;
    min-height: 650px;
    display: flex;
    align-self: center;
}

.services__title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services__intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

.services__cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service__card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: calc(33% - 20px);
    transition: transform 0.3s;
}

.service__card:hover {
    transform: translateY(-10px);
}

.service__card i {
    font-size: 2.5em;
    color: #0C1B33;
    margin-bottom: 15px;
}

.service__card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #0C1B33;
}

.service__card p {
    color: #555;
    line-height: 1.6;
}

.services__cta {
    margin-top: 40px;
    text-align: center;
}

/* FAQs Section */
section#faqs {
    padding: 60px 0;
    background-color: #f4f4f9f3;
    text-align: center;
    color: #333;
    min-height: 550px;
    display: flex;
    align-self: center;
}

.faqs__title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0C1B33;
}

.faqs__accordion {
    text-align: left;
    max-width: 800px;
    margin: auto;
}

.faq__item {
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.2em;
    padding: 15px 20px;
    background: #0C1B33;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq__item summary:hover {
    background: #1A2D50;
}

/* Hiding Default Disclosure Triangle */
.faq__item summary::-webkit-details-marker {
    display: none;
}
.faq__item summary::marker {
    display: none;
}

.faq__answer {
    padding: 15px 20px 15px;
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

/* Expand Answer When Open */
.faq__item[open] .faq__answer {
    max-height: 500px; /* Adjust this as needed */
}

/* Toggle Icon Rotation */
.faq__item[open] .toggle-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.toggle-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

/* Footer Section */
footer#footer {
    background-color: #0C1B33;
    color: white;
    padding: 40px 0 25px;
    font-size: 1em;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    min-height: 350px;
}

.footer__section {
    flex: 1;
    min-width: 200px;
}

/* Footer Logo and Tagline */
.footer__section .logotext__name {
    font-size: 1.5em;
    color: #fff;
}

.footer__section .logotext__tagline {
    font-size: 1em;
    color: #bbb;
}

.footer__section h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer__section p,
.footer__section ul {
    color: #bbb;
    line-height: 1.8;
}

.footer__section ul {
    list-style: none;
    padding: 0;
}

.footer__section ul li {
    margin-bottom: 10px;
}

.footer__section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.2em;
}

.footer__section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer__section a {
    color: #bbb;
    margin-right: 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.footer__section a:hover {
    color: #fff;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.85em;
    color: #bbb;
}

/* ABOUT PAGE */
#about {
    padding: 60px 20px;
    background-color: #f4f4f9;
    color: #333;
}

.about__section {
    max-width: 70%;
}

.about__title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #0C1B33;
}

.about__intro {
    max-width: 90%;
    margin: auto;
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
    color: #555;
}

.about__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.about__content > div {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.about__content h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0C1B33;
}

.about__content p,
.about__content ul {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.about__values ul {
    list-style-type: disc;
    padding-left: 20px;
}

.about__cta {
    text-align: center;
    margin-top: 40px;
}

/* CONTACT PAGE */
#contact {
    background-color: #f4f4f9;
    padding: 60px 20px;
    color: #333;
    text-align: center;
}

.contact__section {
    max-width: 85%;
}

.contact__title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0C1B33;
}

.contact__intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

.contact__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.3em;
    line-height: 1.6em;
}

.contact__info h3,
.contact__form h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.contact__info,
.contact__form {
    flex: 1;
    margin: 0 auto;
    min-width: 515px;
    max-width: 620px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: left;
}

.contact__form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-input-container {
    display: flex;
    gap: 5px;
    align-items: center;
}

.phone-input-container input[type="text"] {
    flex: 1;
}

.phone-input-container input[type="tel"] {
    flex: 3;
}

.contact__form input[type="text"],
.contact__form input[type="tel"],
.contact__form input[type="email"],
.contact__form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

.contact__form button {
    align-self: flex-start;
    font-size: 0.8em;
}

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact__display ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contact__display ul li img {
    height: 60px;
}

.contact__map {
    margin-top: 40px;
}

.contact__map h3 {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
}

.contact__map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* TESTIMONIAL SECTION */
#testimonial {
    padding: 60px 20px;
    background-color: #f4f4f9;
    text-align: center;
    color: #333;
}

.testimonial__title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0C1B33;
}

.testimonial__intro {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

.testimonial__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.testimonial__card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.testimonial__card:hover {
    transform: translateY(-10px);
}

.testimonial__text {
    font-size: 1em;
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #3F7CAC;
    margin-right: 10px;
}

.testimonial__author-info h3 {
    font-size: 1.2em;
    margin: 0;
    color: #0C1B33;
}

.testimonial__author-info span {
    font-size: 0.9em;
    color: #555;
}

/* Sitemap Styles */
.sitemap {
    padding: 60px 20px;
    background-color: #f4f4f9; /* Matches services/about pages */
    color: #333;
}

.sitemap__container {
    /* Optional: if you want to further constrain the width */
    max-width: 800px;
    margin: 0 auto;
}

.sitemap__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0C1B33; /* Consistent heading color */
    text-align: center;
}

.sitemap__intro {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
}

.sitemap__section-title {
    font-size: 2em;
    margin: 40px 0 15px;
    color: #0C1B33;
}

.sitemap__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;
    max-width: 600px;
}

.sitemap__list-item {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.sitemap__link {
    font-size: 1.2em;
    color: #0C1B33;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap__link:hover {
    color: #3F7CAC;
}

/* Privacy Policy Styles */
.privacy {
    padding: 60px 20px;
    background-color: #f4f4f9;
    color: #333;
}

.privacy__container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy__title {
    font-size: 2.8em;
    text-align: center;
    color: #0C1B33;
    margin-bottom: 20px;
}

.privacy__last-updated {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #555;
}

.privacy__intro {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

.privacy__section {
    margin-bottom: 40px;
}

.privacy__section-title {
    font-size: 1.8em;
    color: #0C1B33;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.privacy__section-content {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

.privacy__link {
    color: #3F7CAC;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy__link:hover {
    color: #2C5777;
}

/* Terms and Conditions Styles */
.terms {
    padding: 60px 20px;
    background-color: #f4f4f9;
    color: #333;
}

.terms__container {
    max-width: 800px;
    margin: 0 auto;
}

.terms__title {
    font-size: 2.8em;
    text-align: center;
    color: #0C1B33;
    margin-bottom: 20px;
}

.terms__last-updated {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #555;
}

.terms__section {
    margin-bottom: 40px;
}

.terms__section-title {
    font-size: 1.8em;
    color: #0C1B33;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.terms__section-content {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.terms__link {
    color: #3F7CAC;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms__link:hover {
    color: #2C5777;
}

/* Error 404 */

section#error404 {
    padding: 60px 20px;
    text-align: center; 
    background-color: #f4f4f9;
    height: 650px;
    display: flex;
}

.error__h1 {
    font-size: 4em; 
    color: #0C1B33;
}

.error__h2 {
    font-size: 2em; 
    margin-bottom: 20px; 
    color: #0C1B33;
}

.error__p {
    font-size: 1.2em; 
    color: #555; 
    margin-bottom: 40px;
}

.error__link {
    display: inline-block; 
    background-color: #3F7CAC; 
    color: #fff; 
    padding: 15px 25px; 
    border-radius: 4px; 
    text-decoration: none; 
    transition: background-color 0.3s;
}

@media (max-width: 1415px) {
    .contact__info,
    .contact__form {
        min-height: 440px;
    }
    
    .contact__display ul {
        justify-content: space-evenly;
        gap: 0px;
    }
    
    .contact__map {
        width: calc(100% - 50px);
        min-width: 530px;
    }
    
    
}

@media (max-width: 1100px) {
    .header__links {
        max-width: 380px;
        flex-wrap: wrap;
        justify-content: end;
        line-height: 1.6em;
    }
}

@media (max-width: 1020px) {
    .footer__section:nth-of-type(1), 
    .footer__section:nth-of-type(4) {
        display: none;
    }
    
    .footer__section {
        font-size: 1.2em;
    }
    
    .footer__section h4 {
        font-size: 1.4em;
    }
    
    .footer__section:nth-of-type(2) ul {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .footer__section:nth-of-type(3){
        margin-bottom: 30px;
    }
    
    .footer__content{
        display: block;
    }
    
    .footer__content {
        text-align: center;
    }
    
    .services__cards {
        flex-direction: column;
        align-content: center;
    }
    
    .service__card {
        width: calc(70% - 20px);
    }
    
    .contact__map iframe {
        height: 400px;
    }
    
    /* footer social media icons widget */
    
    .footer__section:last-child {
        display: block;
    }
    
    .footer__section:last-child h4 {
        display: none;
    }
    
    .footer__section:last-child {
        position: fixed;
        z-index: 2;
        color:#ffffff;
        bottom: 70px;
        left: 0px;
        font-size: 2em;
        display: flex;
        flex-direction: column;
        gap: 10px
    }
    
    .footer__section:last-child a:nth-of-type(1) {
        background: #1437ff;
        width: 60px;
        display: flex;
        justify-content: end;
        padding-right: 5px;
    }
    
    .footer__section:last-child a:nth-of-type(2) {
        background: #ff1ece;
        width: 60px;
        display: flex;
        justify-content: end;
        padding-right: 5px;
    }
    
    .footer__section:last-child a:nth-of-type(1) i, 
    .footer__section:last-child a:nth-of-type(2) i {
        color: #fff;
    }
}

@media (max-width: 830px) {
    .hero__maintext {
        font-size: 2.2em;
    }
    
    .faqs__accordion {
        width: 80%;
    }
    
    .footer__content {
        width: 70%;
        padding-top: 30px; 
    }
    
    .footer__section {
        font-size: 1.2em;
        text-align: left;
    }
    
    .footer__section br:nth-of-type(1),
    .footer__section br:nth-of-type(3) {
        display: none;
    }
    
    .footer__section:nth-of-type(2) ul {
        display: flex;
        flex-wrap: wrap;
        max-width: 70%;
        line-height: 1.2em;
        justify-content: start;
    }
    
    .footer__section:nth-of-type(3) {
        margin-top: 40px;
    }
    
    .about__content p, .about__content li {
        font-size: 1.1em;
    }
    
    .footer__bottom {
        margin-top: 30px;
    }
    
    .contact__map iframe {
        height: 350px;
    }
    
}

@media (max-width: 700px) {
    body.scroll-lock {
        overflow: hidden;
    }    

    .wa-widget {
        bottom: 7%;
    }    
    
    .menu__btn {
        display: block;
    }    
    
    .menu__btn:hover {
        opacity: 0.5;
    }    
    
    .header__links {
        max-width: none;
        z-index: 3;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        background: #37342c;
        width: 50%;
        height:100%;      
        border-left:2px solid white;
        padding: 30px;
        padding-top: 100px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0s 0.3s ease-in-out;
        
        background-image: linear-gradient(to bottom,  
        rgb(71, 67, 56) 0%,  
        rgba(71, 67, 56, 0.8) 50%,  
        rgba(71, 67, 56, 0.2) 80%,  
        rgba(71, 67, 56, 0) 100%);  
        background-size: 100% 100%;  
        background-repeat: no-repeat;
    }    
    
    .header__link {
        padding: 20px;
        border-bottom: 2px solid #f3f3f3;
        font-size: 1.1em;
    }    
    
    .header__link:last-child {
        border-bottom: none;
    }    
    
    .show { /* << .header__links */
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease-in-out;
    }    
    
    .footer__section:nth-of-type(2) ul {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        max-width: 70%;
        line-height: 1.2em;
        justify-content: start;
    }    
    
    .footer__section br:nth-of-type(1) {
        display: block;
    }    

    .services__title {
        font-size: 2.5em;
        margin-bottom: 20px;
    }    
    
    /* Contact section 700px */
    
    .contact__info,
    .contact__form {
        min-width: 500px;
        font-size: 0.9em;
    }    
    
    .contact__content {
        justify-content: center;
    }    
    
    .contact__display ul {
        transform: scale(0.8);
    }    
    
    .contact__map {
        min-width: 500px;
    }    
    
    .contact__map iframe {
        height: 250px;
    }    

    .footer__bottom{ 
        margin-top: 80px;
    }    
}    

@media (max-width: 650px) {
    .contact__info,
    .contact__form {
        min-width: 120%;
    }    

    .contact__map {
        width: 100%;
        min-width: 400px;
    }    
}    

@media (max-width: 480px) {
    .modal-content {
    transform: scale(0.9);
    }

    .menu__btn {
        right: 30px;
    }

    .header__left {
        transform: scale(0.98);
    }

    .header__links {
        width: 100%;
        opacity: 0.95;
    }
    
    section#hero {
        height: 750px;
    }

    .footer__bottom {
        margin-top: 40px;
    }

    /* Testimonial Section */
    .testimonial__title {
        font-size: 2.2em;
    }

    .testimonial__intro {
        font-size: 1.1em;
    }

    .testimonial__cards {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }

    /* Contact Section */
    .contact__title {
        font-size: 2.2em;
    }

    .contact__intro {
        font-size: 1.1em; 
    }

    .contact__info,
    .contact__form {
        min-width: 115%;
    }

    .contact__infoText {
        font-size: 0.9em;
    }

    .contact__display ul {
        transform: scale(0.7);
        justify-content: space-evenly; 
        gap: 10px;
    }

    .label__countryName {
        display: flex;
        flex-direction: column; 
    }

    .contact__map {
        min-width: 320px;
    }
}

@media (max-width: 400px) {
    .header__links{
        position: fixed;
    }

    .wa-widget p {
        display: none;
    }
    
    .wa-widget {
        width: 100px;
        border-radius: 25px 0 0 25px;
        right: 0px;
    }

    .wa-chat-box{
        width: 220px;
    }

    .button--cta {
        font-size: 1em;
        min-height: 50px;
    }
    
    .service__card {
        width: 90%;
    }

    .testimonial__cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .testimonial__author img {
        transform: scale(0.9);
    }

    .testimonial__author-info {
        transform: scale(0.95);
    }

    .contact__map {
        min-width: 300px;
    }
}