:root{
    --blue:#1d5d99;
    --dark:#0b2f4f;
    --orange:#f7931e;
    --white:#ffffff;
    --light:#f5f5f5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* TOP BAR */

.top-bar{
    background:#1d5d99;
    color:#fff;
    padding:10px 8%;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-right a{
    color:#fff;
    margin-left:20px;
}

/* HEADER */

.main-header{
    background:#fff;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:42px;
    font-weight:800;
    color:#10253d;
}

.logo span{
    color:#f7931e;
}

.header-contact{
    display:flex;
    align-items:center;
    gap:40px;
}

.contact-box h4{
    font-size:14px;
    color:#777;
    margin-bottom:4px;
}

.contact-box p{
    font-weight:bold;
}

.quote-btn{
    background:#f7931e;
    color:white;
    padding:14px 28px;
    font-weight:bold;
}

/* ======================
   NAVBAR
====================== */

.navbar{
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    padding:20px;
    position:relative;
    z-index:1000;
}

.navbar a{
    color:#0b2f4f;
    font-weight:700;
    font-size:15px;
}

.dropdown{
    position:relative;
}

/* Default black */

.navbar a,
.drop-btn{
    color:#0b2f4f;
    font-weight:700;
    transition:.3s;
}

/* Hover par orange */

.navbar a:hover,
.dropdown:hover .drop-btn{
    color:#f7931e;
}

/* ======================
   MEGA MENU
====================== */

.mega-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);

    width:800px;

    background:#fff;

    display:none;

    grid-template-columns:1fr 1fr;

    gap:40px;

    padding:35px 40px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    z-index:999;
}

.dropdown:hover .mega-menu{
    display:grid;
}

