:root{
    --blue: #29B7E1;
    --white: #ffffff;
    --black: #03120E;
    --lightblue:#F0F8FF;
    --background_banner: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    --background_color:rgba(246, 246, 246, 0.5);
    --golden:#FFD42A;
    --blue_semiopaque:rgba(41, 183, 225, 0.5);
    --green:#6A9A1E;
    --green_semiopaque: rgba(106,154,30,0.5);
    --barkelei:#12355B;
    --crimsom:#D72638;
    --orange:#FF570A;
    --text-color: #333; /* Dark grey */
    --link-color: #2980b9; /* Blue */
    --link-hover-color: #2c3e50; /* Dark blue */
   

}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    -webkit-tap-highlight-color: transparent;
    
}


button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(41, 183, 225, 0.5); 
}


button::-moz-focus-inner {
    border: 0;
}

.fa-stopwatch:before {
    content: "\f2f2";
    color: #D72638;
}

.fa-dollar-sign:before, .fa-dollar:before, .fa-usd:before{
    color: forestgreen;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
   
}

body {
    background-image: var(--background_banner)
}

nav {
   
    background-color: var(--green);
    width: 100%;
    top: 0;
}

.logo > img {
    width: 90%;
    padding: 6px;
}



ul li a {
    font-size: 1.15em;
    padding: 0 .4em;
    line-height: 58px;
    font-weight: 700;
    text-decoration: none;
    color: var(--black);
}

.nav__adaptive a {
    transition: color 0.3s, transform 0.3s;
  }
  
  .nav__adaptive a:hover {
    color: var(--golden);
    transform: scale(1.1);
  }
  

.banner {
    position: relative; 
    width: 100vw;
    background-image: url("/img/redone_bkg_GH.svg");
    background-position: 50% 20%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
   
}

.banner .container {
    transform: translate(0%,0%); 
    text-align: center; 
}

.pricing>.container h2{
    color: floralwhite;
    text-align: start;
    background-color: salmon;
}
.pricing>.container{
    background-color: rgba(41, 183, 225, 0.15);
}
.banner h1, .banner p {
    color: black;
    font-family: math;
   
   
}

.banner p{
    background-color: rgba(255, 255, 255, 0.5);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner h1{
    color: var(--black);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background_color);
   
    -webkit-backdrop-filter:blur(3px); 
    backdrop-filter: blur(3px); 
}
.textBanner__adaptive{
    font-size: 1.15em;
}
.textBanner__adaptive{
    font-size: 1.15em;
}
.container{
    gap: 15px;
    padding: 20px;
}

.service {
    margin-bottom: 5vh; 
}
.service_unit{
    justify-content:space-between;
    gap: 5%;
    align-items: center;
}

.icon-wrapper {
    width: 40px; 
    height: 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
}


.small_header{

        text-align: center;
        font-size: larger;
        margin-bottom: 2.5%;
    
}

h4 p{
    padding-inline: 5%;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15vw; 
    height: 15vw; 
    border-radius: 50%; 
    background-color: #f0f0f0; 
    margin: 0 auto 2vh; 
}

.icon-container i {
    font-size: 6vw; 
    color: #29B7E1; 
}



.golden{
    color: var(--golden);
}
.blue{
    color: var(--blue);
}

.button_base{
    font-size: 1.25em;
    padding: 7px;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: all 0.3s ease-in;
    cursor: pointer;
    
}

.golden_button:hover{
    background: rgba(255, 212, 42, 1);
}
.green_button:hover{
    background: rgba(106,154,30,0.95);
}
.green{
    color: rgba(106,154,30,1);
}

.green_button{
    background: var(--green_semiopaque);
    color: white;
}

.golden_button{
    color: var(--black);
    background: rgba(255, 212, 42, 0.75);
}

.cursive{
    font-family: cursive;
    font-weight: bolder;
    
}

.crimsom{
    color: var(--crimsom);
}

.crimsom_opaque{
    background: rgba(215, 38, 56, 0.30);
}

