
/* ===============================
        INDEX PAGE - HERO
=============================== */

.hero{
  background-size:cover;
  background-position:center;
  color:white;
  position:relative;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.10);
}

.hero-home{
  min-height:760px;
  padding:70px 20px 90px;
}

.hero-home-container{
  position:relative;
  z-index:1;
  max-width:1200px;
  width:100%;
  min-height:600px;
  margin:0 auto;
  display:grid;
  grid-template-columns:460px 1fr;
  gap:80px;
  align-items:center;
}

.hero-home-left{
  display:flex;
  justify-content:flex-start;
  align-items:center;
}

.hero-home-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.hero-home-content{
  max-width:700px;
  text-align:center;
  color:white;
  margin:0 auto;
}

.hero-home-content h1{
  font-size:52px;
  line-height:1.1;
  margin-bottom:16px;
  font-weight:700;
  white-space:nowrap;
}

.hero-home-content .hero-sub{
  font-size:24px;
  line-height:1.4;
  margin-bottom:10px;
  font-weight:600;
}

.hero-home-content .hero-small{
  font-size:18px;
  margin:0;
  font-weight:600;
}

.hero .btn{
  background:#ec252f;
  padding:12px 28px;
  color:white;
  text-decoration:none;
  font-weight:400;
  border-radius:6px;
  display:inline-block;
}

.hero-form-box{
  width:100%;
  max-width:460px;
  background:rgba(255,255,255,0.97);
  padding:22px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,0.18);
}

.hero-form-title{
  font-size:28px;
  font-weight:700;
  color:#1f2d3d;
  text-align:center;
  margin:0 0 18px;
}

.hero-form-title::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#ec252f;
  margin:12px auto 0;
}

.hero-form-box form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.hero-form-box input,
.hero-form-box select,
.hero-form-box textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
  font-family:inherit;
  margin:0;
}

.hero-form-box textarea{
  min-height:110px;
  resize:vertical;
}

@media (max-width: 768px){
  .hero{
    padding:0;
    height:auto;
    min-height:unset;
  }

  .hero-home{
    min-height:auto;
    padding:30px 16px 40px;
  }

  .hero-home-container{
    grid-template-columns:1fr;
    gap:24px;
    align-items:start;
  }

  .hero-home-right{
    order:1;
    justify-content:center;
    align-items:center;
  }

  .hero-home-left{
    order:2;
    justify-content:center;
    align-items:center;
  }

  .hero-home-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    max-width:100%;
    margin:0 auto;
  }

  .hero-home-content h1{
    font-size:28px;
    line-height:1.15;
    white-space:normal;
    margin-bottom:10px;
  }

  .hero-home-content .hero-sub{
    font-size:13px;
    line-height:1.4;
    margin-bottom:8px;
  }

  .hero-home-content .hero-small{
    font-size:13px;
    margin:0;
  }

  .hero-form-box{
    max-width:100%;
    padding:14px;
    border-radius:10px;
  }

  .hero-form-title{
    font-size:18px;
    margin-bottom:14px;
  }

  .hero-form-box input,
  .hero-form-box select,
  .hero-form-box textarea{
    padding:10px 12px;
    font-size:13px;
  }

  .hero-form-box textarea{
    min-height:80px;
  }

  .hero .btn{
    padding:12px 22px;
    font-size:14px;
  }
}

@media (min-width: 769px){

  .hero-home-content,
  .hero-form-box{
    opacity:0;
    transform:scale(0.92);
    animation:heroPop 0.8s ease-out forwards;
  }

  .hero-home-content{
    animation-delay:0.2s;
  }

  .hero-form-box{
    animation-delay:0.4s;
  }

  @keyframes heroPop{
    0%{
      opacity:0;
      transform:scale(0.92);
    }

    60%{
      opacity:1;
      transform:scale(1.02);
    }

    100%{
      opacity:1;
      transform:scale(1);
    }
  }
}
 
/* ===============================
        INDEX PAGE - ABOUT
=============================== */

.home-about-section.centered{
  max-width:1200px;
  margin:70px auto 120px;
  padding:0 20px;
  text-align:center;
}