.menu-column{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.menu-column a{
    position: relative;
    padding-left: 22px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.menu-column a::before{
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #f7931e;
    font-size: 22px;
    font-weight: bold;
}


.menu-column a:hover{
    color: #f7931e;
    padding-left: 27px;
    transition: .3s;
}

/* HERO */

.service-hero{
    height:450px;
    background:
    linear-gradient(
    rgba(11,47,79,.75),
    rgba(11,47,79,.75)),
    url("construction.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:900px;
    padding:0 20px;
}

.hero-content h1{
    font-size:68px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
}

/* INTRO */

.service-intro{
    padding:100px 8%;
}

.intro-content{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}

.intro-text h2{
    color:var(--blue);
    font-size:42px;
    margin-bottom:25px;
}

.intro-text p{
    margin-bottom:20px;
    font-size:17px;
}

.intro-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* FEATURES */

.pm-features{
    padding:0 8% 100px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-box{
    background:#f8f8f8;
    padding:35px;
    border-top:4px solid var(--orange);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.feature-box h3{
    color:var(--blue);
    margin-bottom:15px;
    font-size:24px;
}

/* WHY SECTION */

.why-section{
    padding:100px 8%;
    background:#fafafa;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    color:var(--blue);
    font-size:42px;
}

.why-section p{
    margin-bottom:20px;
}

.why-section h3{
    color:var(--blue);
    margin:35px 0 20px;
}

.why-section ul{
    padding-left:20px;
}

.why-section li{
    margin-bottom:12px;
}

/* FAQ */

.faq-section{
    padding:100px 8%;
    background:#fff;
}

.faq-container{
    max-width:1100px;
    margin:auto;
}

.faq-section h2{
    text-align:center;
    color:#1d5d99;
    font-size:48px;
    margin-bottom:50px;
    font-weight:700;
}

.faq-item{
    border-bottom:1px solid #d8d8d8;
}

.faq-question{
    width:100%;
    background:none;
    border:none;

    padding:24px 15px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    font-size:18px;
    font-weight:700;

    color:#222;
    transition:all .3s ease;
}

.faq-question:hover{
    color:#1d5d99;
}

/* Active question blue */

.faq-item.active .faq-question{
    color:#1d5d99;
}

.faq-question span{
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

/* Rotate icon */

.faq-item.active .faq-question span{
    transform:rotate(180deg);
    color:#1d5d99;
}

/* Smooth Open */

.faq-answer{
    max-height:0;
    overflow:hidden;

    background:#eef1f4;

    transition:
    max-height .4s ease,
    padding .4s ease;

    padding:0 25px;
}

.faq-item.active .faq-answer{
    max-height:250px;
    padding:25px;
}

.faq-answer p{
    margin:0;
    font-size:17px;
    color:#333;
    line-height:1.8;
}

/* CTA */

.cta{
    background:#3d6fa7;
    color:white;
    text-align:center;
    padding:100px 8%;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:var(--orange);
    color:white;
    padding:15px 35px;
    font-weight:bold;
    border-radius:4px;
}

/* ==========================
   CONTACT SECTION
========================== */

.contact-section{
    padding:100px 8%;
    background:#fff;
}

.contact-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-image img{
    width:100%;
    border-radius:20px;
    display:block;

    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.contact-form h2{
    color:#1d5d99;
    font-size:42px;
    margin-bottom:35px;
    text-align:center;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:none;
    background:#f2f3f5;

    padding:18px 20px;

    font-size:16px;
    outline:none;
}

.contact-form textarea{
    height:190px;
    resize:none;
}

.contact-form button{
    width:150px;
    height:55px;

    border:none;

    background:#355a94;
    color:white;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.contact-form button:hover{
    background:#1d5d99;
}

/* FOOTER */

.footer{
    background:#eceff3;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    padding:80px 8%;
}

.footer-col h2{
    color:#2d4f84;
    font-size:40px;
    margin-bottom:20px;
}

.footer-col h2 span{
    color:#f7931e;
}

.footer-col h3{
    color:#2d4f84;
    margin-bottom:20px;
}

.footer-col ul{
    list-style:none;
}

.footer-col li{
    margin-bottom:12px;
}

.footer-col a{
    color:#444;
}

.footer-col p{
    margin-bottom:10px;
}

.footer-bottom{
    /* background:#2d4f84;
    color:white;
    text-align:center;
    padding:18px; */

      background:#2d4f84;
    color:white;
    text-align:center;
    padding:18px 15px;
    font-size:14px;
    line-height:1.7;
    word-wrap:break-word;

    
}

/* ======================
   BROCHURE BTN
====================== */

.brochure-btn{
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    background: #f58220;
    color: #fff;

    text-decoration: none;
    font-size: 18px;
    font-weight: 600;

    padding: 18px 15px;

    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);

    border-radius: 8px 0 0 8px;
    z-index: 999;

    transition: 0.3s ease;
}

.brochure-btn:hover{
    background: #d96a0a;
    padding-right: 22px;
}

/* RESPONSIVE */
/* 
@media(max-width:992px){

    .header-contact{
        display:none;
    }

    .intro-content{
        grid-template-columns:1fr;
    }

    .pm-features{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:50px;
    }
}

@media(max-width:768px){

    .navbar{
        flex-wrap:wrap;
        gap:20px;
    }

    .service-hero{
        height:320px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .intro-text h2,
    .section-title h2,
    .faq-section h2,
    .contact-form h2,
    .cta h2{
        font-size:32px;
    }

    .service-intro,
    .why-section,
    .faq-section,
    .contact-section,
    .cta{
        padding:70px 5%;
    }
} */
html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

.service-hero,
.service-intro,
.why-section,
.faq-section,
.contact-section,
.cta,
.footer,
.main-header,
.navbar{
    width:100%;
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px){

    .header-contact{
        display:none;
    }

    .main-header{
        justify-content:center;
        text-align:center;
    }

    .intro-content,
    .contact-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .pm-features{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

    .hero-content h1{
        font-size:50px;
    }

    .mega-menu{
        width:95%;
    }
}

@media (max-width:768px){

    .top-bar{
        display:none;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .mega-menu{
        position:static;
        width:100%;
        transform:none;
        grid-template-columns:1fr;
    }

    .service-hero{
        height:320px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .service-intro,
    .why-section,
    .faq-section,
    .contact-section,
    .cta{
        padding:60px 20px;
    }

    .pm-features{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .contact-form button{
        width:100%;
    }

    .brochure-btn{
        display:none;
    }
}

@media (max-width:480px){

    .logo{
        font-size:28px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:14px;
    }

    .intro-text h2,
    .section-title h2,
    .faq-section h2,
    .contact-form h2,
    .cta h2{
        font-size:24px;
    }

    .faq-question{
        font-size:14px;
    }
}












@media (max-width:768px){

    .footer{
        width:100%;
    }

    .footer-container{
        width:100%;
        padding:50px 20px;
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-col{
        width:100%;
    }

    .footer-col p{
        word-break:break-word;
    }

    .footer-bottom{
        width:100%;
        font-size:13px;
        padding:15px 10px;
    }
}

@media (max-width:480px){

    .footer-bottom{
        font-size:12px;
        line-height:1.8;
    }

    .footer-col h3{
        font-size:24px;
    }
}




























/* FAQ MOBILE FIX */

@media (max-width:768px){

  .faq-section{
      padding:60px 20px;
  }

  .faq-section h2{
      font-size:32px;
      margin-bottom:30px;
  }

  .faq-question{
      font-size:15px;
      line-height:1.6;

      white-space:normal;
      word-break:break-word;

      padding:15px 0;
  }

  .faq-question span{
      flex-shrink:0;
      margin-left:10px;
  }

  .faq-answer{
      overflow:hidden;
  }

  .faq-answer p{
      font-size:14px;
      line-height:1.8;
  }
}

@media (max-width:480px){

  .faq-question{
      font-size:14px;
  }

  .faq-section h2{
      font-size:26px;
  }
}