.math{
    font-family: math;
    font-weight: bolder;
}

.subheader_base{
    
    padding: 5px;
    font-family: math;
    margin-bottom: 5%;
}

.golden_opaque{
   background:  rgba(255, 212, 42, 0.45);
}
.green_opaque{
    background:rgba(106,154,30,0.1);
}

.forestGreen_opaque{
    background:rgba(34, 139, 34, 0.35)
}

.subheader_base p{
    margin-bottom: 3.5%;
}

.about_us__mainP{
    margin-bottom: 3.5%;
}
.h3__about_us{
    margin-bottom: 5.5%;
}
.blue_header{
    background: var(--blue_semiopaque);
}

.column{
    display: flex;
    flex-direction: column;
}

.row{
    display: flex;
}

.center{
    justify-content: center;
    align-items: center;
}



.fa-truck-moving:before {
    content: "\f4df";
    color:rgba(215, 38, 56, 0.75);
}

.fa-building:before {
    content: "\f1ad";
    color:var(--black);
}





  
  


.subheader {
    color: #27ae60;
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: 600;
}


.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
}

.plan {
    width: 100%;
    max-width: 340px;
    background-color: whitesmoke;
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease-in-out;
}

.plan:hover {
    transform: translateY(-5px); 
}

.plan h3 {
    color: #2980b9; 
    font-size: 22px;
    margin-bottom: 20px;
}

.plan p {
    font-size: 26px;
    color: #34495e; 
    margin-bottom: 30px;
}


.quote-btn {
    background-color: rgba(34, 139, 34, 1);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color:rgba(34, 139, 34, 0.85);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.google-map{
    width:400;
    height:300;
    border: none;
}

@media (min-width: 1024px) {
    .plan {
        max-width: 400px; 
    }
    .adaptive__service_unit>p{
        width: 85%;
        padding: 5%;
        margin-block: 5%;
        background-color: whitesmoke;
        border: 1px solid salmon;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        
    }
    .pricing-plans {
        gap: 60px;
    }

    .plan h3 {
        font-size: 26px; 
    }
    .plan p {
        font-size: 30px; 
    }

    .quote-btn {
        padding: 15px 30px; 
        font-size: 20px;
    }

    .container {
        max-width: 1200px; 
        margin: auto; 
    }

 
}


  footer {
    padding: 20px;
    text-align: center;
    background: var(--green);
}

footer address a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1em;
    margin-bottom: 2%;
}
strong{
    font-size: 1.2em;
    margin-bottom: 2.5vh;
}

address p{
    font-size:1.2em;
}

footer h2{
    text-align: left;
    background: rgba(255, 212, 42, 0.85);
}

footer .subheader_base{
    margin-bottom: 3.5%;
}

footer address a i {
    margin-right: 5px;
}

footer address{
    align-items: start;
    padding: 7px;
    gap: 5px;
    margin-bottom: 8px;
    font-size: large;
}

.copyright{
    padding: 0;
    width: 100vw;
    text-wrap: nowrap;
   
}

.copyright p{
    width: 100vw;
    text-wrap: nowrap;
   text-align: center;
    font-weight: 800;
    font-size: large;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.google-map iframe{
    width:85vw; 
    
}

.feedback-section {
   
    padding: 20px;
   
}

.feedback-section h3 {
    margin-bottom: 15px;
    color: var(--black); 
}

.burlywood{
    background-color: burlywood;
}

#services>h2{
    color: white;
}

.fa-road:before,
.fa-clock-four:before, 
.fa-clock:before{
   
    color: crimson;
}
.fa-tag:before {
    
    color: forestgreen;
}

.fa-suitcase-rolling:before,
.fa-box-open:before {
   
    color: black;
}

.feedback-section a {
    display: inline-flex;
    align-items: center;
    background-color: rgba(220, 20, 60, 0.85); 
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.feedback-section a:hover {
    background-color: rgba(220, 20, 60, 1);
}

.feedback-section i {
    margin-right: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; 
  
    width: 75vw; 
    
  
    
}

.contact-form h2 {
    margin-top: 0;
    text-align: center;
    padding: 10px;
    color: var(--black);
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}


.form-group {
    margin-bottom: 1.5%;
}
textarea{
    resize: none;
 }
textarea{
    resize: none;
 }

label {
    font-weight: bold;
}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 5px;
}


