* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f6f0e7;
  color: #183631;
}

/* HEADER */

header {
  width: 100%;
  background: #183631;
  padding: 14px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffbd59;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
}

.logo {
  height: 70px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.logo-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffbd59;
  color: #183631;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
.admin-btn {
  color: #ffbd59;
}

/* BUTTONS */

.btn,
button {
  background: #ffbd59;
  color: #183631;
  padding: 14px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.btn:hover,
button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,189,89,0.35);
}

.btn-outline {
  color: #ffbd59;
  border: 1px solid #ffbd59;
  background: transparent;
  padding: 14px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ffbd59;
  color: #183631;
}

/* HERO */

.hero {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(24,54,49,.97), rgba(24,54,49,.72), rgba(24,54,49,.22)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c");
  background-size: cover;
  background-position: center;
  padding: 110px 8%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  color: white;
}

.tag {
  color: #ffbd59;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 68px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.desc {
  font-size: 21px;
  line-height: 1.7;
  margin-bottom: 34px;
  color: #f2f2f2;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* INTRO */

.intro {
  padding: 80px 8%;
  text-align: center;
}

.intro h2,
.featured h2,
.process h2,
.cta h2,
.cta-section h2 {
  font-size: 44px;
  margin-bottom: 18px;
}

.intro p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

/* SERVICES HOME */

.service-preview {
  padding: 0 8% 85px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-preview div {
  background: white;
  padding: 32px;
  border-radius: 24px;
  border-bottom: 5px solid #ffbd59;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  transition: 0.3s;
}

.service-preview div:hover {
  transform: translateY(-8px);
}

.service-preview h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-preview p {
  color: #555;
  line-height: 1.6;
}

/* PROCESS */

.process {
  background: #183631;
  color: white;
  text-align: center;
  padding: 85px 8%;
}

.process h2 {
  color: white;
  margin-bottom: 45px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-grid div {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 34px 28px;
  border-radius: 24px;
  transition: 0.3s;
}

.process-grid div:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-8px);
}

.process-grid span {
  color: #ffbd59;
  font-size: 38px;
  font-weight: bold;
}

.process-grid h3 {
  margin: 16px 0 12px;
  font-size: 22px;
}

.process-grid p {
  color: #eee;
  line-height: 1.6;
}

/* FEATURED PROJECTS */

.featured {
  padding: 85px 8%;
  text-align: center;
}

.projects-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.1);
  cursor: pointer;
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.project-card div {
  padding: 22px;
  text-align: left;
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.project-card p {
  color: #555;
  line-height: 1.6;
}

/* WHY */

.why-section {
  padding: 85px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: #fffaf2;
  align-items: center;
}

.why-section h2 {
  font-size: 44px;
  line-height: 1.2;
}

.why-list {
  background: white;
  padding: 38px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.why-list p {
  font-size: 20px;
  margin-bottom: 18px;
}

/* CTA */

.cta,
.cta-section {
  background: #183631;
  color: white;
  text-align: center;
  padding: 85px 8%;
}

.cta h2,
.cta-section h2 {
  color: white;
}

.cta p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 28px;
}

/* PAGE TITLE */

.page-title {
  background:
    linear-gradient(rgba(24,54,49,.88), rgba(24,54,49,.88)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d");
  background-size: cover;
  background-position: center;
  padding: 90px 8%;
  text-align: center;
  color: white;
}

.page-title h1 {
  font-size: 54px;
  margin-bottom: 12px;
}

.page-title p {
  font-size: 18px;
}

/* ABOUT PAGE */

.split {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.split h2 {
  font-size: 44px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.split p {
  font-size: 18px;
  line-height: 1.7;
}

.image-box {
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 18px 18px 0 #ffbd59;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICES PAGE */

.service-grid {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-grid div {
  background: white;
  padding: 34px;
  border-radius: 24px;
  border-left: 6px solid #ffbd59;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  transition: 0.3s;
}

.service-grid div:hover {
  transform: translateY(-8px);
}

.service-grid h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.service-grid p {
  color: #555;
  line-height: 1.6;
}

/* CONTACT PAGE */

.contact-section {
  background: #183631;
  color: white;
  padding: 85px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.contact-section h2 {
  font-size: 44px;
  margin-bottom: 18px;
  color: white;
}

.contact-section p {
  font-size: 18px;
  line-height: 1.7;
}

/* FORMS */

form {
  background: white;
  padding: 32px;
  border-radius: 24px;
  display: grid;
  gap: 15px;
  box-shadow: 0 14px 35px rgba(0,0,0,.1);
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
}

textarea {
  height: 130px;
  resize: none;
}

/* ADMIN */

.admin-wrapper {
  padding: 60px 8%;
  display: grid;
  gap: 35px;
}

.admin-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.admin-card h1 {
  margin-bottom: 25px;
  font-size: 32px;
  color: #183631;
}

.admin-form {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 650px;
  margin: 0;
  background: #fffaf2;
  padding: 25px;
  border-radius: 20px;
}

.admin-form label {
  font-weight: bold;
  color: #183631;
}

.admin-form button {
  width: fit-content;
}

.admin-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* LOGIN */

.login-page {
  min-height: 100vh;
  background: #183631;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.login-page form {
  width: 100%;
  max-width: 420px;
}

.login-page h2 {
  color: #183631;
  text-align: center;
}

.error {
  color: red;
  text-align: center;
}

.delete-btn {
  display: inline-block;
  margin-top: 15px;
  background: #b00020;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  max-width: 780px;
  width: 96%;
  background: white;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.modal-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.modal-content {
  padding: 30px;
}

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 18px;
  line-height: 1.7;
}

.close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 28px;
}

/* FOOTER */

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 34px 8%;
}

footer h3 {
  color: #ffbd59;
  margin-bottom: 8px;
}

/* MOBILE */

@media(max-width: 900px) {
  header {
    flex-direction: column;
    gap: 14px;
    padding: 18px 5%;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin: 0;
  }

  .hero {
    min-height: 620px;
    padding: 75px 6%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .desc {
    font-size: 18px;
  }

  .service-preview,
  .process-grid,
  .projects-grid,
  .why-section,
  .split,
  .service-grid,
  .contact-section,
  .admin-projects {
    grid-template-columns: 1fr;
  }

  .intro h2,
  .featured h2,
  .process h2,
  .why-section h2,
  .cta h2,
  .cta-section h2,
  .split h2,
  .contact-section h2 {
    font-size: 34px;
  }

  .page-title h1 {
    font-size: 38px;
  }

  .project-card img,
  .modal-box img {
    height: 230px;
  }

  .image-box {
    height: 280px;
  }
}
.about-hero {
  min-height: 420px;
  background:
    linear-gradient(rgba(24,54,49,.82), rgba(24,54,49,.82)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 90px 8%;
  display: flex;
  align-items: center;
}

.about-hero h1 {
  font-size: 56px;
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.about-hero p {
  font-size: 20px;
}

.about-content {
  padding: 85px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-text h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
}

.about-img {
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 18px 18px 0 #ffbd59;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-img {
    height: 280px;
  }
}
/* SERVICES PAGE */

.services-hero {
  min-height: 420px;
  background:
  linear-gradient(rgba(24,54,49,.85), rgba(24,54,49,.85)),
  url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 90px 8%;
  display: flex;
  align-items: center;
}

.services-hero h1 {
  font-size: 58px;
  max-width: 800px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.services-hero p {
  font-size: 20px;
}

.services-section {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card div {
  padding: 25px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  line-height: 1.7;
}

.services-benefits {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: #fffaf2;
  align-items: center;
}

.services-benefits h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.services-benefits p {
  font-size: 18px;
  line-height: 1.7;
}

.benefit-box {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.benefit-box p {
  margin-bottom: 18px;
  font-size: 20px;
}

@media(max-width:900px){

.services-section,
.services-benefits{
    grid-template-columns:1fr;
}

.services-hero h1{
    font-size:38px;
}

}
/* CONTACT PAGE */

.contact-hero {
  min-height: 420px;
  background:
    linear-gradient(rgba(24,54,49,.85), rgba(24,54,49,.85)),
    url("https://images.unsplash.com/photo-1600607687644-c7171b42498b");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 90px 8%;
  display: flex;
  align-items: center;
}

.contact-hero h1 {
  font-size: 58px;
  max-width: 850px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.contact-hero p {
  font-size: 20px;
}

.contact-page {
  padding: 85px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
  background: #fffaf2;
}

.contact-details h2,
.contact-form h2,
.map-section h2 {
  font-size: 42px;
  margin-bottom: 18px;
  color: #183631;
}

.contact-details > p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-box {
  background: white;
  padding: 22px 26px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
  border-left: 5px solid #ffbd59;
}

.contact-box h3 {
  font-size: 21px;
  margin-bottom: 6px;
}

.contact-box p {
  color: #555;
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 35px;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.map-section {
  padding: 80px 8%;
  text-align: center;
  background: #f6f0e7;
}

.map-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.map-box {
  width: 100%;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media(max-width:900px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-details h2,
  .contact-form h2,
  .map-section h2 {
    font-size: 34px;
  }

  .map-box {
    height: 300px;
  }
}
.logo-only {
  display: flex;
  align-items: center;
}

.logo-only .logo {
  height: 90px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

header {
  padding: 10px 8%;
}
.logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo-only {
    display: flex;
    align-items: center;
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
}