/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  overflow-x:hidden;
  font-family:'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}


/* =========================
   NAVBAR
========================= */
.navbar{
  position:fixed;
  top:0;
  left:0;

  width:100%;

  padding:20px 50px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:1000;

  background:rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
}

/* LOGO */
.logo{
  font-size:20px;
  font-weight:700;
  color:#fff;

  white-space:nowrap;
}

.logo span{
  color:#ff8c2a;
}

/* NAVIGATION */
.nav-links{
  list-style:none;

  display:flex;
  align-items:center;

  gap:35px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:#ff8c2a;
}

/* BUTTONS */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 22px;

  border-radius:30px;

  text-decoration:none;

  background:linear-gradient(135deg,#ff8c2a,#ff6a00);

  color:#fff;

  font-size:14px;
  font-weight:600;

  transition:0.3s ease;
}

.btn-primary:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255,140,42,0.4);
}

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 22px;

  border-radius:30px;

  text-decoration:none;

  border:1px solid rgba(255,255,255,0.5);

  color:#fff;

  transition:0.3s ease;
}

.btn-secondary:hover{
  background:#fff;
  color:#062f2b;
}

/* =========================
   HERO SECTION
========================= */
.hero{
  position:relative;

  width:100%;
  height:100vh;

  overflow:hidden;

  display:flex;
  align-items:center;

  padding:0 70px;
}

/* SLIDER */
.hero-slider{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  z-index:1;
}

/* SLIDES */
.slide{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  opacity:0;

  transition:opacity 1.5s ease-in-out;
}

.slide.active{
  opacity:1;
}

/* IMAGES */
.slide img{
  width:100%;
  height:100%;

  object-fit:cover;
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    90deg,
    rgba(0,35,25,0.88) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.25) 100%
  );

  z-index:2;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:5;

  max-width:700px;

  margin-top:60px;
}

/* BADGE */
.badge{
  display:inline-block;

  padding:8px 18px;

  border-radius:30px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.15);

  backdrop-filter:blur(10px);

  margin-bottom:25px;

  font-size:13px;
  color:#fff;
}

/* TITLE */
.hero h1{
  font-size:72px;
  line-height:1.05;

  margin-bottom:25px;

  color:#fff;
}

.hero h1 span{
  color:#ff8c2a;
}

/* TEXT */
.hero p{
  font-size:18px;
  line-height:1.8;

  color:#ddd;

  margin-bottom:35px;

  max-width:620px;
}

/* BUTTON AREA */
.hero-buttons{
  display:flex;
  gap:18px;

  margin-bottom:50px;
}

/* STATS */
.hero-stats{
  display:flex;
  gap:60px;
}

.hero-stats h3{
  font-size:38px;
  color:#ff8c2a;

  margin-bottom:6px;
}

.hero-stats p{
  margin:0;
  font-size:15px;
  color:#ddd;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:992px){

  .navbar{
    padding:20px 30px;
  }

  .hero{
    padding:0 40px;
  }

  .hero h1{
    font-size:56px;
  }

}