#form_button{
    width: 100%;
    padding: 10px;
    background-color: var(--green_semiopaque);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}
#form_button:hover{
    background-color: var(--green);
}
  @media(max-width: 768px) {
    .pricing-plan {
      margin: 0 10px;
      width: calc(100% - 20px); 
    }

    .pricing-plans {
        flex-direction: column;
    }
    .icon_service{
        margin-bottom: 20vw;
        width: 45vw;
    }

    .service_unit{
        align-items: start;
      
    }

    .service_unit p{
        width: 85vw;
        margin-bottom: 15%;
        background-color: whitesmoke;
        border: 1px solid salmon;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
        padding: 5%;
    }
    
    
  }
  @media (max-width: 420px){
    
    footer address a,
    address p,
    .feedback-section
    {
        font-size: 0.8em;
    }

    .textBanner__adaptive,
    strong{
        font-size: 1em;
    }

    .logo > img {
        width: 80%;
       
    }
.copyright p{
    font-size: medium;
    font-weight: 600;
    text-align: start;
}

    }

    .cookie-consent-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        text-align: center;
        padding: 20px;
        z-index: 1000;
        display: none; /* Hidden by default */
      }
      
      .accept-cookies-btn {
        color: #000;
        background-color: #fff;
        border: none;
        padding: 10px 20px;
        margin: 10px;
        cursor: pointer;
      }
@media only screen and (min-width: 768px){
 
    @media (max-width: 380px){
        .textBanner__adaptive{
            font-size: 1em;
        }

        .logo > img {
            width: 80%;
           
        }
    }
    
@media only screen and (min-width: 768px){
 

    .nav__adaptive a{
        font-size: 1.5em;
    }

    .textBanner__adaptive{
        width: 75%;
        font-size: 1.55em;
        padding: 1.5vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3.5vh;
    }

    .textBanner__adaptive button{
        width: 35vw;
    }

    .contact-form{
        width: 50vw;
    }

    button[type="submit"]{
        width: 50%;
        align-self: center;
    }
    .logo > img {
        width: 50%;
    }

    .adaptive_logo_container{
        justify-content: end;
    }

    .icon-container i {
        font-size: 3vw;
       
    }

    .icon-container{
        width: 7.5vw;
        height: 7.5vw;
    }

    .service_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .service {
        width: calc(50% - 10px); 
        margin-bottom: 20px; 
        box-sizing: border-box;
    }
    
   
    .service::after {
        content: "";
        display: table;
        clear: both;
    }


    .banner{
        background-position: 50% 45%;
    }

    .nav__adaptive a {
        font-size: 1.45em;
    }

    .textBanner__adaptive{
        font-size: 1.40em;
        width: 65vw;
      
       
      
    }

    .adaptive_logo_container{
        justify-content: end;
    }

    .nav__adaptive{
        justify-content: flex-start;
    }

    .logo > img {
        width: 25%;
    }



    .textBanner__adaptive button{
        width: 35vw;
    }

    .contact-form{
        width: 50vw;
    }

    

}





/*Landscape mode Mobiles*/

@media only screen and (min-width: 480px) and (max-height: 640px) {
    .textBanner__adaptive {
        width: 75%;
        font-size: 1.55em;
        padding: 1.5vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3.5vh;
    }

    .nav__adaptive {
        justify-content: flex-start;
    }

    .banner {
        height: 100vh;
       
        background-position:0%;
    }

    .logo > img {
        width: 45%;
    }

    .nav__adaptive a {
        font-size: 1.45em;
    }

    .textBanner__adaptive{
        font-size: 1.45em;
    }

    .adaptive_logo_container{
        justify-content: end;
    }

    .icon-container i {
        font-size: 3vw;
       
    }

    .icon-container{
        width: 7.5vw;
        height: 7.5vw;
    }
.form__inputs_container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form{
    width: 90vw;
    padding: 40px;
}
.close-btn{
    top: 20px;
    right: 30px;
    font-size: 30px;
}
.form-group {
   
    width: 45%;
}

.contact-form h2{

    transform: translate(60%,50%);
    padding: 0;
}
button[type="submit"]{
    width: 100%;
}





}


@media only screen and (min-width: 480px) and (max-height: 640px),
       only screen and (min-width: 768px)
       {
        .service_container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        
        
        .service {
            width: calc(50% - 10px); 
            margin-bottom: 20px; 
            box-sizing: border-box;
        }
    
        .serives_container{
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }
    
        .adaptive__service_unit{
            display: flex;
            flex-direction: column;
        }
    
        #services>h2{
            margin: 0;
        }
    
        .pricing-plans{
            justify-content: space-evenly;
        }
    
        .pricing-plan{
            width: 25%;
        }

        #contact>.subheader_base
        {
          margin-bottom: 2.5%;
        }

      
       }
 

    


   