.home-about-title{
  display:inline-block;
  font-size:28px;
  font-weight:700;
  color:#1f2d3d;
  margin:0 0 25px;
  text-align:center;
}

.home-about-title::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#ec252f;
  margin:2px auto 0;
}

.home-about-text{
  text-align:center;
  max-width:650px;
  margin:0 auto 20px;
  line-height:1.6;
  color:#555;
}

.credentials-label{
  font-size:16px;
  font-weight:700;
  letter-spacing:1.5px;
  color:#1f2d3d;
  margin-bottom:38px;
}

.credentials-box{
  margin-top:25px;
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}

.credentials-item{
  width:260px;
  text-align:center;
  padding:14px 18px;
  background:#e5e5e5;
  color:#222;
  text-decoration:none;
  font-weight:600;
  border-radius:8px;
  transition:all 0.3s ease;
}

.credentials-item:hover{
  background:#d6d6d6;
}

.about-lower{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  margin-top:70px;
  align-items:start;
}

.about-licences,
.about-why{
  text-align:center;
}

.about-why img{
  filter: brightness(0) saturate(100%) invert(21%) sepia(89%) saturate(6000%) hue-rotate(350deg) brightness(95%) contrast(105%);
}

.credentials-box{
  margin-top:15px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:25px;
  margin-top:15px;
  justify-items:center;
}

.why-item{
  transition:transform 0.25s ease, filter 0.25s ease;
}

.why-item:hover{
  transform:translateY(-6px) scale(1.05);
}

.why-item p{
  font-size:12px;
  font-weight:700;
  margin:0;
  line-height:1.2;
}

.why-item img{
  width:45px;
  height:45px;
  object-fit:contain;
  display:block;
  margin:0 auto 8px;
  transition:transform 0.25s ease;
}

.why-item:hover img{
  transform:scale(1.15);
}

@media (max-width: 768px){
  .home-about-section.centered{
    margin:50px auto 70px;
    padding:0 18px;
  }

  .home-about-title{
    font-size:24px;
  }

  .home-about-title::after{
    width:70px;
	margin:4px auto 0;
  }

  .home-about-text{
    font-size:15px;
    line-height:1.6;
  }

  .credentials-item{
    width:100%;
    max-width:260px;
  }
  
    .about-lower{
    grid-template-columns:1fr;
    gap:30px;
  }

  .why-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  
  .why-item img{
    width:45px !important;
    height:45px !important;
    max-width:45px !important;
    max-height:45px !important;
    object-fit:contain;
  }
}

/* ===============================
	 INDEX PAGE - SERVICES
=============================== */

.services{
text-align:center;
padding:100px 20px 60px;
}

.services h2{
font-size:32px;
margin-bottom:50px;
letter-spacing:1px;
position:relative;
display:inline-block;
}

.services h2::after{
content:"";
display:block;
width:100px;
height:4px;
background:#ec252f;
margin:2px auto 0;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.service-logo{
position:absolute;
top:-25px;
left:50%;
transform:translateX(-50%);
width:auto;
height:auto;
overflow:visible;
z-index:2;
}

.service-logo img{
height:70px !important;
width:auto !important;
max-width:none !important;
display:block;
}

.card{
position:relative;
text-align:center;
padding-top:5px;
transition:transform 0.3s ease, box-shadow 0.3s ease;
text-decoration:none;
color:inherit;
display:block;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
transition:transform 0.4s ease;
margin-top:0;
display:block;
}

.card:hover img{
transform:scale(1.05);
}

.card h3{
margin-top:15px;
font-size:18px;
}

.card p{
font-size:14px;
color:#555;
}

.btn-black{
  margin-top:35px;
  display:inline-block;
  background:#000;
  color:#fff;
  padding:12px 25px;
  text-decoration:none;
  font-weight:bold;
  border-radius:8px;
  transition:all 0.3s ease;
}

.btn-black:hover{
  background:#222;
  color:#fff;
}

@media (max-width: 768px){
  .services{
    padding:45px 18px;
  }

  .services h2{
    font-size:24px;
    margin-bottom:30px;
  }
  
   .btn-black{
    margin-top:30px;
    padding:12px 22px;
    font-size:14px;
  }
  
    .service-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .card img{
    height:240px;
  }

  .card h3{
    font-size:18px;
    margin:10px 0 4px;
    line-height:1.3;
  }

  .card p{
    font-size:14px;
    margin:0;
    line-height:1.4;
  }
 }
 
/* ===============================
   INDEX PAGE - COMPANY PROFILE
=============================== */

.company-profile{
    padding:90px 20px;
    background:#fff;
}

.company-profile-text .profile-label{
    display:block;
    text-align:left;
    margin:0 0 40px;
}

.profile-label{
    display:inline-block;
    position:relative;
    font-size:32px;
    font-weight:700;
    color:#1f2d3d;
    margin:0;
}

.profile-label::after{
    content:"";
    display:block;
    width:110px;
    height:4px;
    background:#ec252f;
    margin:12px 0 0;
}

.company-profile-content{
    max-width:1000px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.company-profile-image{
    flex:0 0 360px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.24);
    transition:transform .35s ease, box-shadow .35s ease;
}

.company-profile-image img{
    width:100%;
    display:block;
    border-radius:14px;
    transition:transform .35s ease;
}

.company-profile-image:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 42px rgba(0,0,0,.24);
}

