/* =========================================================
   KOGAPLANNER — style.css
   Clean build: no duplicate rules, no markdown artifacts
========================================================= */

/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --dark:      #050505;
  --light:     #ffffff;
  --text:      #111111;
  --text-light:#666666;
  --bg:        #f5f3ef;

  --primary:   #c59d5f;
  --primary-dark: #a37d3f;

  --border:    rgba(0,0,0,.08);

  --shadow:       0 10px 30px rgba(0,0,0,.06);
  --shadow-hover: 0 18px 45px rgba(0,0,0,.12);

  --radius: 24px;
}


/* =========================================================
   GLOBAL
========================================================= */

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

.container {
  width: min(1280px, 92%);
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}


/* =========================================================
   HEADER
========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: .4s;
}

header.scrolled {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 74px;
  width: auto;
  transition: .3s;
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #111;
  transition: .3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1200;
  position: relative;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #111;
  transition: .3s;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 1100;
  transition: .45s cubic-bezier(.22,1,.36,1);
  box-shadow: -10px 0 40px rgba(0,0,0,.08);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  position: relative;
  transition: .3s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* =========================================================
   TABLET & MOBILE NAVIGATION
========================================================= */

@media(max-width:992px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  padding: 20px;
  background: var(--bg);
}

.hero-wrapper {
  position: relative;
  width: min(1420px, 95%);
  margin: auto;
  min-height: 100vh;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 32px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 2s cubic-bezier(.4,0,.2,1), transform 7s ease-out;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.40) 45%,
    rgba(0,0,0,.16) 100%
  );
  z-index: 3;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  padding-top: 230px;
  padding-bottom: 140px;
  color: #fff;
}

.hero-title,
.hero-text {
  transition:
    opacity 1s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.22,1,.36,1),
    filter 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform, filter;
}

.hero-title {
  font-size: clamp(3rem,6vw,6rem);
  line-height: .95;
  font-family: 'Times New Roman', serif;
  margin-bottom: 30px;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
  filter: blur(0px);
}

.hero-text {
  font-size: 18px;
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(255,255,255,.92);
  filter: blur(0px);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  margin-bottom: 24px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 6;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: .3s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: .35s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
  transform: translateY(-4px);
}


/* =========================================================
   GENERAL SECTION
========================================================= */

section {
  padding: 120px 0;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
  text-align: center;
  max-width: 820px;
  margin: auto auto 70px;
}

.section-title span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.section-title p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
}


/* =========================================================
   SERVICES SECTION
========================================================= */

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

.service-card {
  background: #fff;
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  transition: .4s;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}


/* =========================================================
   PROJECT SECTION
========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: stretch;
}

.project-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: .4s;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-card img {
  height: 260px;
  object-fit: cover;
  transition: .5s;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-content {
  padding: 28px;
}

.project-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.project-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.project-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.project-content ul li {
  font-size: 13px;
  line-height: 2;
  color: #666;
}

.project-content p {
  font-size: 14px;
  line-height: 1.9;
  color: #777;
}


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

.cta {
  background: #111;
  color: #fff;
  text-align: center;
}

.cta .section-title {
  margin-bottom: 35px;
}

.cta .section-title h2,
.cta .section-title p {
  color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  background: #050505;
  color: #fff;
  padding: 80px 0 60px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-desc {
  line-height: 1.9;
  opacity: .7;
  max-width: 500px;
  font-size: 15px;
}

footer h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

footer a,
footer p {
  opacity: .75;
  transition: .3s;
  font-size: 15px;
}

footer a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
  transition: .3s;
  font-size: 18px;
}

.footer-social-link:hover {
  opacity: 1;
  border-color: var(--primary);
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 50px;
  padding-top: 28px;
  text-align: center;
  font-size: 13px;
  opacity: .45;
}


/* =========================================================
   PAGE HERO (inner pages)
========================================================= */

.page-hero {
  padding: 180px 0 90px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 620px;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

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

.about-intro-text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 18px;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img img {
  height: 500px;
  object-fit: cover;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  text-align: center;
}

.stat-card .stat-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

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

.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: .4s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-card img {
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 24px 28px;
}

.team-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.team-info span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}

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

