/* =====================
   RESET & BASE
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  line-height: 1.75;
  color: #1c2b3a;
  background: #f4f6f8;
}

/* =====================
   HEADER
===================== */
.header {
  background: linear-gradient(90deg, #0d3b66, #1b5fa7);
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid #ff7f11;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
    height: 44px;
  }

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #ff7f11;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

.lang-switch a {
  color: #fff;
  font-weight: 600;
  margin-left: 8px;
  text-decoration: none;
}
.lang-switch a:hover { text-decoration: underline; }

/* =====================
   HERO (HOME & PAGES)
===================== */
.hero,
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero {
  min-height: 75vh;
}

.page-hero {
  height: 45vh;
}

.hero-content {
  margin-left: 60px;
  max-width: 520px;
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 8px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  margin: 0 0 10px;
}

.hero-content p {
  font-size: 22px;
}

/* FADE HERO */
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(244,246,248,0),
    #f4f6f8
  );
  z-index: 1;
}

/* =====================
   BUTTONS
===================== */
.btn,
.submit-btn,
.call-button {
  background: #ff7f11;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  margin-top: 20px;
}

.call-button {
  display: inline-block;
  padding: 14px 26px;
  font-size: 20px;
  margin-top: 15px;
}

.submit-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 30px auto 0;
  font-size: 22px;
  padding: 18px 24px;
  box-shadow: 0 8px 22px rgba(255,127,17,0.5);
  animation: pulse 2.8s infinite;
}

/* =====================
   CONTENT
===================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 30px;
}

.section-title{
text-align:center;
padding:70px 30px;
background:#f4f6f8;
border-top:1px solid #e6e6e6;
}

.section-title h2{
color:#0d3b66;
font-size:34px;
max-width:900px;
margin:auto;
}

/* elegant divider */

.section-title::after{
content:"";
display:block;
width:80px;
height:4px;
background:#ff7f11;
margin:22px auto 0;
border-radius:2px;
}

.about-list li {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #0d3b66;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* =====================
   WHATSAPP
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

/* =====================
   ANIMATION
===================== */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,127,17,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255,127,17,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,127,17,0); }
}

/* =====================
   MOBILE HEADER CLEAN
===================== */

  @media (max-width:768px){

.header-inner{
flex-direction:row;
justify-content:space-between;
}

}

  nav#main-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    background: transparent;
  }

  nav#main-menu a {
    font-size: 16px;
    margin: 0;
  }

  .menu-toggle {
    display: none;
  }
}


/* =====================
   SERVICES GRID
===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 PER LINE */
  gap: 40px;
  margin-top: 40px;
}


.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card .icon {
  font-size: 36px;
  color: #ff7f11;
  margin-top: 18px;
}

.service-card h3 {
  font-size: 24px;
  margin: 15px 15px 10px;
}

.service-card p {
  font-size: 19px;
  line-height: 1.6;
  padding: 0 18px;
  color: #555;
}
.service-card h2 {
  font-size: 22px;      /* desktop */
  line-height: 1.35;
  margin: 18px 16px 10px;
  font-weight: 700;
}

/* MOBILE SERVICES */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.lang-switch {
  font-size: 14px;
  opacity: 0.85;
}

.lang-switch a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.lang-switch a:hover {
  opacity: 1;
  text-decoration: underline;
}

.lang-switch span {
  color: #ff7f11;
}
@media (max-width: 900px) {
  .lang-switch {
    margin-top: 6px;
    text-align: center;
  }

  nav#main-menu a {
    font-size: 16px;
    margin: 0;
  }
}
@media (max-width: 600px) {

  .lang-switch {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 4px;
  }

}

@media (max-width: 600px) {

  .hero-content {
    margin: 20px auto;
    max-width: 90%;
    padding: 24px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    font-size: 18px;
    padding: 12px 20px;
  }
}

