: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: 0.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, 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: 500px;
  background:
    linear-gradient(rgba(11, 47, 79, 0.75), rgba(11, 47, 79, 0.75)),
    url("images/service5.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 58px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
}

/* ======================
   INTRO
====================== */

.service-intro {
  padding: 100px 8%;
}

.intro-content {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro-text h2 {
  color: #1d5d99;
  font-size: 42px;
  margin-bottom: 25px;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-image img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ======================
   FEATURES
====================== */

.pm-features {
  max-width: 1400px;
  margin: auto;
  padding: 0 8% 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: #f8f8f8;
  border-top: 4px solid #f7931e;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box h3 {
  color: #1d5d99;
  margin-bottom: 15px;
}

/* ======================
   WHY SECTION
====================== */

.why-section {
  background: #fafafa;
  padding: 100px 8%;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  color: #1d5d99;
  font-size: 42px;
}

.why-section h3 {
  color: #1d5d99;
  margin: 25px 0;
}

.why-section ul {
  padding-left: 25px;
}

.why-section li {
  margin-bottom: 12px;
}

/* ======================
   FAQ
====================== */

.faq-section {
  padding: 100px 8%;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-section h2 {
  text-align: center;
  color: #1d5d99;
  font-size: 46px;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 10px;
  cursor: pointer;
  color: #222;
  font-size: 18px;
  font-weight: 700;
}

.faq-item.active .faq-question {
  color: #1d5d99;
}

.faq-question span {
  transition: 0.3s;
}

.faq-item.active span {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  background: #eef1f4;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 25px;
}

/* ======================
   CTA
====================== */

.cta {
  background: #3d6fa7;
  color: #fff;
  text-align: center;
  padding: 100px 8%;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #f7931e;
  color: #fff;
  padding: 15px 35px;
  font-weight: 700;
}

/* ======================
   CONTACT
====================== */

.contact-section {
  padding: 100px 8%;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 50px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 15px;
}

.contact-form h2 {
  text-align: center;
  color: #1d5d99;
  font-size: 42px;
  margin-bottom: 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: #f3f3f3;
  border: none;
  padding: 18px;
}

.contact-form textarea {
  height: 180px;
}

.contact-form button {
  width: 180px;
  background: #355a94;
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
}

/* ======================
   FOOTER
====================== */

.footer {
  background: #eef3f7;
  padding: 80px 8% 50px;
}

.footer-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  color: #0b2f4f;
}

.footer-logo span {
  color: #f7931e;
}

.footer-col h3 {
  color: #1d5d99;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #333;
}

.footer-col ul li a:hover {
  color: #1d5d99;
}

/* COPYRIGHT */

.copyright {
  background: #34598f;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ======================
   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) {
  .main-header,
  .header-contact {
    flex-direction: column;
    text-align: center;
  }

  .intro-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .pm-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mega-menu {
    width: 95%;
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .navbar {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .service-intro,
  .why-section,
  .faq-section,
  .contact-section,
  .cta {
    padding: 70px 5%;
  }
} */












/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {

  .header-contact{
    display:none;
  }

  .main-header{
    justify-content:center;
    text-align:center;
    padding:20px;
  }

  .intro-content,
  .contact-container{
    grid-template-columns:1fr;
    gap:30px;
  }

  .pm-features{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-content h1{
    font-size:45px;
  }
}

@media (max-width: 768px) {

  .top-bar{
    display:none;
  }

  .logo{
    font-size:32px;
  }

  .navbar{
    flex-direction:column;
    gap:15px;
    padding:15px;
  }

  .mega-menu{
    position:static;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    padding:20px;
  }

  .service-hero{
    height:300px;
    padding:20px;
  }

  .hero-content h1{
    font-size:30px;
    line-height:1.4;
  }

  .service-intro,
  .why-section,
  .faq-section,
  .contact-section,
  .cta{
    padding:60px 20px;
  }

  .intro-text,
  .intro-image{
    width:100%;
  }

  .intro-image img,
  .contact-image img{
    width:100%;
    height:auto;
  }

  .pm-features{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .contact-form button{
    width:100%;
  }
}

@media (max-width: 480px) {

  .logo{
    font-size:28px;
  }

  .hero-content h1{
    font-size:24px;
  }

  .faq-question{
    font-size:15px;
    padding:18px 10px;
  }

  .section-title h2,
  .faq-section h2,
  .contact-form h2,
  .cta h2{
    font-size:24px;
  }

  .intro-text p,
  .why-section p,
  .footer-col p{
    font-size:14px;
    line-height:1.8;
  }

  .btn,
  .quote-btn{
    font-size:14px;
    padding:12px 20px;
  }

  .copyright{
    font-size:12px;
    padding:15px;
  }
}







@media (max-width: 768px){

  .intro-image img,
  .contact-image img{
    width:100%;
    max-width:100%;
    display:block;
  }

  .feature-box{
    padding:20px;
  }

  .faq-question{
    font-size:14px;
    text-align:left;
  }

  .contact-form input,
  .contact-form textarea{
    width:100%;
  }

  .footer-col{
    width:100%;
  }
}

@media (max-width:480px){

  .hero-content h1{
    font-size:22px;
  }

  .section-title h2,
  .cta h2,
  .contact-form h2{
    font-size:22px;
  }

  .logo{
    font-size:24px;
  }

  .navbar a{
    font-size:14px;
  }
}