/* =========================
   GLOBAL
========================= */

:root{
  --blue:#005bea;
  --blue-2:#2196f3;
  --blue-dark:#062c5f;
  --navy:#071f44;
  --text:#10233f;
  --muted:#5c6b82;
  --light:#f5f9ff;
  --white:#ffffff;
  --border:#e7edf6;
  --shadow:0 15px 35px rgba(0,35,80,0.14);
  --radius:16px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Poppins", Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#f5f9ff;
  line-height:1.6;
  overflow-x:hidden;
}

button,
input,
select,
textarea,
a{
  font-family:inherit;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
}

.container{
  width:min(90%, 1250px);
  margin:0 auto;
}

h1,
h2,
h3,
h4,
p,
a,
span{
  overflow-wrap:break-word;
}


/* =========================
   HERO
========================= */

.hero{
  min-height:100svh;
  height:auto;
  padding-top:clamp(120px, 15vh, 165px);
  padding-bottom:clamp(55px, 8vh, 90px);
  display:flex;
  align-items:center;
  background:
    linear-gradient(
      90deg,
      rgba(0,25,55,0.88) 0%,
      rgba(0,45,85,0.65) 38%,
      rgba(0,80,140,0.22) 100%
    ),
    url("Foto/hero.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-content{
  width:min(88%, 1250px);
  margin:0 auto;
  color:white;
  text-align:left;
}

.hero-content h1{
  font-size:clamp(42px, 4.4vw, 62px);
  line-height:1.08;
  font-weight:800;
  color:white;
  margin-bottom:22px;
  max-width:620px;
}

.hero-content p{
  font-size:clamp(15px, 1.15vw, 18px);
  line-height:1.7;
  color:white;
  max-width:620px;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn{
  background:var(--blue);
  color:white;
  padding:14px 24px;
  border-radius:9px;
  font-weight:800;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:0.3s;
  text-decoration:none;
}

.primary-btn:hover{
  background:#0049c7;
  transform:translateY(-2px);
}

.secondary-btn{
  background:rgba(255,255,255,0.10);
  color:white;
  padding:14px 24px;
  border:1px solid rgba(255,255,255,0.45);
  border-radius:9px;
  font-weight:800;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:0.3s;
  text-decoration:none;
}

.secondary-btn:hover{
  background:rgba(255,255,255,0.20);
  transform:translateY(-2px);
}


/* =========================
   SECTION TITLE
========================= */

.section,
.services{
  position:relative;
  z-index:1;
  margin-top:0;
  padding:clamp(60px, 8vw, 90px) 0;
  background:#f5f9ff;
  border-radius:0;
}

.section-title{
  width:min(88%, 1250px);
  margin:0 auto 35px;
  text-align:left;
}

.section-title span,
.eyebrow{
  color:var(--blue);
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.5px;
  margin-bottom:8px;
}

.section-title h2{
  font-size:clamp(28px, 3vw, 38px);
  line-height:1.2;
  color:#111827;
  margin-top:8px;
}

.section-title p{
  max-width:650px;
  color:#5b6575;
  font-size:clamp(15px, 1.3vw, 17px);
  margin-top:12px;
}


/* =========================
   SERVICES
========================= */

.service-grid,
.services-grid{
  width:min(88%, 1250px);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:18px;
}

.service-card{
  background:white;
  border-radius:12px;
  padding:28px 22px;
  box-shadow:0 12px 35px rgba(0,35,80,0.08);
  border:1px solid rgba(0,80,160,0.06);
  transition:0.3s;
  display:block;
  text-decoration:none;
  color:inherit;
  min-width:0;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 45px rgba(0,35,80,0.14);
}

.service-image{
  width:100%;
  height:clamp(155px, 12vw, 210px);
  border-radius:12px;
  overflow:hidden;
  margin-bottom:18px;
  background:#eaf3ff;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.service-card h3{
  color:#111827;
  font-size:clamp(16px, 1.15vw, 19px);
  line-height:1.25;
  margin-bottom:12px;
  text-decoration:none;
}

.service-card p{
  color:#4b5563;
  font-size:14px;
  line-height:1.7;
  text-decoration:none;
}


/* =========================
   FEATURES
========================= */

.features{
  background:
    linear-gradient(90deg, rgba(6,44,95,0.98), rgba(6,44,95,0.90)),
    url("Foto/hero.png");
  background-size:cover;
  background-position:center;
  color:white;
  padding:32px 0;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:30px;
}

.feature{
  display:flex;
  align-items:center;
  gap:18px;
  min-width:0;
}

.feature-icon{
  min-width:58px;
  width:58px;
  height:58px;
  border:2px solid rgba(255,255,255,0.85);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.feature h4{
  font-size:18px;
  margin-bottom:3px;
}

.feature p{
  font-size:14px;
  opacity:0.9;
  line-height:1.45;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding:clamp(65px, 8vw, 95px) 0 clamp(50px, 7vw, 75px);
  background:#f5f9ff;
}

.about-new{
  display:grid;
  grid-template-columns:0.9fr 1.25fr;
  gap:60px;
  align-items:center;
}

.section-kicker{
  display:block;
  color:#005bea;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0.8px;
  margin-bottom:14px;
}

.about-text h2{
  color:#071f44;
  font-size:clamp(32px, 3.6vw, 44px);
  line-height:1.15;
  margin-bottom:18px;
}

.title-line{
  width:58px;
  height:4px;
  background:#005bea;
  border-radius:20px;
  margin-bottom:28px;
}

.title-line.small{
  margin:14px 0 28px;
}

.about-text p{
  color:#4b5563;
  font-size:clamp(16px, 1.45vw, 18px);
  line-height:1.8;
  margin-bottom:18px;
}

.about-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.about-card{
  position:relative;
  min-height:420px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,35,80,0.16);
  background:white;
}

.about-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.about-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.02) 35%,
    rgba(0,20,50,0.45) 100%
  );
}