.company-profile-image:hover img{
    transform:scale(1.02);
}

.company-profile-text{
    flex:1;
}

.company-profile-text p{
    margin:0 0 16px;
    font-size:17px;
    line-height:1.7;
    color:#555;
}

.company-profile .btn-black{
    display:inline-block;
}

.profile-buttons{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
    margin-top:28px;
    align-items:stretch;
}

.profile-buttons .btn-black,
.profile-buttons .btn-outline{
    width:100%;
    min-width:0;
    min-height:64px;
    margin:0;
    padding:12px 18px;
    box-sizing:border-box;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:700;
    line-height:1.25;
    text-align:center;
    text-decoration:none;
    text-transform:uppercase;

    border-radius:0;
}

.profile-buttons .btn-black{
    background:#102c52;
    border:2px solid #102c52;
    color:#fff;
}

.profile-buttons .btn-outline{
    background:#ec252f;
    border:2px solid #ec252f;
    color:#fff;
}

.profile-buttons .btn-black:hover{
    background:#091d38;
    border-color:#091d38;
}

.profile-buttons .btn-outline:hover{
    background:#c91d27;
    border-color:#c91d27;
}

@media (max-width:768px){

    .company-profile{
        padding:60px 20px;
    }

    .company-profile-header{
        margin-bottom:40px;
    }

    .profile-label{
        font-size:24px;
    }

    .profile-label::after{
        width:80px;
        margin-top:10px;
    }

    .company-profile-content{
        flex-direction:column;
        gap:35px;
        text-align:center;
    }

    .company-profile-image{
        flex:none;
        width:240px;
        margin:0 auto;
    }

    .company-profile-text{
        text-align:center;
    }

    .company-profile-text p{
        font-size:15px;
        margin-bottom:25px;
    }
	
.profile-buttons{
    grid-template-columns:1fr;
    gap:14px;
    width:100%;
}

.profile-buttons .btn-black,
.profile-buttons .btn-outline{
    min-height:58px;
    font-size:13px;
}
}

/* ===============================
  INDEX PAGE - FEATURED PROJECTS
=============================== */

.featured-projects{
    padding:90px 20px;
    background:#f5f6f8;
    overflow:hidden;
}

.featured-projects-header{
    max-width:800px;
    margin:0 auto 55px;
    text-align:center;
}

.featured-projects-header h2{
    display:inline-block;
    position:relative;
    margin:0 0 25px;
    font-size:32px;
    font-weight:700;
    color:#1f2d3d;
}

.featured-projects-header h2::after{
    content:"";
    display:block;
    width:110px;
    height:4px;
    margin:12px auto 0;
    background:#ec252f;
}

.featured-projects-header p{
    margin:0;
    font-size:17px;
    line-height:1.8;
    color:#555;
}

