/************* FONTS *********/


/*** NAV BAR FONT ****/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&display=swap');
/*** FOOTER GALLR SOLUTIONS ***/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
/** CONTAINER font */


/* MAIN FONTS */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}



#container{
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

/* MAIN-NAVBAR */
.main-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;


    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 3rem;
    z-index: 100;
    background: transparent;
    transition: background 0.3s ease, height 0.3s ease;
}

.main-navbar.scrolled{
    height: 5.5rem;
    background: rgba(196, 0, 0, 0.85);
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
}


/* THE SERVICES BUTTONS */
.nav-links{
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3.5rem;
}

.nav-links a {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: 
        transform 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease ;
}

/* underline */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #e53935;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}



/* WHEN CLICKING NAV LINKS*/
.nav-links a:active {
    outline: none;
}





.nav-links a.active {
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
     /* soft red accent */
    font-weight: 600;
}


/*================== PHONE NUMBER RIGHT SIDE ============*/
/* PHONE NUMBER WRAPPER */
.nav-btn {
    display: flex;
    align-items: center;
}

/* PHONE BUTTON */
.nav-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.55rem 1.1rem;
    border-radius: 999px;

    border: 2px solid #e53935;
    background: transparent;

    color: #ffffff;
    font-weight: 600;
    font-size: 19px;
    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* HOVER */
.nav-phone:hover {
    background: #e53935;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.35);
}

/* CLICK */
.nav-phone:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(229, 57, 53, 0.25);
}

 /** HAMBURGER **/
 
 
 .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff; /* or your red */
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* ============================
   AREAS WE SERVE SECTION
   ============================ */

.areas {
    background: #ffffff;
    padding: 6rem 1.5rem;
    position: relative;
    padding: 7rem 2rem;

    background-image: url("../../lg-images/lg-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.areas-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.areas-header h1 {
    font-size: 3rem;
    color: #c40000; /* LG red */
    padding-top: 3rem;
    margin-bottom: 0.5rem;
}

.areas-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
}

.areas-header p {
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.6;
}

/* ============================
   GRID LAYOUT
   ============================ */

.areas-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ============================
   AREA CARD
   ============================ */

.area-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 260px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* ============================
   OVERLAY
   ============================ */

.area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(196, 0, 0, 0.75),
        rgba(0, 0, 0, 0.15)
    );

    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.area-overlay h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================
   HOVER EFFECTS
   ============================ */

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.area-card:hover img {
    transform: scale(1.08);
}




/** FOOTER MAIN **/
footer{
    background: #111;
    color: #ccc;
}
.footer-content{
    max-width: 1400px;
    background: #111;  
    color: #fff;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr ;
    margin: auto;
    gap: 2.5rem;
    padding: 4rem 3rem;
}
/** FOOTER COL **/
.footer-col {
    position: relative;
    padding-right: 2rem;
}

.footer-col h3{
    color: #ff0000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col h4{
    color: #ff0000;
    margin-bottom: 1rem;
    font-weight: 600; 
}

.footer-col p{
   font-size: 0.95;
   line-height: 1.6;
}
.footer-col li{
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.footer-col ul{
    list-style: none;
    padding :0;
}

.footer-col a{
    text-decoration: none;
    color: #fff;
        transition: 
        transform 0.25s ease,
        color 0.25s ease;
}

.footer-col a:hover{
  color:#ff0000;
}

/*** VERTIAL LINE **/
.footer-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #222;
}

.footer-contact p{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;

}

.footer-contact i {
    color: #ff0000;
    font-size: 0.95rem;
    min-width: 16px;
}




/** FOOTER BOTTOM **/
.footer-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-around;
    background: #111;  
    color: #fff;
    text-align: center;
    font-size: 0.9375;

}

/* SOCIAL ICONS *****/
.footer-socials{
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #222;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
        transition: 
        transform 0.25s ease,
        color 0.25s ease;
}


.footer-bottom p{
    color: #777;
    text-align: cetner;
    padding: 1rem;
    font-size: 0.9375rem;
}

.footer-bottom p span {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
}


/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {




    .main-navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
        padding: 0 1.2rem;
        position: fixed;
        background: #111;
        backdrop-filter: none;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
  }

   

    .logo {
     position: absolute;
     left: 50%;
     transform: translateX(-50%);

    }

   .logo img {
    height: 110px;
   }

     /**HAMBURGER **/


     .hamburger{
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        margin-left: auto;
     }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        }


    /* NAV LINKS SLIDE DOWN */

  .nav-links {
    position: absolute;
    background-color: #111;
    padding: 2rem 0;
    top: 80px; 
    left: 0;
    width: 100%;
    z-index: 999;
   

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);

    transition: 
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

    .nav-links.active{
        max-height: 400px; /* adjust if needed */
        opacity: 1;
        transform: translateY(0);
    }


   .nav-btn {
    display: none;
   }


   /*===== AREAS ======*/
    .areas-grid {
    display: grid;
    grid-template-columns: 1fr;   /* one card per row */
    justify-items: center;        /* centers cards horizontally */
    gap: 1.75rem;
  }

  .area-card {
    width: 100%;
    max-width: 380px;             /* keeps cards from stretching too wide */
  }

  .area-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

   

   /* ESTMISTE */

   .estimate-form{
     width: 100%;
    max-width: 530px;
    margin: 0 auto;     
     padding: 4rem 2.75rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
   }

   .estimate-form input,
    .estimate-form select,
    .estimate-form textarea {
        padding: 1rem;
        font-size: 1.05rem;
}



    .estimate-section {
    padding: 4rem 1.5rem;
  }

  .estimate-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .estimate-text {
    text-align: center;
  }

  .estimate-btn {
  padding: 1.25rem;
  font-size: 1.15rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  }

   /* WHY US */
  .why-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-text {
    justify-self: center;
  }

  /* FOOTER */
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom{
    display: grid;
    grid-template-columns: 1fr;

  }

  .footer-bottom p{
    font-size: 0.7rem;
  }
    .footer-bottom span{
    font-size: 0.5rem;
  }




}



   