/* --- [1. DESIGN TOKENS] --- */
:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #1a1a1a;
  --light-grey: #f4f4f4;
  --accent: #ffffff;
  /* Mono Theme */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: #e3e2dd;
  color: var(--black);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

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

h2 {
  text-transform: uppercase;
  letter-spacing: -1px;
}


/* --- [2. NAVBAR] --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav-links a,
.nav-btn,
.logo {
  text-decoration: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.center-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}


.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  text-transform: lowercase;
}

.logo span {
  color: #888;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-btn {
  background: #fff;
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 1 !important;

}

.nav-btn:hover {
  background: #eee;
}

/* --- [3. HERO] --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #000, #111);
  margin-left: -100px;
}

.hero-content h1 {
  font-size: clamp(8rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin: 20px 0;
  text-transform: uppercase;
  color: #fff;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.hero-content p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: 10px;
}

.hero-btns {
  margin-top: 70px;
  cursor: pointer;
}

.hero-btns:hover {
  transform: scale(1.05);
}

.reveal-text {
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #888;
  font-size: 0.8rem;
}

.btn-main {
  padding: 15px 40px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  border: 1px solid #fff;
  transition: var(--transition);
  margin-right: 15px;
}



.btn-sub {
  padding: 15px 40px;
  border: 1px solid #555;
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  display: inline-block;
  transition: var(--transition);
}



/* ================================
   HERO CLICK FIX (IMPORTANT)
================================ */

/* Ensure hero is positioned correctly */
.hero {
  position: relative;
}

/* Disable click blocking from overlays */
.hero::before,
.hero::after {
  pointer-events: none;
}

/* Bring hero content above overlays */
.hero-content {
  position: relative;
  z-index: 10;
}

/* Make buttons clickable */
.btn-main,
.btn-sub {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}

/* Optional: button hover polish */
.btn-sub {
  cursor: pointer;
}


/* --- [4. SERVICES] --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.s-card {
  background: var(--grey);
  padding: 40px;
  border-radius: 10px;
  position: relative;
  border: 1px solid #222;
  transition: var(--transition);
}

.s-card:hover {
  border-color: #fff;
  transform: translateY(-10px);
}

.s-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: 800;
  color: #333;
  font-size: 1.5rem;
}

.s-card i {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  color: #888;
  margin-bottom: 20px;
}

.s-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.s-card p {
  font-size: 0.9rem;
  color: #ccc;
}


/* ================================
   LOGO CIRCLE
================================ */

.logo-circle {
  width: 100%;
  border-radius: 20px;
  padding: 50px;
  width: 500px;
  height: 500px;
  align-items: center;
  display: grid;
  margin-top: -330px;
}

.logo-circle img {
  width: 150%;
  height: 150%;
  object-fit: contain;
  margin: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -250px;
}


/* ================================
   FEATURES LIST (ABOUT SECTION)
================================ */

.features {
  margin-top: 32px;
  margin-left: -250px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px 32px;
}

/* SINGLE FEATURE ITEM */
.features .f-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

/* ICON STYLE */
.features .f-item i {
  font-size: 18px;
  color: #000;
  min-width: 22px;
}

/* HOVER INTERACTION */
.features .f-item {
  transition: transform 0.3s ease, color 0.3s ease;
}

.features .f-item:hover {
  transform: translateX(6px);
  color: #000;
}



/* --- [6. ARCHIVE / PORTFOLIO] --- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.s-card h3 {
  color: #ffffff;
}

.s-card:hover h3 {
  color: #605d5d;
}

.s-card i {
  transition: transform 0.3s ease;
}

.s-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

.s-card:hover h3 {
  color: #605d605d;
}

.s-card {
  transition: transform 0.3s ease;
}

.s-card:hover {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.s-num {
  color: #ffffff;
}

div.s-card {
  background: #1d1a1a;
}

.work-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;

}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);

}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.work-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: 0 10px;

}

.work-item:hover .work-overlay {
  opacity: 1;

}

.work-item:hover img {
  transform: scale(1.1);

}

/* --- [7. CONTACT] --- */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);

}

.contact-box h2 {
  color: #000;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  background: #f4f4f4;
  border: 1px solid #ddd;
  outline: none;
  font-family: inherit;
}

.contact-form button {
  padding: 15px 30px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.contact-form button:hover {
  background: #333;
}

.c-detail {
  margin: 15px 0;
  font-weight: 600;
}

/* --- [8. MODAL] --- */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  padding-top: 60px;
}

