/* ====================
    Header
==================== */
header {
    position: sticky; 
    top: 0; 
    z-index: 3; 
}
header .navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    padding: 0 10px;

    box-shadow: 2px 2px 5px #6e6e6e; /* glow ring */
    background: #fff3eb;
}
/* Logo */ 
header .logo {
    width: 7vw;
    padding-block: 8px; 
}
header .title {
    width: 13vw;   
}
/* Center */ 
header .navbar_center {
    justify-self: center;
}
/* Right */ 
header .navbar_left {
    justify-self: start; 
}
header .navbar_left,
header .navbar_right {
    display: flex; 
    align-items: center;
}
header .navbar_right{
    justify-self: end;
}
header .navbar_left_col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline: 0.5rem; 
}

header .navbar_right_col {
    display: flex; 
    flex-direction: column;
}
header .navbar_right_col_uppr {
    padding-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 600; 
}
header .navbar_right_col_uppr,
header .navbar_right_col_lowr {
    display: flex; 
    width: 13rem;
    padding-left: 1.25rem;
    color: #08ae21; 
    background: #fff3eb;
}
header .navbar_cta_number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #08ae21;
    text-decoration: none;
}
/* ====================
    Main
==================== */
/* Hero */ 
main .hero {
    padding-top: clamp(1.5rem, 3vw, 5rem);
    padding-bottom: clamp(1.5rem, 3vw, 5rem);  
}
main .hero_tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 2rem; 
    text-align: center;

    color: #6e6e6e;
    background: #fff3eb;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #6e6e6e; /* glow ring */
}
main .hero_kicker,
main .hero_subcopy {
    font-size: 1.5rem;
    padding-block: 30px; 
}
main .hero_main_tag {
    font-size: clamp(2rem, 4vw, 3.5rem); 
    line-height: 1.1;
}
main .hero_cta_row {
    display: flex; 
    flex-direction: column;
    align-items: center;

    padding-block: 30px;
}
main .hero_cta_details {
    display: flex;
    justify-content: center;
    gap: 50px;

    padding-top: 30px;
    font-size: 1.5rem;
}
main .hero_cta_number {
    color: #08ae21;
    font-weight: bold;
    text-decoration: none;
}
main .hero_kicker,
main .hero_subcopy,
main .hero_main_tag,
main .hero_cta_hours,
main .hero_cta_number {
    margin: 0; 
}
main .hero_trust_list {
    display: flex;
    text-align: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0 0 30px 0;
    font-size: 1.2rem;
}

/* Trust */ 
main .trust {
    padding-bottom: clamp(1.5rem, 3vw, 5rem);
}
main .trust_tile {
    display: flex;
    flex-direction: column;
    
    padding-inline: 1.5rem;
    padding-block: 2rem 3rem;
    background: #fff3eb;
    color: #6e6e6e; 
    border-radius: 10px;
    box-shadow: 2px 2px 5px #6e6e6e;
}
main .trust_kicker {
    text-align: center;
    margin: 0;
    padding-block: 20px 15px;
    font-size: 1.8rem;
}
main .trust_main {
    text-align: center;
    padding-bottom: 1.1rem;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.4;
}
main .trust_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}
main .trust_list {
    margin: 0; 
    padding-left: 8rem;
    font-size: 1.25rem;
}
main .trust_list li {
    padding-bottom: 10px;
    line-height: 2;
}
main .trust_image {
    max-height: 320px;
    overflow: hidden;
    margin-right: 2rem;
    border-radius: 10px;
}
main .trust_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    opacity: 0.92;
}
/* Signs */ 
main .signs {
    padding-bottom: clamp(1.5rem, 3vw, 5rem);  
}
main .signs_tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline: 1.5rem;
    padding-block: 2rem 3rem;
    
    color: #6e6e6e;
    background: #fff3eb;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #6e6e6e; /* glow ring */
}
main .signs_kicker {
    font-size: 1.5rem;
    margin: 0;
    padding-block: 20px 15px; 
}
main .signs_main {
    text-align: center;
    padding-bottom: 1.1rem;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.4;
}
main .signs_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}
main .signs_list {
    margin: 0; 
    padding-left: 8rem;
    font-size: 1.1rem;
}
main .signs_list li {
    padding-bottom: 10px;
    line-height: 2;
}
main .signs_image {
    max-height: 320px;
    overflow: hidden;
    margin-right: 2rem;
    border-radius: 10px;
}
main .signs_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Why */ 
main .why {
    padding-bottom: clamp(1.5rem, 3vw, 5rem);
}
main .why_tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding: 1.5rem; 
    
    color: #6e6e6e;
    background: #fff3eb;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #6e6e6e; /* glow ring */
}
main .why_kicker {
    font-size: 1.5rem;
    margin: 0;
    padding-block: 20px 15px; 
}
main .why_main_tag {
    margin: 0;
    padding-bottom: 15px;  
}
main .why_subcopy {
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
}
main .why_list {
    margin: 0; 
    padding: 0 0 24px 1.25rem; 
    font-size: 1.25rem;
}
main .why_list li {
    padding-bottom: 14px;
    line-height: 1.6;
}