.projects-carousel{
    position:relative;
    max-width:1300px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.projects-stage{
    position:relative;
    width:100%;
    height:520px;
    overflow:hidden;
    perspective:1400px;
}

.project-slide{
    position:absolute;
    top:50%;
    left:50%;
    padding:0;
    margin:0;
    border:0;
    background:none;
    overflow:hidden;
    cursor:pointer;
    transition:transform .65s ease, width .65s ease, height .65s ease, opacity .65s ease, filter .65s ease, z-index .65s ease;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.project-slide img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}

.project-slide:hover img{
    transform:scale(1.04);
}

.project-slide-label{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:45px 18px 18px;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-align:center;
    background:linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0));
    opacity:0;
    transition:opacity .35s ease;
}

.project-slide:hover .project-slide-label,
.project-slide.is-active .project-slide-label{
    opacity:1;
}

.project-slide[data-position="0"]{
    width:500px;
    height:440px;
    z-index:5;
    opacity:1;
    filter:none;
    transform:translate(-50%, -50%) translateX(0) scale(1);
}

.project-slide[data-position="-1"]{
    width:310px;
    height:380px;
    z-index:4;
    opacity:.92;
    filter:brightness(.82);
    transform:translate(-50%, -50%) translateX(-390px) rotateY(12deg) scale(.92);
}

.project-slide[data-position="1"]{
    width:310px;
    height:380px;
    z-index:4;
    opacity:.92;
    filter:brightness(.82);
    transform:translate(-50%, -50%) translateX(390px) rotateY(-12deg) scale(.92);
}

.project-slide[data-position="-2"]{
    width:190px;
    height:320px;
    z-index:3;
    opacity:.68;
    filter:brightness(.65);
    clip-path:polygon(18% 0, 100% 8%, 100% 92%, 18% 100%, 0 50%);
    transform:translate(-50%, -50%) translateX(-650px) rotateY(18deg) scale(.85);
}

.project-slide[data-position="2"]{
    width:190px;
    height:320px;
    z-index:3;
    opacity:.68;
    filter:brightness(.65);
    clip-path:polygon(0 8%, 82% 0, 100% 50%, 82% 100%, 0 92%);
    transform:translate(-50%, -50%) translateX(650px) rotateY(-18deg) scale(.85);
}

.projects-arrow{
    position:absolute;
    top:50%;
    width:52px;
    height:52px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#102c52;
    color:#fff;
    font-size:25px;
    line-height:1;
    cursor:pointer;
    z-index:20;
    transform:translateY(-50%);
    transition:background .3s ease, transform .3s ease;
}

.projects-arrow:hover{
    background:#ec252f;
    transform:translateY(-50%) scale(1.08);
}

.projects-arrow-left{
    left:10px;
}

.projects-arrow-right{
    right:10px;
}

.featured-project-info{
    max-width:760px;
    margin:35px auto 0;
    text-align:center;
}

.featured-project-type{
    display:block;
    margin-bottom:10px;
    color:#ec252f;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.featured-project-info h3{
    margin:0 0 8px;
    color:#1f2d3d;
    font-size:28px;
}

.featured-project-location{
    margin:0 0 18px;
    color:#777;
    font-size:15px;
    font-weight:600;
}

.featured-project-description{
    margin:0;
    color:#555;
    font-size:16px;
    line-height:1.7;
}

.featured-project-instruction{
    margin:18px 0 0;
    color:#888;
    font-size:13px;
}

/* PROJECT LIGHTBOX */

.project-lightbox{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .35s ease, visibility .35s ease;
}

.project-lightbox.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.project-lightbox-backdrop{
    position:absolute;
    inset:0;
    background:rgba(4,15,30,.92);
    backdrop-filter:blur(6px);
}