@media (max-width: 600px) {

  .header {
    height: auto;          /* 🔥 KRITIKE */
    padding: 10px 0;
  }

  /* MENU */
  nav#main-menu a {
    font-size: 15px;
    line-height: 1.3;
  }

  /* HERO BOX */
  .hero-content {
    max-width: 90%;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 26px;      /* 🔥 kjo bën diferencën */
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 16px;
  }

}
@media (max-width: 600px) {

  .lang-switch {
    margin-top: 6px;
    font-size: 13px;
  }

}
/* =====================
   FINAL MOBILE POLISH
===================== */
@media (max-width: 600px) {

  /* HERO HEIGHT */
  .hero {
    min-height: 62vh;
  }

  .page-hero {
    height: 38vh;
  }

  /* HERO CONTENT */
  .hero-content {
    max-width: 92%;
    margin: 18px auto;
    padding: 18px;
  }

  .hero-content h1 {
    font-size: 25px;
    line-height: 1.22;
    letter-spacing: -0.2px;
  }

  .hero-content p {
    font-size: 15.5px;
    line-height: 1.45;
  }

  /* CTA BUTTON */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 14px 0;
  }

  /* HEADER */
  .logo {
    height: 46px;
  }

  nav#main-menu a {
    font-size: 15px;
    padding: 6px 0;
  }

  /* LANGUAGE SWITCH */
  .lang-switch {
    font-size: 12.5px;
    margin-top: 4px;
    opacity: 0.8;
    text-align: center;
  }
}
.b2b-cta {
  background: #ffffff;
  border-top: 4px solid #ff7f11;
  padding: 70px 30px;
  text-align: center;
  margin-top: 80px;
}

.b2b-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.b2b-cta p {
  max-width: 760px;
  margin: 0 auto 15px;
  font-size: 19px;
  line-height: 1.6;
}

/* =====================
   CONTACT FORM B2B
===================== */

.contact-form {
  max-width: 640px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.file-label {
  display: block;
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.file-label input {
  display: block;
  margin-top: 6px;
}

.contact-form button {
  width: 100%;
}
/* SERVICES – TITLES */
.services-grid h2 {
  font-size: 26px;       /* 🔧 zvogëlim i kontrolluar */
  line-height: 1.3;
  margin: 18px 15px 10px;
}
@media (max-width: 900px) {
  .services-grid h2 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .service-card h2 {
    font-size: 20px;
  }
}
.services-grid .service-card h2,
.services-grid .service-card h3 {
  font-size: 22px !important;
  line-height: 1.35;
  margin: 16px 16px 10px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .services-grid .service-card h2,
  .services-grid .service-card h3 {
    font-size: 20px !important;
  }
}
/* SERVICE CARD TITLES */
.services-grid .service-card h3 {
  font-size: 22px;
  line-height: 1.35;
  margin: 16px 16px 10px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .services-grid .service-card h3 {
    font-size: 20px;
  }
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
}

.social-icons a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.social-icons svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
@media (max-width: 900px) {
  .social-icons {
    display: none;
  }
}
.footer-social {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-social a {
  width: 20px;
  height: 20px;
  display: inline-flex;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}
.btn-secondary {
  background: transparent;
  color: #0d3b66;
  border: 2px solid #0d3b66;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 26px;
}

.btn-secondary:hover {
  background: #0d3b66;
  color: #fff;
}
.container h2 {
  font-size: 28px;
  margin-top: 60px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .container h2 {
    font-size: 22px;
  }
}
/* =====================
   FAQ
===================== */

.faq {
  max-width: 900px;
}

.faq-list {
  margin-top: 40px;
}

.faq-item {
  background: #fff;
  padding: 28px 32px;
  margin-bottom: 24px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.faq-item h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: #0d3b66;
}

.faq-item p {
  font-size: 19px;
  line-height: 1.65;
  margin: 0;
  color: #444;
}
@media (max-width: 768px) {
  .faq-item {
    padding: 22px;
  }

  .faq-item h3 {
    font-size: 20px;
  }

  .faq-item p {
    font-size: 18px;
  }
}
.cookie-notice {
  background: #f4f6f8;
  border-top: 1px solid #ddd;
  font-size: 14px;
  text-align: center;
  padding: 10px 20px;
  color: #555;
}

.cookie-notice a {
  color: #0d3b66;
  text-decoration: underline;
}
/* =====================
   SUNTECH SERVICES FIX
===================== */

.services {
  padding: 80px 30px;
  background: #f4f6f8;
  text-align: center;
}

.services h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #0d3b66;
}

.services-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 32px 26px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: left;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.service-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0d3b66;
}

.service-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* =====================
   PROBLEMS SECTION
===================== */

.problems {
  padding: 80px 30px;
  background: #ffffff;
  text-align: center;
}

.problems h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0d3b66;
}