.value-card {
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-detail-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 46px;
  border: 1px solid rgba(0,0,0,.06);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: .4s;
}

.service-detail-card:hover::before {
  transform: scaleY(1);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-detail-icon {
  font-size: 36px;
  margin-bottom: 22px;
}

.service-detail-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-detail-card > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-features li {
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}

.process-step {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--primary);
  opacity: .4;
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.process-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}


/* =========================================================
   BLOGS PAGE
========================================================= */

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

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: .4s;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-card img {
  height: 220px;
  object-fit: cover;
  transition: .5s;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(197,157,95,.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-light);
}

.blog-content h3 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .3s;
}

.blog-read-more:hover {
  gap: 10px;
}

.blog-featured {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 50px;
  box-shadow: var(--shadow);
}

.blog-featured img {
  height: 400px;
  object-fit: cover;
}

.blog-featured-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-content h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.blog-featured-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 28px;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197,157,95,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 16px;
  color: var(--text);
  transition: .3s;
}

.contact-item-text a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 50px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 16px 18px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: .3s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197,157,95,.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 36px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-light);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  margin-top: 40px;
  border: 1px solid rgba(0,0,0,.06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* =========================================================
   ANIMATION
========================================================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(.22,1,.36,1);
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   TABLET RESPONSIVE — 1200px
========================================================= */

@media(max-width:1200px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step::after { display: none; }
  .blogs-grid { grid-template-columns: repeat(2,1fr); }
}


/* =========================================================
   TABLET — 992px
========================================================= */

@media(max-width:992px) {
  .navbar { padding: 14px 0; }
  .logo img { height: 55px; }
  .nav-links { display: none; }

  .services-grid,
  .projects-grid,
  .footer-grid,
  .team-grid,
  .values-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured img { height: 280px; }

  .hero-content {
    padding-top: 190px;
    padding-bottom: 110px;
  }

  .hero-title { font-size: 4rem; }

  section { padding: 100px 0; }
}


/* =========================================================
   MOBILE — 768px
========================================================= */

@media(max-width:768px) {
  section { padding: 75px 0; }
  .container { width: min(92%, 100%); }

  header { background: rgba(255,255,255,.95); }
  .navbar { padding: 12px 0; }
  .logo img { height: 50px; }

  .hero { padding: 0; }
  .hero-wrapper {
    width: 100%;
    min-height: 92vh;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-slider { border-radius: 0; }
  .hero-wrapper::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.50) 45%,
      rgba(0,0,0,.70) 100%
    );
  }
  .hero-content {
    max-width: 100%;
    padding-top: 140px;
    padding-bottom: 70px;
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 92vh;
  }
  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .hero-title {
    font-size: clamp(2rem,9vw,2.8rem);
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 320px;
    margin-bottom: 18px;
  }
  .hero-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: 300px;
  }

  .btn {
    padding: 13px 24px;
    font-size: 13px;
    border-radius: 8px;
  }

  .section-title { margin-bottom: 42px; }
  .section-title h2 {
    font-size: 30px;
    line-height: 1.25;
  }
  .section-title p {
    font-size: 14px;
    line-height: 1.8;
  }

  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 24px; border-radius: 18px; }
  .service-card h3 { font-size: 20px; }

  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .project-card { border-radius: 18px; }
  .project-card img { height: 210px; }
  .project-content { padding: 22px; }
  .project-content h3 { font-size: 22px; }

  .cta { padding: 80px 0; }

  footer { padding: 55px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-logo { width: 220px; }
  .footer-desc { font-size: 14px; }

  .mobile-menu {
    width: 100%;
    padding: 120px 35px;
  }
  .mobile-menu a { font-size: 20px; }

  .page-hero { padding: 140px 0 60px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .about-intro-text h2 { font-size: 28px; }
  .about-img img { height: 320px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 24px 16px; }
  .stat-card .stat-num { font-size: 36px; }

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

  .blogs-grid { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 28px; }
  .blog-featured-content h2 { font-size: 22px; }

  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { flex-direction: column; align-items: stretch; }

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