.project-lightbox-content{
    position:relative;
    z-index:2;
    width:min(1150px, 100%);
    max-height:90vh;
    display:grid;
    grid-template-columns:1.5fr 1fr;
    background:#fff;
    overflow:auto;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.project-lightbox-image{
    min-height:580px;
    background:#111;
}

.project-lightbox-image img{
    width:100%;
    height:100%;
    min-height:580px;
    display:block;
    object-fit:cover;
}

.project-lightbox-info{
    padding:55px 45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.project-lightbox-info > span{
    margin-bottom:12px;
    color:#ec252f;
    font-size:14px;
    font-weight:700;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.project-lightbox-info h3{
    margin:0 0 10px;
    color:#1f2d3d;
    font-size:32px;
    line-height:1.25;
}

.project-lightbox-location{
    margin:0 0 24px;
    color:#777;
    font-weight:600;
}

.project-lightbox-info p{
    color:#555;
    font-size:16px;
    line-height:1.75;
}

.project-lightbox-info .btn-red{
    width:fit-content;
    margin-top:28px;
}

.project-lightbox-close{
    position:absolute;
    top:15px;
    right:18px;
    z-index:10;
    width:44px;
    height:44px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(0,0,0,.72);
    color:#fff;
    font-size:31px;
    line-height:1;
    cursor:pointer;
}

.project-lightbox-arrow{
    position:absolute;
    top:50%;
    z-index:10;
    width:48px;
    height:48px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(0,0,0,.68);
    color:#fff;
    font-size:23px;
    cursor:pointer;
    transform:translateY(-50%);
}

.project-lightbox-prev{
    left:18px;
}

.project-lightbox-next{
    right:18px;
}

body.project-lightbox-open{
    overflow:hidden;
}

@media (max-width:900px){

    .featured-projects{
        padding:65px 18px;
    }

    .projects-stage{
        height:420px;
    }

    .project-slide[data-position="0"]{
        width:62vw;
        max-width:420px;
        height:360px;
    }

    .project-slide[data-position="-1"]{
        width:230px;
        height:310px;
        transform:translate(-50%, -50%) translateX(-280px) scale(.86);
    }

    .project-slide[data-position="1"]{
        width:230px;
        height:310px;
        transform:translate(-50%, -50%) translateX(280px) scale(.86);
    }

    .project-slide[data-position="-2"],
    .project-slide[data-position="2"]{
        opacity:0;
        pointer-events:none;
    }

    .project-lightbox-content{
        grid-template-columns:1fr;
    }

    .project-lightbox-image{
        min-height:360px;
    }

    .project-lightbox-image img{
        min-height:360px;
        max-height:52vh;
    }

    .project-lightbox-info{
        padding:35px 28px;
    }
}

@media (max-width:600px){

    .featured-projects-header h2{
        font-size:25px;
    }

    .featured-projects-header p{
        font-size:15px;
    }

    .projects-stage{
        height:350px;
    }

    .project-slide[data-position="0"]{
        width:72vw;
        height:310px;
    }

    .project-slide[data-position="-1"]{
        width:150px;
        height:260px;
        transform:translate(-50%, -50%) translateX(-205px) scale(.8);
    }

    .project-slide[data-position="1"]{
        width:150px;
        height:260px;
        transform:translate(-50%, -50%) translateX(205px) scale(.8);
    }

    .projects-arrow{
        width:42px;
        height:42px;
        font-size:20px;
    }

    .projects-arrow-left{
        left:0;
    }

    .projects-arrow-right{
        right:0;
    }

    .featured-project-info h3{
        font-size:23px;
    }

    .featured-project-description{
        font-size:15px;
    }

    .project-lightbox{
        padding:15px;
    }

    .project-lightbox-image{
        min-height:280px;
    }

    .project-lightbox-image img{
        min-height:280px;
    }

    .project-lightbox-info h3{
        font-size:25px;
    }

    .project-lightbox-arrow{
        width:40px;
        height:40px;
    }
}

/* ===============================
      INDEX PAGE - REVIEWS
=============================== */

.reviews{
  text-align:center;
  padding:60px 20px;
  background:#f9f9f9;
}

.reviews-title{
  font-size:32px;
  margin-bottom:50px;
  position:relative;
  display:inline-block;
}

.reviews-title::after{
  content:"";
  display:block;
  width:100px;
  height:4px;
  background:#ec252f;
  margin:6px auto 0;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:900px;
  margin:auto;
}

.review-card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
}

.review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.review-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width: 768px){
    .reviews{
    padding:40px 18px 50px;
  }

  .reviews-grid{
    grid-template-columns:1fr;
    gap:25px;
  }
 }
 
/* ===============================
	INDEX PAGE - FAQ SECTION
=============================== */
.faq{
  padding:70px 20px;
  background:#f5f5f5;
}

.faq .section-title{
  text-align:center;
  font-size:30px;
  font-weight:700;
  margin-bottom:50px;
  position:relative;
}

.faq .section-title::after{
  content:"";
  display:block;
  width:130px;
  height:4px;
  background:#ec252f;
  margin:2px auto 0;
}

.faq-container{
  max-width:900px;
  margin:auto;
}

.faq-item{
  border-bottom:1px solid #ddd;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  font-size:15px;
  font-weight:700;
  color:#1f2d3d;
  padding:24px 0;
  cursor:pointer;
  position:relative;
  font-family:inherit;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-size:30px;
  font-weight:700;
  color:#ec252f;
}

.faq-item.active .faq-question::after{
  content:"−";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
}

.faq-answer p{
  margin:0 0 22px;
  color:#555;
  line-height:1.5;
  font-size:15px;
}

@media (max-width: 768px){
.faq{
    padding:50px 18px;
  }

  .faq .section-title{
    font-size:24px;
    margin-bottom:35px;
  }

  .faq .section-title::after{
    width:90px;
    margin-top:6px;
  }

  .faq-question{
    font-size:18px;
    line-height:1.3;
    padding:18px 32px 18px 0;
  }

  .faq-question::after{
    font-size:24px;
  }

  .faq-answer p{
    font-size:15px;
  }
 }
 
/* ===============================
   INDEX PAGE -  BLOG SECTION
=============================== */

.home-blog{
  padding:70px 20px;
  background:none;
  text-align:center;
}

.home-blog-title{
  font-size:32px;
  margin-bottom:50px;
  position:relative;
  display:inline-block;
}

.home-blog-title::after{
  content:"";
  display:block;
  width:100px;
  height:4px;
  background:#ec252f;
  margin:2px auto 0;
}

.home-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:900px;
  margin:auto;
}