.problems ul {
  max-width: 850px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.problems li {
  background: #f4f6f8;
  padding: 18px 24px;
  margin-bottom: 14px;
  border-radius: 8px;
  font-size: 19px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* =====================
   EXPERIENCE
===================== */

.experience {
  background: #f4f6f8;
  padding: 80px 30px;
  text-align: center;
}

.experience h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0d3b66;
}

.experience ul {
  max-width: 900px;
  margin: auto;
  padding: 0;
  list-style: none;
}

.experience li {
  background: #fff;
  padding: 18px 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-size: 19px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* =====================
   CTA SECTION
===================== */

.cta {
  padding: 90px 30px;
  text-align: center;
  background: linear-gradient(90deg,#0d3b66,#1b5fa7);
  color: #fff;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 21px;
  max-width: 720px;
  margin: auto;
  margin-bottom: 30px;
}

.cta-button {
  background: #ff7f11;
  color: #fff;
  padding: 16px 34px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
  transition: 0.25s;
}

.cta-button:hover {
  background: #ff9b3d;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 1000px) {

.services-grid {
grid-template-columns: repeat(2,1fr);
}

}

@media (max-width: 700px) {

.services-grid {
grid-template-columns: 1fr;
}

}
/* HERO TECH */

.hero-tech{
position:relative;
height:70vh;
background:url('../images/service1.png') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-tech-content{
position:relative;
z-index:2;
max-width:700px;
padding:20px;
}

.hero-tech h1{
font-size:44px;
margin-bottom:15px;
}

.hero-tech p{
font-size:22px;
margin-bottom:25px;
}

.hero-buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.btn-primary{
background:#ff7f11;
color:#fff;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
font-weight:700;
}

.btn-secondary{
background:transparent;
border:2px solid #fff;
color:#fff;
padding:12px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

/* SERVICES TECH */

.services-tech{
padding:90px 30px;
background:#f4f6f8;
text-align:center;
}

.services-tech h2{
font-size:34px;
margin-bottom:40px;
}

.services-tech-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.service-tech{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 12px 28px rgba(0,0,0,0.08);
transition:.3s;
}

.service-tech:hover{
transform:translateY(-6px);
box-shadow:0 18px 36px rgba(0,0,0,0.12);
}

.service-tech .icon{
font-size:40px;
margin-bottom:15px;
}

.service-tech h3{
font-size:22px;
margin-bottom:10px;
color:#0d3b66;
}

/* TRUST */

.trust-tech{
padding:90px 30px;
text-align:center;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.trust-item{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

.trust-item .icon{
font-size:36px;
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:900px){

.services-tech-grid{
grid-template-columns:repeat(2,1fr);
}

.trust-grid{
grid-template-columns:repeat(2,1fr);
}

.hero-tech h1{
font-size:32px;
}

.hero-tech p{
font-size:18px;
}

}

@media(max-width:600px){

.services-tech-grid{
grid-template-columns:1fr;
}

.trust-grid{
grid-template-columns:1fr;
}

.hero-tech{
height:60vh;
}

}
.problems-grid{
grid-template-columns:repeat(2,1fr);
}

@media(max-width:700px){
.problems-grid{
grid-template-columns:1fr;
}
}
.problems-tech{
max-width:1000px;
margin:80px auto;
padding:0 30px;
text-align:left;
}

.problems-tech h2{
text-align:center;
margin-bottom:40px;
}

.problems-grid{
max-width:800px;
margin:auto;
}
/* SERVICE COVERAGE CARDS */

.service-coverage{
padding:80px 30px;
background:#f4f6f8;
text-align:center;
}

.service-coverage h2{
font-size:34px;
margin-bottom:40px;
color:#0d3b66;
}

.coverage-grid{
max-width:1000px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.coverage-card{
background:#fff;
padding:26px;
border-radius:10px;
box-shadow:0 8px 22px rgba(0,0,0,0.08);
text-align:left;
transition:.25s;
}

.coverage-card:hover{
transform:translateY(-4px);
box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.coverage-icon{
font-size:32px;
margin-bottom:10px;
}

.coverage-card h3{
font-size:22px;
margin-bottom:14px;
color:#0d3b66;
}

.coverage-card ul{
list-style:none;
padding:0;
margin:0;
}

.coverage-card li{
padding:4px 0;
font-size:18px;
}

/* MOBILE */

@media(max-width:900px){

.coverage-grid{
grid-template-columns:1fr;
}

}
/* MOBILE CALL BAR */

.mobile-call-bar{
display:none;
}

@media(max-width:768px){

.mobile-call-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:9999;
}

.mobile-call-bar a{
flex:1;
text-align:center;
padding:14px;
font-size:18px;
font-weight:600;
text-decoration:none;
color:#fff;
}

.call-btn{
background:#0d3b66;
}

.whatsapp-btn{
background:#25d366;
}

}
/* STICKY HEADER */

.header{
position:sticky;
top:0;
z-index:1000;
background:linear-gradient(90deg,#0d3b66,#1b5fa7);
box-shadow:0 2px 10px rgba(0,0,0,0.15);
}
@media (max-width:768px){

.lang-switch{
display:none;
}

}
/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:28px;
background:none;
border:none;
color:#fff;
cursor:pointer;
}

@media (max-width:768px){

.menu-toggle{
display:block;
}

nav#main-menu{
display:none;
flex-direction:column;
position:absolute;
top:72px;
left:0;
width:100%;
background:#0d3b66;
padding:14px 20px;
}

nav#main-menu.active{
display:flex;
}

nav#main-menu a{
display:block;
padding:10px 0;
font-size:16px;
}

}
/* FIX MOBILE HEADER */

@media (max-width:768px){

.header-inner{
flex-direction:row;
justify-content:space-between;
align-items:center;
}

.logo{
height:40px;
}

.menu-toggle{
display:block;
}

}
@media(max-width:768px){
.whatsapp-float{
display:none;
}
}
.service-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
margin-bottom:80px;
}

.service-section.reverse{
direction:rtl;
}

.service-section.reverse .service-text{
direction:ltr;
}
@media(max-width:900px){

.service-section{
grid-template-columns:1fr;
}

.service-section.reverse{
direction:ltr;
}

}
.service-image img{
width:100%;
height:320px;
object-fit:cover;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.service-section{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
margin-bottom:80px;
}

.service-image{
max-width:420px;
}

.service-image img{
width:100%;
height:auto;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.service-section .service-image{
justify-self:end;
}

.service-section.reverse .service-image{
justify-self:start;
}

.service-image img{
width:100%;
height:auto;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.service-process{
padding:80px 0;
background:#f6f8fb;
text-align:center;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-top:40px;
}

.process-step{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.step-number{
width:50px;
height:50px;
border-radius:50%;
background:#f58220;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin:0 auto 15px;
font-size:20px;
}
.process-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
margin-top:40px;
}
@media(max-width:768px){

.process-grid{
grid-template-columns:1fr 1fr;
}

}
.service-process{
padding:80px 0;
background:#f6f8fb;
text-align:center;
}

.process-line{
display:flex;
justify-content:space-between;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.process-item{
flex:1;
min-width:180px;
}

.process-icon{
font-size:36px;
margin-bottom:10px;
}
.process-line{
display:flex;
justify-content:space-between;
gap:40px;
position:relative;
}

.process-line::before{
content:"";
position:absolute;
top:30px;
left:5%;
right:5%;
height:2px;
background:#e5e5e5;
z-index:0;
}

.process-item{
position:relative;
z-index:1;
}
.process-icon{
font-size:42px;
margin-bottom:12px;
}
.quality-box{
background:#f6f8fb;
border-left:4px solid #f58220;
padding:25px;
margin:60px 0;
border-radius:6px;
}
.lamp-service{
padding:80px 0;
background:#f6f8fb;
}

.lamp-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.lamp-image img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.service-intro{
padding:80px 0;
background:#ffffff;
}
.lamp-service{
padding:80px 0;
background:#f6f8fb;
}
.services-page{
padding:80px 0;
background:#ffffff;
}
.service-process{
padding:80px 0;
background:#f6f8fb;
}
.cta{
background:#0d3b66;
color:white;
padding:80px 0;
text-align:center;
}
.lamp-service{
background:#f6f8fb;
border-top:1px solid #e8e8e8;
border-bottom:1px solid #e8e8e8;
}
/* MOBILE FIX – LAMP SECTION */

@media(max-width:768px){

.lamp-grid{
grid-template-columns:1fr;
gap:30px;
}

.lamp-image{
order:-1;
}

}
/* =====================
   SERVICES MOBILE FIX
===================== */

@media(max-width:768px){

.services-grid{
grid-template-columns:1fr;
gap:30px;
}

.service-box{
padding:24px;
}

.service-box h3{
font-size:22px;
}

.service-box p{
font-size:19px;
}

}
@media(max-width:900px){
.service-image{
max-width:100%;
}
}
@media(max-width:900px){

.service-section{
gap:25px;
margin-bottom:60px;
}

}
/* FIX SERVICES MOBILE */

@media(max-width:900px){

.service-section{
display:block;
margin-bottom:60px;
}

.service-image{
max-width:100%;
margin-bottom:20px;
}

.service-image img{
width:100%;
height:auto;
}

.service-section.reverse{
direction:ltr;
}

}