/* MOBILE */
@media(max-width:768px){

  .navbar{
    padding:18px 20px;
  }

  .nav-links{
    display:none;
  }

  .navbar .btn-primary{
    display:none;
  }

  .hero{
    padding:120px 20px 60px;

    text-align:center;

    justify-content:center;
  }

  .hero-content{
    margin-top:0;
    max-width:100%;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-stats{
    flex-direction:column;
    gap:25px;
  }

}

/* =========================
   ABOUT SECTION
========================= */
.about {
  background: #f4f7f6;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* SECTION TAG */
.section-tag {
  color: #ff8c2a;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 40px;
  color: #062f2b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: #4a5a59;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #e2e8e6;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.card .icon {
  width: 45px;
  height: 45px;
  background: #eef3f2;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  margin-bottom: 15px;

  font-size: 18px;
}

.card h4 {
  font-size: 16px;
  color: #062f2b;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #5f6f6e;
  line-height: 1.6;
}

/* =========================
   SERVICES
========================= */
.services {
  background: #eef3f5;
  text-align: center;
}

.services-header {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 40px;
  color: #062f2b;
  margin: 15px 0;
  line-height: 1.3;
}

.services-header p {
  color: #5f6f6e;
  font-size: 15px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;

  text-align: left;

  border: 1px solid #e2e8e6;

  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(40px);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-card .icon {
  width: 50px;
  height: 50px;

  background: #0b3d2e;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  margin-bottom: 15px;

  font-size: 20px;
}

.service-card h4 {
  font-size: 17px;
  color: #062f2b;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #5f6f6e;
  line-height: 1.6;
}

/* =========================
   CONTACT
========================= */
.contact {
  background: linear-gradient(90deg, #022f1f, #046b7a);
}

.contact-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h2 span {
  color: #ff7a1a;
}

.contact-info p {
  color: #d6e3df;
  font-size: 18px;
  line-height: 1.7;

  max-width: 500px;

  margin-bottom: 40px;
}

/* CONTACT ITEMS */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* CONTACT TEXT COLORS */
.contact-info h2,
.contact-info h2 span,
.contact-item span {
  color: #fff;
}

.contact-icon {
  width: 52px;
  height: 52px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.1);

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ff7a1a;
  font-size: 20px;
}

/* FORM */
.contact-form-box {
  background: #f2f2f2;
  padding: 40px;
  border-radius: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: #18332f;
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 15px;

  border-radius: 14px;

  border: 1px solid #d6dddd;

  background: #f7f7f7;

  outline: none;

  font-size: 14px;

  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff7a1a;
  background: #fff;
}

.contact-btn {
  width: 100%;

  border: none;

  padding: 18px;

  border-radius: 40px;

  background: linear-gradient(135deg, #ff7a1a, #ff922d);

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(255,122,26,0.3);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: linear-gradient(90deg, #012d1d, #014f4f);
  padding: 70px 80px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;

  gap: 80px;

  padding-bottom: 50px;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;
}

.logo-icon {
  width: 38px;
  height: 38px;

  border-radius: 12px;

  background: linear-gradient(135deg, #ff7a1a, #ff9b3d);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 18px;
}

.footer-logo h3 {
  color: #fff;
  font-size: 26px;
}

.footer-logo h3 span {
  color: #ff7a1a;
}

.footer-brand p {
  color: #d9e4e1;
  line-height: 1.8;

  max-width: 420px;

  margin-bottom: 30px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #ff7a1a;
  transform: translateY(-3px);
}

/* LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 18px;
}

.footer-links a {
  color: #d7e0de;
  text-decoration: none;
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff7a1a;
  padding-left: 5px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: auto;

  padding-top: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #d7e0de;
  font-size: 14px;
}

.footer-bottom span {
  color: #ff7a1a;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {

  .hero {
    padding: 0 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-brand {
    grid-column: span 2;
  }

}

@media (max-width: 768px) {

  .navbar {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 20px 60px;

    justify-content: center;

    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about,
  .services,
  .contact,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-text h2,
  .services-header h2 {
    font-size: 30px;
  }

  .services-grid,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

}


```css
/* FORM MESSAGE */
#formMessage{
  margin-bottom:20px;
  padding:14px 18px;
  border-radius:12px;
  font-size:14px;
  font-weight:500;
  display:none;
}

/* SUCCESS */
.success-message{
  background:#dff6e7;
  color:#067647;
  border:1px solid #a6f4c5;
}

/* ERROR */
.error-message{
  background:#fde8e8;
  color:#b42318;
  border:1px solid #f5b5b5;
}

/* DISABLED BUTTON */
.contact-btn:disabled{
  opacity:0.7;
  cursor:not-allowed;
}

.menu-toggle{
  display:none;
  font-size:26px;
  color:#fff;
  cursor:pointer;
}

/* MOBILE MENU */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:0;

    width:100%;
    background:#062f2b;

    flex-direction:column;
    align-items:center;

    gap:20px;

    padding:30px 0;

    display:none;
  }

  .nav-links.active{
    display:flex;
  }

}



.slide img{
  width:100%;
  height:100%;
  object-fit:cover;

  transform: scale(1.1);
  transition: transform 6s ease;
}

.slide.active img{
  transform: scale(1);
}

.section{
  padding:100px 80px;
}

.service-card:hover{
  transform: translateY(-8px) scale(1.02);
}


/* PAGE HERO */
.page-hero{
  position:relative;
  height:300px;

  background:url('images/slide1.jpg') center/cover no-repeat;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
}

.page-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.page-hero-content{
  position:relative;
  color:#fff;
}

.page-hero-content h1{
  font-size:48px;
  margin-bottom:10px;
}

.page-hero-content p{
  font-size:14px;
}

.page-hero-content a{
  color:#ff8c2a;
  text-decoration:none;
}

/* LEGAL CONTENT */
.legal-container{
  max-width:900px;
  margin:auto;
}

.legal-container h2{
  font-size:32px;
  margin-bottom:20px;
  color:#062f2b;
}

.legal-container p{
  font-size:15px;
  line-height:1.8;
  color:#4a5a59;
  margin-bottom:15px;
}