.home-blog-card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  text-align:left;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:all 0.3s ease;
  display:flex;
  flex-direction:column;
}

.home-blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.home-blog-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}

.home-blog-card h3{
  font-size:18px;
  padding:15px 15px 5px;
  min-height:70px;
}

.home-blog-card h3 a{
  text-decoration:none;
  color:#000;
}

.home-blog-card h3 a:hover{
  color:#ec252f;
}

.home-blog-card p{
  font-size:14px;
  color:#555;
  padding:0 15px 20px;
}

.home-blog .btn-black{
  margin-top:40px;
}

@media (max-width: 768px){
  .home-blog{
    padding:40px 18px 50px;
  }

  .home-blog-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
    width:100%;
  }

  .home-blog-card{
    width:100%;
    max-width:100%;
  }

  .home-blog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
  }

.home-blog-title{
    font-size:26px;
    margin-bottom:35px;
  }
  
  .home-blog-card h3{
    font-size:22px;
    line-height:1.25;
    margin:16px 0 10px;
    text-align:center;
  }

  .home-blog-card p{
    font-size:15px;
    line-height:1.5;
    text-align:center;
  }
}

@media (max-width: 1024px){
  .nav{
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
  }
  .menu{
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
  }
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .contact-strip{
    gap:50px;
  }
  .brands{
    gap:35px;
  }
  .brands img{
    height:50px;
  }
}

@media (max-width: 900px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  .contact-form{
    padding:25px;
  }
  .careers-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}

@media (max-width: 768px){

  .blog-side-image{
    display:flex;
    flex-direction:column;
    gap:15px; 
    margin:30px 0; 
  }

  .blog-side-image-text{
    order:1;
    width:100%;
  }

  .blog-side-image-photo{
    order:2;
    width:100%;
    margin:0;
    height:auto; 
  }

  .blog-side-image-photo img{
    width:100%;
    height:200px; 
    object-fit:cover;
    display:block;
    border-radius:8px;
    margin:0;
  }

  .blog-side-image-text h2{
    margin-top:0; 
  }

}