.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 50px;
  border: 1px solid #333;
  width: 80%;
  max-width: 600px;
  text-align: center;
  border-radius: 20px;
}

.close {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

















/* ---  LOGO SECTION --- */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.mission-title {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-left: -250px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, #111, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-title span {
  display: block;
  font-size: 20px;
  letter-spacing: 6px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  margin-left: -250px;
}













/* ===== SERVICES SECTION ===== */
.services {
  background: #f3f1ec;
  padding: 140px 0;
  margin-top: -40px;
}

/* ===== PREMIUM TITLE (SAME AS MISSION) ===== */
.premium-title {
  text-align: center;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 90px;

  background: linear-gradient(180deg, #111, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.premium-title span {
  display: block;
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;

  -webkit-text-fill-color: initial;
}

.premium-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #111;
  margin: 30px auto 0;
  border-radius: 2px;
}






.premium-title {
  text-align: center;
  margin-top: -50px;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 90px;

  background: linear-gradient(180deg, #111, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}






/* ===== CONTACT SECTION ===== */
.contact {
  background: #e9e7e2;
  padding: 140px 0;
}

.contact-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
}

/* ===== LEFT CONTENT ===== */
.contact-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin: 25px 0 40px;
  max-width: 420px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.c-detail i {
  font-size: 16px;
}

.c-detail:hover {
  color: #000;
}

/* WhatsApp highlight */
.c-detail.whatsapp {
  color: #25D366;
}

.c-detail.whatsapp:hover {
  text-decoration: underline;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
}

/* Submit Button */
.btn-main {
  margin-top: 10px;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}



/* ===== END OF AGENCY.CSS FOOTER ===== */

/* ===== FOOTER ===== */
.footer {
  background: transparent;
  padding: 35px 0 50px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;

}

/* Text */
.footer-copy {
  font-size: 13px;
  color: #555;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  background: #000;
}






/* ===== ARCHIEVE ===== */
.work-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-overlay span {
  font-size: 16px;
  letter-spacing: 1px;
}






/* ========================
=======MEDIA QUERIES=======
======================== */


/* ================================
   1. DESIGN TOKENS & GLOBAL
================================ */
:root {
  --black: #000;
  --white: #fff;
  --grey: #1a1a1a;
  --bg: #e3e2dd;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--black);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 5%;
}

.section {
  padding: 120px 0;
}

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

/* ================================
   2. NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.logo span {
  color: #888;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-btn {
  background: #fff;
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 5px;
}

/* ================================
   3. HERO
================================ */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #000, #111);
}

.hero-content h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.hero-content p {
  color: #ccc;
  margin: 25px 0;
  max-width: 800px;
}

.hero-btns {
  margin-top: 40px;
}

.btn-main,
.btn-sub {
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.btn-main {
  background: #fff;
  color: #000;
}

.btn-sub {
  border: 1px solid #555;
  color: #fff;
  margin-left: 15px;
}

/* ================================
   4. PREMIUM TITLES
================================ */
.premium-title {
  text-align: center;
  font-size: 80px;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 90px;
  background: linear-gradient(180deg, #111, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-title span {
  display: block;
  font-size: 20px;
  letter-spacing: 6px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
}

/* ================================
   5. MISSION / ABOUT
================================ */
/* =========================
   MOBILE RESPONSIVE (≤600px)
   ========================= */
@media (max-width: 600px) {

  /* ===== NAVBAR ===== */
  .navbar {
    padding: 12px 16px;
  }

  .navbar .logo {
    font-size: 18px;
  }

  .navbar .btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  /* ===== HERO SECTION ===== */
  .hero {
    margin-left: 0;
    min-height: auto;
    padding: 120px 16px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  /* ===== ABOUT / MISSION ===== */
  .about {
    padding: 60px 16px;
    text-align: center;
  }

  .about h2 {
    font-size: 26px;
  }

  .about p {
    font-size: 14px;
  }

  /* ===== ICON LIST ===== */
  .about ul {
    margin-top: 30px;
  }

  .about li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .about li i {
    font-size: 16px;
  }

  /* ===== GRID FIX ===== */
  .container,
  .container-grid,
  .container-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ===== SERVICES / WORK / CONTACT ===== */
  section {
    padding: 70px 16px;
  }

  /* ===== BUTTONS ===== */
  .btn,
  button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

}



/* ================================
   6. SERVICES
================================ */
.services {
  background: #f3f1ec;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.s-card {
  background: #1d1a1a;
  padding: 40px;
  border-radius: 12px;
  transition: var(--transition);
}

.s-card:hover {
  transform: translateY(-10px);
}

.s-card h3 {
  color: #fff;
}

/* ================================
   7. PORTFOLIO
================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.work-item {
  position: relative;
  display: block;
  cursor: pointer;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-overlay span {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;

  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;

  transition: all 0.3s ease;
}

.work-item:hover .work-overlay span {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ================================
   8. CONTACT
================================ */

/* ===== FIX HERO + CONTACT TITLE (MOBILE) ===== */
@media (max-width: 600px) {

  /* HERO FIX */
  .hero {
    padding: 100px 16px 50px;   /* tighter + balanced */
    min-height: auto;
    text-align: center;
  }

  /* REMOVE NEGATIVE MARGIN */
  h2.premium-title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.3;
  }

  /* SUB TEXT */
  .contact-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* CONTACT BOX LAYOUT */
  .container.contact-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* CONTACT LINKS */
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}






/* ==============================
   MOBILE OPTIMIZATION (≤600px)
   ============================== */
@media (max-width: 600px) {

  /* ===== GLOBAL ===== */
  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 16px;
  }

  /* ===== NAVBAR ===== */
  .navbar {
    padding: 12px 16px;
  }

  .navbar .logo {
    font-size: 18px;
  }

  .navbar .btn,
  .navbar button {
    font-size: 14px;
    padding: 8px 14px;
  }

  /* ===== HERO / CONTACT CTA ===== */
  .hero {
    margin-left: 0;
    min-height: auto;
    padding: 110px 16px 60px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1,
  .hero h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }

  /* ===== CONTACT INFO ===== */
  .hero .contact-info,
  .hero a {
    font-size: 14px;
  }

  /* ===== FORM ===== */
  form {
    width: 100%;
    margin-top: 24px;
  }

  input,
  textarea {
    width: 100%;
    font-size: 14px;
    padding: 14px;
    border-radius: 10px;
  }

  textarea {
    min-height: 120px;
  }

  /* ===== BUTTONS ===== */
  button,
  .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
  }

  /* ===== GRID FIX ===== */
  .container,
  .container-grid,
  .container-grid-2,
  .contact-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ===== FOOTER ===== */
  footer {
    text-align: center;
    padding: 40px 16px;
  }
}





@media (max-width: 600px) {

  /* ---------- GLOBAL ---------- */
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 6%;
  }

  h2 {
    font-size: 36px !important;
    text-align: center;
  }

  /* ---------- NAVBAR ---------- */
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
    color: #fff;
    font-size: 22px;
  }

  /* ---------- HERO ---------- */
  .hero {
    margin-left: 0;
    height: auto;
    padding: 140px 0 100px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 14px;
    margin: 20px auto;
  }

  .hero-btns {
    flex-direction: column;
    gap: 14px;
    margin-top: 40px;
  }

  .btn-main,
  .btn-sub {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }

  /* ---------- ABOUT / MISSION ---------- */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-title {
    font-size: 42px;
    margin-left: 0;
    text-align: center;
  }

  .mission-content p {
    font-size: 15px;
    margin-left: 0;
    text-align: center;
  }

  .logo-circle {
    width: 260px;
    height: 260px;
    margin: 0 auto;
    padding: 20px;
  }

  .logo-circle img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  /* ---------- FEATURES ---------- */
  .features {
    grid-template-columns: 1fr;
    margin-left: 0;
    text-align: left;
  }

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

  .s-card {
    padding: 30px;
  }

  /* ---------- ARCHIVE ---------- */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* ---------- CONTACT ---------- */
  .contact-box {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    gap: 40px;
  }

  .contact-desc {
    text-align: center;
    margin: 0 auto 30px;
  }

  .contact-links {
    align-items: center;
  }

  .contact-form button {
    width: 100%;
  }

  /* ---------- FOOTER ---------- */
  .footer-inner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}






/* =========================
   CONTACT SECTION
========================= */

.contact {
  background: #efede8;
  padding: 120px 0;
}

.contact-box {
  max-width: 1100px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;

  padding: 64px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* ===== LEFT SIDE ===== */

.premium-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.premium-title span {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
}

.work-item img {
  height: 260px;
  object-fit: cover;
}

.work-item:hover img {
  transform: scale(1.05);
}


.whatsapp-cta {
  display: inline-block;
  margin-top: 16px;
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {

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

  .work-item img {
    height: 220px;
  }

  .hero {
    padding: 120px 16px 80px;
    text-align: center;
  }

  .hero p {
    font-size: 15px;
  }
}