/* Final cta */ 
main .final_cta {
    padding-bottom: clamp(1.5rem, 3vw, 5rem);
}
main .final_cta_tile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding: 2rem; 
    text-align: center;

    color: #6e6e6e;
    background: #fff3eb;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #6e6e6e; /* glow ring */
}
main .final_cta_kicker {
    font-size: 1.5rem;
    margin: 0;
    padding-block: 20px 15px;
}
main .final_cta_main_tag {
    margin: 0;
    padding-bottom: 15px;
}
main .final_cta_subcopy {
    margin: 0;
    padding-bottom: 20px;
}
main .final_cta_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
main .final_cta_whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;

    width: 25rem;
    padding: 1rem 1.5rem;

    background: #fff3eb;
    color: #08ae21;
    border: 2px solid #08ae21;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 10px;

    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
main .final_cta_whatsapp:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(8, 174, 33, 0.28);
    filter: brightness(1.1);
}

main .final_cta_whatsapp img {
    width: 2rem;
    height: 2rem;
    display: block;
}
main .final_cta_number {
    color: #08ae21;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.5rem;
}
/* ====================
    Footer
==================== */
footer .footer_container {
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 0.25rem; 

    box-shadow: 2px 2px 5px #6e6e6e; /* glow ring */
    background: #fff3eb;
}
footer p {
    margin: 0; 
    line-height: 1.4;
}
footer .footer_business_name {
    font-size: 1.1rem;
    font-weight: 700;
}
footer .footer_business_name,
footer .footer_copyright {
    font-size: 1.1rem;
    color: #6e6e6e;
}
footer .footer_info {
    font-size: 0.95rem;
    color: #6e6e6e;
}
footer .footer_trust {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #6e6e6e;
}
footer .footer_phone {
    padding-block: 0.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #08ae21;
}

/* ====================
    Buttons
==================== */
header .navbar_cta_button {
  display: inline-block;
  width: 9.5rem;
  padding: 0.9rem 1rem;
  background: #08ae21;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 2px 2px 2px 1px rgb(26, 255, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
main .navbar_cta_button {
    display: flex;
    justify-content: center;
    width: 25rem;
    padding: 1.5rem 1.5rem;
    background: #08ae21;
    color: #fff;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 1px rgb(26, 255, 0);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
header .navbar_cta_button:hover,
main .navbar_cta_button:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(8, 174, 33, 0.28);
    filter: brightness(1.15);
}
header .navbar_cta_button:active,
main .navbar_cta_button:active {
    transform: scale(0.99);
}

/* Numbers */ 
header .navbar_cta_number,
main .hero_cta_number,
main .final_cta_number,
footer .footer_phone {
    transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
header .navbar_cta_number:hover,
main .hero_cta_number:hover,
main .final_cta_number:hover,
footer .footer_phone:hover {
    transform: scale(1.02);
    opacity: 0.85;
    text-decoration: underline;
}