.about-card-content{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(10px);
  border-radius:18px;
  padding:18px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  box-shadow:0 12px 30px rgba(0,35,80,0.18);
}

.about-card-content i{
  min-width:46px;
  width:46px;
  height:46px;
  background:#005bea;
  color:white;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.about-card-content h3{
  color:#071f44;
  font-size:18px;
  margin-bottom:6px;
}

.about-card-content p{
  color:#4b5563;
  font-size:14px;
  line-height:1.5;
  margin:0;
}


/* =========================
   ABOUT CONTACT BOX
========================= */

.about-contact-box{
  width:100%;
  max-width:520px;
  margin-left:auto;
  background:#f7fbff;
  border:1px solid #dceaff;
  border-radius:32px;
  padding:42px;
  box-shadow:0 20px 55px rgba(0,35,80,0.14);
}

.about-contact-box h2{
  color:#071f44;
  font-size:clamp(30px, 3.5vw, 42px);
  line-height:1.1;
  margin-bottom:10px;
}

.about-contact-box .contact-row{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
  font-size:18px;
  font-weight:800;
  color:#071f44;
  min-width:0;
}

.about-contact-box .contact-row i{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:50%;
  background:#eaf3ff;
  color:#005bea;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.about-contact-box .contact-row a,
.about-contact-box .contact-row span{
  min-width:0;
  overflow-wrap:anywhere;
}

.about-contact-box .contact-row a{
  color:#071f44;
  text-decoration:none;
}

.about-contact-box .contact-whatsapp-btn{
  margin-top:24px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#005bea;
  color:white;
  padding:18px 24px;
  border-radius:14px;
  font-size:17px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 14px 30px rgba(0,91,234,0.28);
  transition:0.3s;
  text-align:center;
}

.about-contact-box .contact-whatsapp-btn i{
  font-size:22px;
}

.about-contact-box .contact-whatsapp-btn:hover{
  background:#0049c7;
  transform:translateY(-2px);
}


/* =========================
   ANGEBOT MODAL
========================= */

.angebot-modal{
  position:fixed;
  inset:0;
  background:rgba(3, 18, 42, 0.72);
  backdrop-filter:blur(10px);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.angebot-modal.show{
  display:flex;
}

body.modal-open{
  overflow:hidden;
}

.angebot-box{
  width:min(1050px, 100%);
  max-height:92vh;
  overflow-y:auto;
  background:#f6faff;
  border-radius:28px;
  box-shadow:0 35px 90px rgba(0,0,0,0.30);
  padding:0;
  position:relative;
  animation:modalIn 0.25s ease;
}

@keyframes modalIn{
  from{
    opacity:0;
    transform:translateY(18px) scale(0.98);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.angebot-header{
  background:linear-gradient(135deg,#eaf5ff,#ffffff);
  border-bottom:1px solid #dbeafe;
  padding:34px 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  border-radius:28px 28px 0 0;
}

.angebot-header span{
  color:#005bea;
  font-size:12px;
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
}

.angebot-header h2{
  color:#071f44;
  font-size:36px;
  line-height:1.12;
  margin:8px 0 10px;
}

.angebot-header p{
  color:#5c6b82;
  font-size:15px;
  max-width:620px;
}

.angebot-header img{
  height:130px;
  width:auto;
  object-fit:contain;
}

.modal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:white;
  color:#082e63;
  font-size:20px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,35,80,0.12);
  transition:0.25s;
  z-index:2;
}

.modal-close:hover{
  background:#005bea;
  color:white;
  transform:rotate(90deg);
}

.angebot-form{
  padding:30px 38px 36px;
}

.form-section{
  background:white;
  border:1px solid #e4ecf7;
  border-radius:20px;
  padding:22px;
  margin-bottom:18px;
  box-shadow:0 10px 28px rgba(7,31,68,0.055);
}

.form-section h3{
  color:#071f44;
  font-size:18px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
}

.form-section h3::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#005bea;
  box-shadow:0 0 0 5px #eaf3ff;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group label{
  font-size:13px;
  font-weight:800;
  color:#10233f;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid #d8e3f1;
  background:#fbfdff;
  color:#10233f;
  border-radius:12px;
  padding:13px 14px;
  font-family:"Poppins", Arial, sans-serif;
  font-size:14px;
  outline:none;
  transition:0.25s;
}

.form-group textarea{
  resize:vertical;
  min-height:120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#005bea;
  background:white;
  box-shadow:0 0 0 4px rgba(0,91,234,0.10);
}

.checkbox-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.checkbox-card{
  display:flex;
  cursor:pointer;
}

.checkbox-card input{
  display:none;
}

.checkbox-card span{
  width:100%;
  min-height:74px;
  display:flex;
  align-items:center;
  gap:12px;
  background:#fbfdff;
  border:1px solid #d8e3f1;
  border-radius:16px;
  padding:14px;
  font-size:14px;
  font-weight:800;
  color:#10233f;
  transition:0.25s;
}

.checkbox-card i{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  background:#eaf3ff;
  color:#005bea;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.checkbox-card input:checked + span{
  border-color:#005bea;
  background:#eef6ff;
  box-shadow:0 10px 24px rgba(0,91,234,0.12);
  transform:translateY(-2px);
}

.privacy-check{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:#5c6b82;
  font-size:13px;
  margin:18px 0 22px;
  line-height:1.5;
}

.privacy-check input{
  margin-top:4px;
}

.submit-offer-btn{
  width:100%;
  border:0;
  background:linear-gradient(90deg,#005bea,#2196f3);
  color:white;
  padding:17px 34px;
  border-radius:14px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  box-shadow:0 14px 34px rgba(0,91,234,0.28);
  transition:0.3s;
}

.submit-offer-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 42px rgba(0,91,234,0.38);
}

.pflichtfeld{
  color:#6b7280;
  font-size:12px;
  margin-top:12px;
  text-align:center;
}


/* =========================
   DANKE HTML
========================= */

.thank-you-section{
  min-height:100vh;
  padding:170px 20px 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(135deg, rgba(0,91,234,0.10), rgba(33,150,243,0.14)),
    #f5f9ff;
}

.thank-you-box{
  width:min(680px, 100%);
  background:white;
  border:1px solid #dceaff;
  border-radius:32px;
  padding:52px 42px;
  text-align:center;
  box-shadow:0 25px 70px rgba(0,35,80,0.16);
}

.thank-you-icon{
  width:86px;
  height:86px;
  margin:0 auto 24px;
  border-radius:50%;
  background:#25d366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  box-shadow:0 14px 35px rgba(37,211,102,0.30);
}

.thank-you-box h1{
  color:#071f44;
  font-size:48px;
  margin-bottom:18px;
}

.thank-you-box p{
  color:#4b5563;
  font-size:18px;
  line-height:1.8;
  margin-bottom:14px;
}

.thank-you-small{
  font-weight:700;
  color:#071f44 !important;
  margin-bottom:30px !important;
}


/* =========================
   RESPONSIVE
========================= */

/* Laptop më i vogël */
@media(max-width:1200px){
  .service-grid,
  .services-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .features-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* Tablet / iPad */
@media(max-width:1024px){
  .container{
    width:calc(100% - 40px);
  }

  .hero{
    min-height:80svh;
    padding-top:130px;
    padding-bottom:70px;
  }

  .hero-content h1{
    font-size:clamp(38px, 5vw, 52px);
  }

  .service-grid,
  .services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .service-image{
    height:clamp(210px, 24vw, 280px);
  }

  .about-new{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-contact-box{
    max-width:100%;
    margin-left:0;
  }

  .about-cards{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

/* Modal / forma */
@media(max-width:900px){
  .angebot-modal{
    padding:14px;
    align-items:flex-start;
  }

  .angebot-box{
    max-height:95vh;
    border-radius:22px;
  }

  .angebot-header{
    padding:28px 22px;
    flex-direction:column-reverse;
    align-items:flex-start;
    border-radius:22px 22px 0 0;
  }

  .angebot-header h2{
    font-size:28px;
  }

  .angebot-header img{
    height:68px;
  }

  .angebot-form{
    padding:22px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .checkbox-grid{
    grid-template-columns:1fr;
  }

  .modal-close{
    top:14px;
    right:14px;
  }
}

/* Telefon */
@media(max-width:768px){
  .container{
    width:calc(100% - 32px);
  }

  .hero{
    min-height:auto;
    padding-top:135px;
    padding-bottom:65px;
    background-position:center;
    text-align:center;
    justify-content:center;
  }

  .hero-content{
    width:calc(100% - 32px);
    max-width:100%;
    text-align:center;
  }

  .hero-content h1{
    font-size:clamp(34px, 9vw, 44px);
    max-width:100%;
  }

  .hero-content p{
    font-size:15px;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .section,
  .services{
    padding:60px 0;
  }

  .section-title{
    width:calc(100% - 32px);
    text-align:center;
    margin-bottom:30px;
  }

  .section-title p{
    margin-left:auto;
    margin-right:auto;
  }

  .service-grid,
  .services-grid{
    width:calc(100% - 32px);
    grid-template-columns:1fr;
    gap:22px;
  }

  .service-card{
    padding:20px 18px;
    border-radius:18px;
  }

  .service-card:hover{
    transform:none;
  }

  .service-image{
    width:100%;
    height:auto;
    aspect-ratio:16 / 10;
    border-radius:14px;
  }

  .service-card h3{
    font-size:24px;
    line-height:1.2;
  }

  .service-card p{
    font-size:16px;
  }

  .features{
    padding:42px 0;
  }

  .features-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .feature{
    align-items:flex-start;
  }

  .about-section{
    padding:60px 0 50px;
  }

  .about-new{
    gap:30px;
  }

  .about-text h2{
    font-size:clamp(28px, 8vw, 34px);
  }

  .about-text p{
    font-size:16px;
  }

  .about-cards{
    grid-template-columns:1fr;
  }

  .about-card{
    min-height:360px;
  }

  .about-contact-box{
    max-width:100%;
    margin-left:0;
    padding:24px 18px;
    border-radius:22px;
  }

  .about-contact-box h2{
    font-size:clamp(28px, 8vw, 34px);
  }

  .about-contact-box .contact-row{
    align-items:flex-start;
    gap:12px;
    font-size:14px;
  }

  .about-contact-box .contact-row i{
    width:44px;
    height:44px;
    min-width:44px;
    font-size:18px;
  }

  .about-contact-box .contact-whatsapp-btn{
    padding:15px 16px;
    font-size:14px;
  }

  .thank-you-section{
    padding:140px 18px 70px;
  }

  .thank-you-box{
    padding:38px 24px;
  }

  .thank-you-box h1{
    font-size:36px;
  }

  .thank-you-box p{
    font-size:16px;
  }
}

/* Telefon shumë i vogël */
@media(max-width:480px){
  .container{
    width:calc(100% - 28px);
  }

  .hero{
    padding-top:120px;
    padding-bottom:55px;
  }

  .hero-content{
    width:calc(100% - 28px);
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:14px;
  }

  .section-title,
  .service-grid,
  .services-grid{
    width:calc(100% - 28px);
  }

  .service-image{
    aspect-ratio:16 / 11;
  }

  .service-card h3{
    font-size:22px;
  }

  .service-card p{
    font-size:15px;
  }

  .about-text p{
    font-size:15px;
  }

  .about-contact-box{
    padding:22px 16px;
  }

  .thank-you-box h1{
    font-size:32px;
  }
}