/************* 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;
}






/* ============================
   CONTACT SECTION
   ============================ */

.contact-hero {
    height: 60vh;
    background: url("../../lg-images/lg-truckjpeg.jpeg") center / cover no-repeat;
    position: relative;
}

.contact-hero-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-hero-overlay h1 {
    color: #fff;
    font-size: 3.4rem;
    font-weight: 700;
}

.contact-hero-overlay p {
    color: #f0f0f0;
    font-size: 1.25rem;
    margin-top: 0.4rem;
}

/* ============================
   CONTACT SECTION (CARD FLOAT)
   ============================ */

.contact-section {
    background: #f7f7f7;
    padding: 0 1.5rem 6rem;
}

.contact-container {
    max-width: 1200px;
    margin: -80px auto 0;

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);

    padding: 3.5rem;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;

    position: relative;
    z-index: 5;
}

/* ============================
   FORM SIDE
   ============================ */

.contact-form h2 {
    color: #c40000;
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.contact-form p {
    color: #666;
    margin-bottom: 2.5rem;
}

/* INPUT GROUPS */

.form-group {
    position: relative;
    margin-bottom: 1.4rem;
}

.form-group i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #b3b3b3;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px 15px 48px;
    border-radius: 12px;
    border: 1px solid #e1e1e1;
    background: #fafafa;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c40000;
    background: #fff;
}

/* BUTTON */

.contact-form button {
    margin-top: 1rem;
    width: 100%;

    background: linear-gradient(135deg, #d10000, #a40000);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(196,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(196,0,0,0.45);
}

/* ============================
   CONTACT INFO SIDE
   ============================ */

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #c40000;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    color: #333;
}

.info-item i {
    color: #c40000;
    font-size: 1.2rem;
}

/* SECOND CALL-OUT */

.contact-info .callout {
    margin-top: 2.5rem;
}

.contact-info .callout h4 {
    color: #c40000;
    margin-bottom: 1rem;
}


/** 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) {

/* ================= NAVBAR ================= */

.main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 1.2rem;
    position: fixed;
    background: #111;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 95px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* NAV LINKS DROPDOWN */

.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;
    opacity: 1;
    transform: translateY(0);
}

.nav-btn {
    display: none;
}

/* ================= HERO ================= */

.contact-hero {
    height: 50vh;
}

.contact-hero-overlay h1 {
    font-size: 2.2rem;
}

.contact-hero-overlay p {
    font-size: 1rem;
}

/* ================= CONTACT FORM ================= */

.contact-section {
    background: #f4f4f4;
    padding: 0 1.2rem 5rem;
}

.contact-container {
    max-width: 100%;
    margin: -60px auto 0;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 2.5rem 1.6rem;
    grid-template-columns: 1fr;
}

.contact-form h2 {
    font-size: 1.8rem;
}

.contact-form p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 18px 18px 50px;
    font-size: 1rem;
    border-radius: 14px;
}

.form-group textarea + i,
.form-group.textarea i {
    top: 22px;        /* move icon near top */
    transform: none;  /* remove vertical centering */

}
.form-group textarea {
    height: 160px;
}

.contact-form button {
    margin-top: 1.2rem;
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    border-radius: 40px;
}

/* OPTIONAL: hide contact info on mobile */
.contact-info {
    display: none;
}

/* ================= FOOTER ================= */

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

}