/* PCs and larger screens */
@media only screen and (min-width: 1025px) {
    .banner, 
    .nav__adaptive
    {
        font-size: 1.25em;
    }


   

    #pricing,
    .pricing-plan figure i,
    #about>div,
    #services,
    footer {
        font-size: 1.5em;
    }

    .pricing-plan{
        width: 28%;
    }
      
      .pricing-plan h3,
      .pricing-plan p  {
        font-size: 1.4em;
      
      }
      
      .pricing-plan button {
      
        font-size: 1.3em;
     
      }
     

      .contact-form{
        width: 25%;
    }
   
    footer address,
    .copyright>p{
      font-size: 1.15em;
    }
    .feedback-section h3{
        margin-bottom: 1.5%;
        font-size: 1.3em;
       
    }

  #contact>.subheader_base
    {
      margin-bottom: 2.5%;
    }

  .contact_footer{
    display: flex;
    flex-direction: column;
    
}

.google-map iframe{
    width: 100%; 
    height: 400px;
}
  
}
@media only screen and ( min-width:1410px)
{

    .contact_footer{
        display: flex;
        justify-content: space-between;
    }

  
}
@media only screen and (min-width: 480px)and (max-height:350px)
    {
        .textBanner__adaptive{
            font-size: 1.2em;
        }

      

    }

    @media only screen and (max-width: 350px)
    {
       .banner{
        height: 75vh;
       }

        .adaptive_logo_container{
            height:8vh
        }

        ul li a{
            font-size: 1em;
            line-height: 50px;
            font-weight: 600;
        }

        #book_btn{
            width: 75%;
        }

       #services{
        font-size: 0.9em;
       }

        
        .pricing-plan figure i{
            font-size: 1.3em
        }

        .pricing-plan button,
        .pricing-plan h3
        {
            font-size: 1em;
        }
        .pricing-plan p{
            font-size: 1.2em;
        }

        footer address{
            font-size: 0.8em;
        }

        .copyright p{
            font-size: 0.8em;
        }

        .contact-form{
            width: 90vw;
        }

    }
}

.wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .wrapper.show {
    right: 20px;
  }
  .wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
  }
  header i {
    color: burlywood;
    font-size: 32px;
  }
  header h2 {
    color: var(--green);
    font-weight: 500;
  }
  .wrapper .data {
    margin-top: 16px;
  }
  .wrapper .data p {
    color: #333;
    font-size: 16px;
  }
  .data p a {
    color: burlywood;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: var(--green_semiopaque);
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
    background-color: rgba(106,154,30,0.9);
  }
  #declineBtn {
    border: 2px solid var(--green_semiopaque);
    background-color: #fff;
    color: var(--green_semiopaque);
  }
  #declineBtn:hover {
    background-color: rgba(106,154,30,0.9);
    color: #fff;
  }
    .hidden {
        display: none;
    }
    
    .visible{
        display: flex;
    }
