/*
Theme Name: Portfolio Olivia
Theme URI: https://example.com/portfolio-olivia
Author: Copilot
Description: A polished WordPress conversion of the Olivia portfolio site.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: portfolio-olivia
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #151515;
  --paper: #f7f6f3;
  --accent: #c68100;
  --olive: #4f7602;
  --forest: #234a24;
}

body {
  background:
    radial-gradient(circle at 6% 15%, rgba(244, 173, 3, 0.2), transparent 36%),
    var(--paper);
  font-family:
    "Poppins", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
  color: var(--ink);
}

/* ============ NAVBAR ============ */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 10px auto;
  padding: 0.85rem 1.25rem;
  background-color: #2d5a34;
  border-radius: 999px;
}

.nav-leftside {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.nav-leftside img {
  width: clamp(36px, 4.5vw, 56px);
  height: auto;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-leftside h2 {
  margin-left: 0;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav-centeritem {
  display: flex;
  align-items: center;
}

.nav-centeritem ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.nav-centeritem ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.nav-centeritem ul li a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-contact-button {
  display: flex;
  align-items: center;
}

.nav-contact-button button,
.nav-contact-button .nav-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.nav-contact-button button:hover,
.nav-contact-button .nav-contact-link:hover {
  background-color: #333;
  color: #fff;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============ HERO SECTION ============ */
.hero-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.25rem 1rem 1.25rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1rem;
  min-height: min(78vh, 700px);
}

.hero-left {
  padding: 0.75rem 0.75rem 0.75rem 0.25rem;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.22rem 0.58rem;
  background: #efe7d4;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  border-left: 2px solid #d9b367;
}

.hero-left h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-left h1 span {
  color: #c68100;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.hero-copy {
  margin-top: 1rem;
  max-width: 520px;
  color: #5a5a5a;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
}

.btn-primary:hover {
  background: #1a3b1b;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #d5d5d5;
}

.btn-secondary:hover {
  border-color: #888;
}

.hero-right {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  width: 260px;
  height: 260px;
  left: 26%;
  top: 26%;
  border-radius: 50%;
  background: var(--accent);
}

.hero-photo {
  position: relative;
  width: min(480px, 92%);
  z-index: 2;
  object-fit: cover;
  border-radius: 0 0 220px 220px;
  filter: saturate(1.03);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  background: var(--accent);
  color: #242424;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.35rem 0.62rem;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
}

.badge-role {
  right: 20px;
  top: 64%;
}

.badge-product {
  left: 12px;
  bottom: 30px;
  background: #2f5f2e;
  color: #fff;
}

.hero-seal {
  position: absolute;
  right: 42px;
  top: 20%;
  z-index: 3;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #296b37;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 5px solid #c68100;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ============ HERO STRIP ============ */
.hero-strip {
  margin-top: -0.7rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #c68100;
}

.hero-strip-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #c68100;
  min-height: 58px;
  color: #1a1a1a;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 1rem;
}

.track {
  display: flex;
  gap: 1rem;
  animation: scroll-left 10s linear infinite;
}

.hero-strip-track .dot {
  color: #2a5d29;
  font-weight: 900;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ============ SERVICES SECTION ============ */
.services-section {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  padding: 0 1rem;
}

.services-container {
  padding: 2rem 0;
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-title-group {
  flex: 1;
  min-width: 300px;
}

.services-label {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
}

.services-title-group h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.services-title-group h2 .highlight {
  color: var(--accent);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: var(--forest);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 220ms ease;
}

.btn-view-all:hover {
  background: #1a3b1b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(35, 74, 36, 0.2);
}

.circle-badge {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  transition: transform 220ms ease;
}

.btn-view-all:hover .circle-badge {
  transform: rotate(90deg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e8e8e8;
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 320ms ease;
}

.service-card:hover {
  background: #fff;
  border-color: #d5d5d5;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: #f0f0f0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--forest);
  margin-bottom: 1.25rem;
  transition: all 280ms ease;
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: #000;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Service detail page */
.service-detail-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* SECTION */
.about-section {
  padding: 80px 0;
}

/* VIDEO */
.service-detail-video-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-video-banner img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.service-detail-video-banner:hover img {
  transform: scale(1.05);
}

.service-detail-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* PLAY BUTTON */
.service-detail-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.service-detail-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* CONTENT */
.service-detail-about-content {
  margin-top: 40px;
}

.service-detail-about-content h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.service-detail-intro-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.service-detail-intro-row .service-detail-icon {
  background: #f3b106;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.service-detail-intro-row p {
  color: #666;
  line-height: 1.6;
}

/* SUB */
.service-detail-about-content h3 {
  margin-top: 25px;
  font-size: 20px;
  color: #222;
}

.service-detail-desc {
  margin-top: 10px;
  color: #666;
  line-height: 1.6;
}

/* FEATURES */
.service-detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.service-detail-feature span {
  background: #f3b106;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 80%;
  max-width: 800px;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: -30px;
  right: 0;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .service-detail-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-detail-features {
    grid-template-columns: 1fr;
  }

  .service-detail-intro-row {
    flex-direction: column;
  }
}

.industries-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* SECTION */
.industries-section {
  padding: 80px 0;
  text-align: center;
}

/* PREVIEW STRIP */
.industries-preview-strip {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.industries-preview-strip img {
  width: 23%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.industries-preview-strip img:hover {
  transform: translateY(-5px) scale(1.03);
}

/* HEADING */
h2 {
  font-size: 32px;
  color: #222;
  margin-bottom: 15px;
}

.industries-desc {
  max-width: 600px;
  margin: auto;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.industries-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.industries-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* BADGE */
.industries-badge {
  width: 40px;
  height: 40px;
  background: #1b4332;
  color: #f3b106;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.industries-card h3 {
  margin-bottom: 10px;
  color: #222;
}

.industries-card p {
  font-size: 14px;
  color: #666;
}

/* SHOW ANIMATION */
.industries-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-preview-strip img {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-preview-strip {
    flex-direction: column;
    align-items: center;
  }

  .industries-preview-strip img {
    width: 90%;
  }
}

/* Benefits SECTION */
.benefits-section {
  background: #f5f5f5;
  padding: 80px 20px;
}

.benefits-container {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.benefits-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

/* LIST */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ITEM */
.benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

/* STAGGER */
.benefits-item:nth-child(1) {
  animation-delay: 0.2s;
}
.benefits-item:nth-child(2) {
  animation-delay: 0.4s;
}
.benefits-item:nth-child(3) {
  animation-delay: 0.6s;
}
.benefits-item:nth-child(4) {
  animation-delay: 0.8s;
}

/* ICON */
.benefits-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3b106 50%, #1b4332 50%);
  flex-shrink: 0;
  margin-top: 5px;
}

/* TEXT */
.benefits-item p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* HOVER */
.benefits-item:hover {
  transform: translateX(5px);
  transition: 0.3s ease;
}

/* ANIMATION */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  h2 {
    font-size: 24px;
  }

  .benefits-desc {
    font-size: 14px;
  }
}
.learn-more {
  display: inline-block;
  text-decoration: none;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 220ms ease;
}

.learn-more::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width 280ms ease;
}

.service-card:hover .learn-more {
  color: var(--accent);
}

.service-card:hover .learn-more::after {
  background: var(--accent);
  width: 100%;
}

/* SECTION */
.floating-cta-section {
  position: relative;
  background: var(--forest);
  padding: 120px 20px 180px;
  text-align: center;
  overflow: hidden;
}

/* HEADING */
.floating-cta-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  max-width: 800px;
  margin: auto;
  line-height: 1.3;
}

.floating-cta-content span {
  color: #f3b106;
}

/* BUTTON */
.floating-cta-btn {
  margin-top: 30px;
  background: #1b4332;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.floating-cta-btn span {
  background: #f3b106;
  color: #000;
  border-radius: 50%;
  padding: 8px;
  display: flex;
}

.floating-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* TAGS CONTAINER */
.floating-tags {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 180px;
}

/* TAG BASE */
.tag {
  position: absolute;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

/* COLORS */
.green {
  background: #1b4332;
  color: white;
}

.yellow {
  background: #f3b106;
  color: #222;
}

/* POSITIONS (CURVED / ORGANIC) */
.t1 {
  left: 5%;
  bottom: 30px;
  transform: rotate(-5deg);
  animation-delay: 0s;
}
.t2 {
  left: 15%;
  bottom: 70px;
  transform: rotate(6deg);
  animation-delay: 1s;
}
.t3 {
  left: 25%;
  bottom: 20px;
  transform: rotate(-8deg);
  animation-delay: 2s;
}
.t4 {
  left: 35%;
  bottom: 80px;
  transform: rotate(5deg);
  animation-delay: 3s;
}
.t5 {
  left: 50%;
  bottom: 40px;
  transform: rotate(-4deg);
  animation-delay: 1.5s;
}
.t6 {
  left: 60%;
  bottom: 90px;
  transform: rotate(7deg);
  animation-delay: 2.5s;
}
.t7 {
  left: 70%;
  bottom: 25px;
  transform: rotate(-6deg);
  animation-delay: 0.5s;
}
.t8 {
  left: 80%;
  bottom: 70px;
  transform: rotate(5deg);
  animation-delay: 1.2s;
}
.t9 {
  left: 40%;
  bottom: 10px;
  transform: rotate(-3deg);
  animation-delay: 2.8s;
}
.t10 {
  left: 85%;
  bottom: 30px;
  transform: rotate(4deg);
  animation-delay: 3.2s;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(var(--rot, 0deg));
  }
  50% {
    transform: translateY(-15px) rotate(var(--rot, 0deg));
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .floating-cta-content h1 {
    font-size: 32px;
  }

  .floating-tags {
    height: 120px;
  }

  .tag {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Hide some tags for clarity */
  .t6,
  .t8,
  .t10 {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-cta-content h1 {
    font-size: 26px;
  }

  .floating-cta-section {
    padding: 80px 20px 140px;
  }
}
/* ============ ABOUT SECTION ============ */
.about-section {
  margin-top: 3.75rem;
  background: #2d5a34;
  color: #f6f0d9;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 430px;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.about-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(440px, 100%);
  justify-self: center;
}

.about-photo {
  position: relative;
  z-index: 2;
  width: min(335px, 82vw);
  display: block;
  height: auto;
  object-fit: contain;
}

.about-orb {
  position: absolute;
  width: min(330px, 80vw);
  height: min(330px, 80vw);
  border-radius: 50%;
  background: #c68100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.about-tag {
  position: absolute;
  z-index: 3;
  padding: 0.38rem 0.76rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #2f2d1f;
  background: #f0d59a;
  border: 1px solid rgba(101, 78, 18, 0.18);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}

.about-tag-ui {
  left: 38%;
  bottom: 27%;
  transform: rotate(-3deg);
}

.about-tag-mobile {
  left: 10%;
  bottom: 19%;
  transform: rotate(-7deg);
}

.about-tag-web {
  right: 11%;
  bottom: 24%;
  transform: rotate(8deg);
}

.about-tag-product {
  left: 21%;
  bottom: 10%;
  transform: rotate(-10deg);
}

.about-content {
  padding-left: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d9d3bf;
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
}

.about-eyebrow::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #d9c25d;
  border-radius: 999px;
}

.about-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.about-content h2 span {
  color: #f4ad03;
}

.about-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 1.5rem;
  max-width: 560px;
  justify-items: center;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.about-stat strong {
  color: #f4ad03;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
}

.about-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  line-height: 1.4;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.about-download {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #e5bf4c;
  background: transparent;
  color: #f7e7b3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 220ms ease;
}

.about-download::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4ad03;
  color: #234a24;
  font-weight: 700;
  font-size: 1rem;
}

.about-download:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.about-plus {
  display: none;
}

.about-signature {
  color: #f4ad03;
  font-family: cursive;
  font-size: 1.3rem;
  transform: rotate(-4deg);
  letter-spacing: 0.02em;
}

/* =========Aboutme Page========= */

.about-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* SECTION */
.about-vm-section {
  padding: 90px 0;
  position: relative;
}

.about-vm-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 177, 6, 0.14),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(247, 246, 243, 0.96)
    );
  pointer-events: none;
}

/* HEADER */
.about-vm-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.about-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(243, 177, 6, 0.14);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-vm-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1d1d1d;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.about-vm-header h3 {
  color: #5f655f;
  margin-top: 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
}

/* CARDS */
.about-vm-cards {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.about-vm-card {
  background: rgba(255, 255, 255, 0.84);
  padding: 28px;
  border-radius: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex: 1;
  border: 1px solid rgba(35, 74, 36, 0.08);
  box-shadow: 0 18px 45px rgba(19, 28, 19, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  position: relative;
  overflow: hidden;
}

.about-vm-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.about-vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(19, 28, 19, 0.12);
  border-color: rgba(243, 177, 6, 0.28);
}

.about-vm-card .about-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--forest), #2f6a39);
  color: #f6e1a3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 12px 24px rgba(35, 74, 36, 0.18);
}

.about-vm-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.about-vm-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fdf3dc;
  color: #8c5a00;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-vm-card h4 {
  font-size: 1.35rem;
  line-height: 1.3;
  color: #172117;
}

.about-vm-card p {
  color: #5f655f;
  line-height: 1.75;
  font-size: 0.96rem;
}

/* VIDEO */
.about-video-wrapper {
  position: relative;
}

.about-video-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-video-banner img {
  width: 100%;
  transition: 0.5s;
}

.about-video-banner:hover img {
  transform: scale(1.05);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.about-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.about-stat {
  padding: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat h4 {
  font-size: 24px;
  color: #1b4332;
}

.about-stat p {
  font-size: 14px;
}

/* MODAL */
.about-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.about-modal-content {
  width: 80%;
  max-width: 800px;
  position: relative;
}

.about-modal-content iframe {
  width: 100%;
  height: 450px;
}

.about-close {
  position: absolute;
  top: -30px;
  right: 0;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* SCROLL ANIMATION */
.about-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.about-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-vm-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-vm-section {
    padding: 72px 0;
  }

  .about-vm-card {
    padding: 22px;
  }

  .about-vm-header {
    margin-bottom: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-vm-card {
    flex-direction: column;
  }

  .about-vm-header h2 {
    font-size: 1.75rem;
  }

  .about-vm-header h3 {
    font-size: 0.95rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

.awards-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* SECTION */
.awards-section {
  background: #f5f5f5;
  padding: 80px 0;
}

/* HEADER */
.awards-header {
  text-align: center;
  margin-bottom: 50px;
}

.awards-label {
  color: #777;
  font-size: 14px;
}

.awards-label h2 {
  font-size: 30px;
  color: #222;
}

.awards-label h2 span {
  color: #f3b106;
}

/* GRID */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ITEM */
.award-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

/* BADGE */
.awards-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3b106, #e0a400);
  color: #1b4332;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  font-size: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.awards-badge span {
  font-size: 10px;
}

/* CONTENT */
.awards-content small {
  color: #f3b106;
}

.awards-content h3 {
  margin: 5px 0;
  color: #222;
}

.awards-content p {
  color: #666;
  font-size: 14px;
}

/* HOVER */
.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* SCROLL ANIMATION */
.awards-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT / RIGHT ENTRY */
.awards-left {
  transform: translateX(-40px);
}
.awards-right {
  transform: translateX(40px);
}
.awards-reveal.active.awards-left,
.awards-reveal.active.awards-right {
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ TOOLS SECTION ============ */
.tools-section {
  margin-top: 3.75rem;
  background: #f9f7f4;
  padding: 3.5rem 1.25rem;
  overflow: hidden;
}

.tools-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tools-eyebrow {
  display: inline-block;
  padding: 0.22rem 0.58rem;
  background: #efe7d4;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  border-left: 2px solid #d9b367;
  color: var(--ink);
}

.tools-container h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.tools-highlight {
  color: var(--accent);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 0 1rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 220ms ease;
  border-radius: 30px;
  padding: 30px;
  background: #d5d5d5;
}

.tool-card:hover {
  transform: translateY(-6px);
}

.tool-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 220ms ease;
}

.tool-card:hover .tool-icon {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.tool-icon.figma {
  background: #fff;
}

.tool-icon.sketch {
  background: #fff;
}

.tool-icon.photoshop {
  background: #fff;
}

.tool-icon.aftereffects {
  background: #fff;
}

.tool-icon.storybook {
  background: #fff;
}

.tool-icon.invision {
  background: #fff;
}

.tool-percentage {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.tool-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
}
/* ============ PROJECTS SECTION ============ */
.projects-section {
  background: #f9f7f4;
  padding: 3rem 1rem;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-eyebrow {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  background: #efe7d4;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.projects-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
}

.projects-accent {
  color: var(--accent);
}

.projects-view-all {
  background: var(--forest);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-width: 160px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  position: relative;
}

.project-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.project-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.pill {
  background: #fff6e0;
  color: #6a4a00;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
}

.project-title {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}

.project-more {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
}

/* ======== Project Detail =========== */
.project-detail-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.project-detail-case-study {
  background: #f5f5f5;
  padding: 80px 0;
}

/* MOCKUPS */
.project-detail-mockups {
  display: flex;
  gap: 20px;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.project-detail-mockups img,
.project-detail-mockup img {
  width: 160px;
  border-radius: 20px;
  scroll-snap-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.project-detail-mockups img:hover {
  transform: scale(1.05);
}

/* VIDEO MOCKUP */
.project-detail-video-mockup {
  position: relative;
}

.project-detail-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  border: 2px solid white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: auto;
  cursor: pointer;
  transition: 0.3s;
}

.project-detail-play-btn:hover {
  transform: scale(1.1);
}

/* CONTENT */
.project-detail-content-row {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 30px;
}

.project-detail-left h2 {
  font-size: 28px;
  color: #222;
}

.project-detail-left span {
  color: #f3b106;
}

.project-detail-left p {
  color: #666;
  margin-top: 10px;
}

/* CARD */
.project-detail-info-card {
  background: #1b4332;
  color: white;
  padding: 20px;
  border-radius: 14px;
  min-width: 260px;
}

.project-detail-info-card span {
  color: #ccc;
  display: block;
  font-size: 13px;
}

.project-detail-info-card p {
  margin-bottom: 12px;
  color: #f3b106;
  font-weight: 500;
}

/* SECTIONS */
.project-detail-section {
  margin-top: 40px;
}

.project-detail-section h3 {
  margin-bottom: 10px;
}

.project-detail-section p {
  color: #666;
}

/* FEATURES */
.project-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.project-detail-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-detail-feature span {
  background: #f3b106;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 80%;
  max-width: 800px;
}

iframe {
  width: 100%;
  height: 450px;
}

.close {
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* ANIMATION */
.project-detail-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.project-detail-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project-detail-content-row {
    flex-direction: column;
  }
}

/* SECTION */
.project-detail-impact-section {
  background: #f5f5f5;
  padding: 80px 0;
}

/* VISUAL */
.project-detail-impact-visual {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT CARD */
.project-detail-impact-left {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  flex: 1;
  position: relative;
}

.project-detail-tag {
  background: #f3b106;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.project-detail-impact-left h3 {
  margin: 10px 0 20px;
}

/* PHONES */
.project-detail-phones {
  position: relative;
  height: 200px;
}

.phone {
  width: 120px;
  border-radius: 20px;
  position: absolute;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.p1 {
  left: 0;
  transform: rotate(-10deg);
}
.p2 {
  left: 80px;
  transform: rotate(5deg);
}
.p3 {
  left: 160px;
  transform: rotate(-5deg);
}

/* RIGHT GRID */
.project-detail-impact-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.project-detail-impact-right img {
  width: 100%;
  border-radius: 12px;
  transform: rotate(-3deg);
  transition: 0.3s;
}

.project-detail-impact-right img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.project-detail-impact-content {
  margin-top: 50px;
  text-align: center;
}

.project-detail-impact-content h2 {
  font-size: 28px;
}

.project-detail-impact-content p {
  max-width: 600px;
  margin: 10px auto;
  color: #666;
}

/* TESTIMONIAL */
.project-detail-testimonial {
  background: #fff;
  margin-top: 40px;
  padding: 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.project-detail-testimonial:hover {
  transform: translateY(-5px);
}

/* QUOTE */
.project-detail-quote {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 120px;
  color: rgba(0, 0, 0, 0.05);
}

/* RATING */
.project-detail-rating {
  color: #f3b106;
  font-size: 18px;
}

.project-detail-rating span {
  color: #333;
  margin-left: 10px;
}

/* TEXT */
.project-detail-text {
  margin: 15px 0;
  color: #666;
}

/* USER */
.project-detail-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-detail-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.project-detail-user h4 {
  font-size: 14px;
}

.project-detail-user p {
  font-size: 12px;
  color: #777;
}

/* ANIMATION */
.project-detail-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
}

.project-detail-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project-detail-impact-visual {
    flex-direction: column;
  }

  .project-detail-phones {
    height: 180px;
  }
}

/* Service page */
.Servicepagehero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 4.5rem 1.25rem 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #f6f0d9 0%, #fffdf4 100%);
}

.Servicepagehero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-breadcrumb {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.service-hero-copy {
  max-width: 680px;
  color: #5e645f;
  line-height: 1.7;
}

.Servicepagestrip {
  width: 100%;
  display: flex;
  justify-content: center;
}

.services-page-section {
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

.services-page-header {
  align-items: end;
}

.services-page-summary {
  max-width: 420px;
  color: #666;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ============ TABLET (1024px) ============ */
@media (max-width: 1024px) {
  .nav-container {
    border-radius: 28px;
  }

  .nav-centeritem ul li a {
    font-size: 0.95rem;
  }

  .nav-contact-button button {
    font-size: 0.95rem;
  }

  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    padding-top: 0.6rem;
  }

  .hero-left {
    padding: 0.5rem;
  }

  .hero-eyebrow,
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right {
    min-height: 360px;
  }

  .hero-orb {
    width: 220px;
    height: 220px;
    left: 50%;
    transform: translateX(-50%);
    top: 28%;
  }

  .hero-photo {
    width: min(420px, 90%);
  }

  .hero-seal {
    right: 16%;
    top: 14%;
  }

  .badge-role {
    right: 12%;
  }

  .badge-product {
    left: 14%;
  }

  .hero-strip-track {
    justify-content: center;
    overflow-x: auto;
  }

  .hero-strip-track::-webkit-scrollbar {
    display: none;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-view-all {
    width: 30%;
    justify-content: center;
    align-self: flex-start;
    min-width: 160px;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1rem 2.75rem;
  }

  .about-visual {
    order: 0;
    min-height: 330px;
    width: min(440px, 100%);
  }

  .about-content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    width: 100%;
    justify-items: center;
  }

  .about-actions {
    justify-content: center;
  }

  .tools-container h2 {
    font-size: 2rem;
  }

  .tools-grid {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1.5rem;
  }
  .tool-icon {
    width: 64px;
    height: 64px;
  }
}

/* ============ MOBILE (768px) ============ */
@media (max-width: 768px) {
  .nav-container {
    border-radius: 20px;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .nav-leftside {
    width: calc(100% - 44px);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-centeritem {
    display: none;
    width: 100%;
    order: 3;
  }

  .nav-centeritem.open {
    display: block;
  }

  .nav-centeritem ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding-top: 0.65rem;
  }

  .nav-centeritem ul li a {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem 0.75rem;
  }

  .nav-contact-button {
    display: none;
    width: 100%;
    justify-content: center;
    order: 4;
    margin-top: 0.35rem;
  }

  .nav-centeritem.open + .nav-contact-button {
    display: flex;
  }

  .hero-page {
    padding: 0.25rem 0.75rem 1rem;
  }

  .hero-left h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .hero-copy {
    font-size: 0.92rem;
  }

  .hero-right {
    min-height: 300px;
  }

  .hero-orb {
    width: 180px;
    height: 180px;
    top: 30%;
  }

  .hero-seal {
    width: 54px;
    height: 54px;
    font-size: 0.85rem;
    border-width: 4px;
    right: 10%;
    top: 15%;
  }

  .hero-badge {
    font-size: 0.66rem;
    padding: 0.28rem 0.52rem;
  }

  .badge-role {
    right: 6%;
    top: 66%;
  }

  .badge-product {
    left: 9%;
    bottom: 14px;
  }

  .hero-strip {
    border-radius: 16px;
  }

  .hero-strip-track {
    min-height: 50px;
    font-size: 0.9rem;
    gap: 0.7rem;
  }

  .services-section {
    margin-top: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-title-group h2 {
    font-size: 1.6rem;
  }

  .services-header {
    flex-direction: column;
    align-items: center;
  }

  .services-page-header {
    align-items: center;
  }

  .services-page-summary {
    max-width: 100%;
  }

  .btn-view-all {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .circle-badge {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-thumb img {
    height: 180px;
  }

  .project-more {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
  }

  .about-section {
    margin-top: 3rem;
  }

  .about-container {
    padding: 2.2rem 0.9rem 2.5rem;
  }

  .about-visual {
    min-height: 290px;
  }

  .about-orb {
    width: min(260px, 72vw);
    height: min(260px, 72vw);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .about-photo {
    width: min(260px, 78vw);
  }

  .about-tag {
    font-size: 0.66rem;
    padding: 0.3rem 0.6rem;
  }

  .about-tag-ui {
    left: 37%;
    bottom: 25%;
  }

  .about-tag-mobile {
    left: 8%;
    bottom: 18%;
  }

  .about-tag-web {
    right: 10%;
    bottom: 22%;
  }

  .about-tag-product {
    left: 16%;
    bottom: 8%;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: 320px;
  }

  .about-actions {
    gap: 0.7rem;
  }

  .about-signature {
    font-size: 1.15rem;
  }

  .tools-section {
    margin-top: 2.75rem;
    padding: 2.5rem 0.9rem;
  }

  .tools-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
  }

  .tools-grid {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  .tool-card {
    padding: 25px;
  }
  .tool-icon {
    width: 60px;
    height: 60px;
  }

  .tool-percentage {
    font-size: 1.1rem;
  }

  .tool-name {
    font-size: 0.8rem;
  }
}

/* ============ EDUCATION & WORK SECTION ============ */
.education-work-section {
  background: #f9f7f4;
  padding: 4rem 1.25rem;
  margin-top: 3.75rem;
}

.education-work-container {
  max-width: 1200px;
  margin: 0 auto;
}

.education-work-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.education-work-eyebrow {
  display: inline-block;
  padding: 0.22rem 0.58rem;
  background: #efe7d4;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 1rem;
  border-left: 2px solid #d9b367;
}

.education-work-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.education-work-accent {
  color: var(--accent);
}

.education-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.education-work-column {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.column-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.education-icon {
  background: #fff3cd;
  color: #c68100;
}

.work-icon {
  background: #fff3cd;
  color: #c68100;
}

.column-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
}

.timeline-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(198, 129, 0, 0.2);
  flex-shrink: 0;
}

.timeline-content {
  padding-top: 0.25rem;
}

.timeline-year {
  font-size: 0.8rem;
  color: #999;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.timeline-degree {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* ============ TABLET (1024px) ============ */
@media (max-width: 1024px) {
  .education-work-grid {
    gap: 2rem;
  }

  .education-work-column {
    padding: 2rem 1.75rem;
  }
}

/* ============ MOBILE (768px) ============ */
@media (max-width: 768px) {
  .education-work-section {
    padding: 3rem 0.9rem;
  }

  .education-work-header {
    margin-bottom: 2.5rem;
  }

  .education-work-header h2 {
    font-size: 1.8rem;
  }

  .education-work-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .education-work-column {
    padding: 1.75rem 1.25rem;
  }

  .column-header {
    margin-bottom: 1.75rem;
  }

  .timeline-items {
    gap: 1.5rem;
  }

  .timeline-item {
    grid-template-columns: 45px 1fr;
    gap: 1rem;
  }

  .timeline-badge {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* ============ PRICING SECTION ============ */
.pricing-section {
  background: linear-gradient(135deg, #2d5a34 0%, #234a24 100%);
  padding: 4rem 1.25rem;
  margin-top: 3.75rem;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.pricing-accent {
  color: var(--accent);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-btn {
  width: 60px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
  transition: all 280ms ease;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.toggle-circle {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  top: 3px;
  left: 3px;
  transition: all 280ms ease;
  box-shadow: 0 4px 12px rgba(198, 129, 0, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 320ms ease;
  color: #fff;
}

.pricing-card.featured {
  background: var(--accent);
  color: #000;
  transform: scale(1.08);
  border: none;
  box-shadow: 0 20px 60px rgba(198, 129, 0, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pricing-header-tier {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-header-tier h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.pricing-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .pricing-icon {
  background: rgba(0, 0, 0, 0.1);
}

.pricing-amount {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.price {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  opacity: 0.85;
  padding-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-card.featured .check {
  background: rgba(0, 0, 0, 0.15);
  color: #000;
}

.check.grayed {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card.featured .check.grayed {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.4);
}

.grayed-text {
  opacity: 0.5;
}

.pricing-card.featured .grayed-text {
  opacity: 0.4;
}

/* ============ TABLET (1024px) ============ */
@media (max-width: 1024px) {
  .pricing-section {
    padding: 3.5rem 1rem;
  }

  .pricing-header {
    gap: 1.25rem;
  }

  .pricing-header h2 {
    font-size: 2.1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.25rem;
  }

  /* Keep featured centered and constrained so it doesn't stretch full width */
  .pricing-card.featured {
    grid-column: 1 / -1;
    max-width: 560px;
    margin: 0 auto;
    transform: scale(1.02);
  }

  .pricing-amount {
    margin-bottom: 1.5rem;
  }

  .price {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
  }

  .pricing-features li {
    font-size: 0.88rem;
  }
}

/* ============ SMALL TABLET (900px) ============ */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .pricing-card.featured {
    max-width: 520px;
    transform: scale(1.01);
  }
}

/* ============ MOBILE (768px) ============ */
@media (max-width: 768px) {
  .pricing-section {
    padding: 3rem 0.9rem;
    margin-top: 2.75rem;
  }

  .pricing-container {
    width: 100%;
    padding: 0;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    gap: 1rem;
  }

  .pricing-header h2 {
    font-size: 1.8rem;
    width: 100%;
  }

  .pricing-toggle {
    width: 100%;
    justify-content: flex-end;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
    width: 100%;
  }

  .pricing-card.featured {
    grid-column: auto;
    transform: scale(1);
    max-width: 100%;
  }

  .pricing-header-tier {
    margin-bottom: 1.25rem;
  }

  .pricing-header-tier h3 {
    font-size: 1.2rem;
  }

  .pricing-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .pricing-amount {
    margin-bottom: 1.5rem;
  }

  .price {
    font-size: 2rem;
  }

  .currency {
    font-size: 1.1rem;
  }

  .period {
    font-size: 0.85rem;
  }

  .pricing-features {
    gap: 0.75rem;
  }

  .pricing-features li {
    font-size: 0.85rem;
    gap: 0.6rem;
  }

  .check {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }

  .pricing-badge {
    top: -10px;
    font-size: 0.7rem;
  }
}

/* ============ SMALL MOBILE (480px) ============ */
@media (max-width: 480px) {
  .pricing-section {
    padding: 2.5rem 0.7rem;
  }

  .pricing-header h2 {
    font-size: 1.6rem;
  }

  .pricing-card {
    padding: 1.75rem 1.2rem;
  }

  .pricing-header-tier h3 {
    font-size: 1.1rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .currency {
    font-size: 1rem;
  }

  .pricing-features li {
    font-size: 0.8rem;
  }

  .check {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-heading {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--ink);
}
.contact-heading span {
  color: var(--accent);
}

.contact-copy {
  color: #6b6b6b;
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 700;
}
.contact-item a,
.contact-item address {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  background: #fbfbfb;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(243, 177, 6, 0.1);
}
.form-grid textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--forest);
  color: #fff;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(35, 74, 36, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(35, 74, 36, 0.18);
}
.btn-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid textarea {
    min-height: 140px;
  }
  .contact-copy {
    margin-bottom: 1rem;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: #f6f6f6;
  padding: 4rem 1rem;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.test-eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.test-heading {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin: 0;
  color: var(--ink);
}
.test-subheading {
  color: #f3b106;
  font-weight: 700;
  margin-top: 0.35rem;
  margin-bottom: 1.25rem;
}

.test-swiper-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-swiper {
  width: 100%;
  padding: 2rem 0;
}
.swiper-wrapper {
  display: flex;
  align-items: center;
}
.swiper-slide {
  width: 320px;
  display: flex;
  justify-content: center;
}
.test-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.09);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
  width: 100%;
  max-width: 360px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: space-between;
}
.swiper-slide-prev .test-card,
.swiper-slide-next .test-card {
  transform: scale(0.96);
  opacity: 0.9;
}
.swiper-slide-active .test-card {
  transform: scale(1.04);
  box-shadow: 0 22px 54px rgba(16, 24, 32, 0.14);
}
.test-rating {
  color: #f3b106;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.test-copy {
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 6px;
}
.test-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.test-name {
  font-weight: 700;
  color: var(--ink);
}
.test-role {
  font-size: 0.85rem;
  color: #888;
}

.test-nav {
  margin-top: 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  justify-content: center;
}
.test-prev,
.test-next {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.08);
}
.test-prev {
  background: var(--forest);
  color: #fff;
}
.test-prev::after {
  content: "←";
  font-weight: 800;
}
.test-next {
  background: var(--accent);
  color: #111;
}
.test-next::after {
  content: "→";
  font-weight: 800;
}

/* Peek effect: make side slides slightly visible */
.testimonials-swiper {
  padding-left: 6vw;
  padding-right: 6vw;
}

/* Mobile: single slide, no peek */
@media (max-width: 768px) {
  .swiper-slide {
    width: 88%;
  }
  .testimonials-swiper {
    padding-left: 0;
    padding-right: 0;
  }
  .swiper-slide-prev .test-card,
  .swiper-slide-next .test-card {
    transform: none;
    opacity: 1;
  }
}

/* Small polish */
.test-card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* ============ NEWS & BLOGS SECTION ============ */
.news-blogs-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.news-blogs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.news-title-group {
  flex: 1;
  min-width: 300px;
}

.news-eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.news-title-group h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

.news-highlight {
  color: var(--accent);
}

.btn-view-blogs {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--forest);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 220ms ease;
  white-space: nowrap;
}

.btn-view-blogs:hover {
  background: #1a3b1b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(35, 74, 36, 0.2);
}

.blog-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.blog-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-float-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(243, 177, 6, 0.25);
  transition: all 280ms ease;
  opacity: 0;
}

.blog-card:hover .blog-float-btn {
  opacity: 1;
  transform: translateY(-8px);
}

.blog-content {
  padding: 1.5rem;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  background: #fff3e0;
  color: #c68100;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.blog-date {
  color: #999;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-excerpt {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 220ms ease;
  position: relative;
}

.blog-read-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest);
  transition: width 280ms ease;
}

.blog-card:hover .blog-read-more {
  color: var(--accent);
}

.blog-card:hover .blog-read-more::after {
  background: var(--accent);
  width: 100%;
}

/* ============ BLOG DETAIL PAGE ============ */
.blog-detail-page {
  padding-bottom: 80px;
}

.blog-detail-section {
  padding: 40px 1rem 0;
}

.blog-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.blog-detail-article {
  display: grid;
  gap: 1.3rem;
}

.blog-detail-media {
  position: relative;
}

.blog-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-detail-chip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
}

.blog-detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  color: #666;
  font-size: 0.92rem;
}

.blog-detail-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.blog-detail-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--ink);
}

.blog-detail-intro {
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.75;
}

.blog-detail-content-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 74, 36, 0.08);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.blog-detail-content-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.blog-detail-content-card p {
  color: #666;
  line-height: 1.75;
}

.blog-detail-content-card p + p {
  margin-top: 0.75rem;
}

.blog-detail-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.blog-detail-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.blog-detail-list-item span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3db;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.blog-detail-list-item p {
  color: #5f5f5f;
  line-height: 1.6;
}

.blog-detail-quote {
  background: linear-gradient(
    135deg,
    rgba(35, 74, 36, 0.96),
    rgba(79, 118, 2, 0.95)
  );
  color: #fff;
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  box-shadow: 0 12px 30px rgba(35, 74, 36, 0.18);
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.blog-detail-tags span {
  background: #fff3e0;
  color: #a56800;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-detail-author {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.blog-detail-author img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-detail-author h3 {
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.blog-detail-author p {
  color: #666;
  line-height: 1.65;
}

.blog-detail-sidebar {
  display: grid;
  gap: 1rem;
}

.blog-detail-side-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(35, 74, 36, 0.06);
}

.blog-detail-side-eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.blog-detail-side-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.blog-detail-side-card p {
  color: #666;
  line-height: 1.7;
}

.blog-detail-summary-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.blog-detail-summary-list div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-detail-summary-list div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.blog-detail-summary-list span {
  color: #888;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-detail-summary-list strong {
  color: var(--forest);
}

.blog-detail-side-posts {
  display: grid;
  gap: 0.9rem;
}

.blog-detail-side-posts a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem;
  border-radius: 14px;
  transition: 220ms ease;
}

.blog-detail-side-posts a:hover {
  background: rgba(35, 74, 36, 0.04);
}

.blog-detail-side-posts img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}

.blog-detail-side-posts h4 {
  font-size: 0.96rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.blog-detail-side-posts span {
  color: #888;
  font-size: 0.8rem;
}

.blog-detail-cta {
  background: linear-gradient(
    180deg,
    rgba(35, 74, 36, 0.98),
    rgba(35, 74, 36, 0.92)
  );
  color: #fff;
}

.blog-detail-cta .blog-detail-side-eyebrow,
.blog-detail-cta h3,
.blog-detail-cta p {
  color: #fff;
}

.blog-detail-cta-btn {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  transition: 220ms ease;
}

.blog-detail-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(243, 177, 6, 0.25);
}

.blog-related-section {
  padding: 60px 1rem 0;
}

.blog-related-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-related-header {
  margin-bottom: 1.5rem;
}

.blog-related-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--ink);
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.blog-related-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.blog-related-card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.blog-related-card div {
  padding: 0.25rem 1rem 0.25rem 0;
}

.blog-related-card span {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-related-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  line-height: 1.35;
  color: var(--ink);
}

.blog-related-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.blog-related-card a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-detail-section,
  .blog-related-section {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .blog-detail-meta-row {
    gap: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }

  .blog-detail-author {
    align-items: flex-start;
  }

  .blog-related-card {
    grid-template-columns: 1fr;
  }

  .blog-related-card img {
    min-height: 220px;
  }
}

/* ============ RESPONSIVE: TABLET ============ */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-view-blogs {
    align-self: flex-start;
  }
}

/* ============ RESPONSIVE: MOBILE ============ */
@media (max-width: 768px) {
  .news-blogs-section {
    padding: 3rem 0.9rem;
  }

  .news-header {
    margin-bottom: 2rem;
  }

  .news-title-group h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .btn-view-blogs {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-image-wrap {
    height: 200px;
  }

  .blog-float-btn {
    width: 42px;
    height: 42px;
    bottom: 0.85rem;
    right: 0.85rem;
    opacity: 1;
  }

  .blog-content {
    padding: 1.25rem;
  }

  .blog-title {
    font-size: 1rem;
  }

  .blog-excerpt {
    font-size: 0.85rem;
  }
}

/* ============ FAQ SECTION ============ */
.faq-section {
  background: linear-gradient(135deg, #1f4d2b 0%, #234a24 100%);
  padding: 5rem 1rem;
  color: #fff;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-eyebrow {
  color: #f3b106;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.faq-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.faq-highlight {
  color: #f3b106;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 280ms ease;
  text-align: left;
  font-family: inherit;
}

.faq-trigger:hover {
  color: #f3b106;
}

.faq-icon {
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition:
    transform 280ms ease,
    color 280ms ease;
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Active/Open State */
.faq-item.active {
  background: #f3b106;
  border-color: #f3b106;
}

.faq-item.active .faq-trigger {
  color: #1f4d2b;
}

.faq-item.active .faq-trigger:hover {
  color: #1f4d2b;
}

.faq-item.active .faq-icon {
  color: #1f4d2b;
  transform: rotate(90deg);
}

.faq-item.active .faq-answer {
  color: #1f4d2b;
}

/* FAQ Bottom Strip */
.faq-strip {
  margin-top: 2.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #f3b106;
}

.faq-strip-track {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  color: #1f4d2b;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 1rem;
}

.faq-track {
  display: flex;
  gap: 1.25rem;
  animation: scroll-left 12s linear infinite;
}

.faq-dot {
  color: #234a24;
  font-weight: 900;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fafb;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP LINE */
.top-line {
  height: 4px;
  background: #f3b106;
}

/* HEADER */
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}

.footer-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.footer-header span {
  color: #f3b106;
}

/* BUTTON */
.blog-btn {
  background: #1b4332;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.blog-btn span {
  background: #f3b106;
  color: black;
  border-radius: 50%;
  padding: 6px;
  display: flex;
}

.blog-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

/* MAIN CONTENT */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h3.logo {
  font-size: 24px;
  font-weight: 700;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  color: #555;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f3b106;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-socials a {
  background: #f3b106;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: black;
  transition: 0.3s;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px;
  border-radius: 25px 0 0 25px;
  border: none;
  background: #eef1f3;
  outline: none;
  transition: 0.3s;
}

.newsletter input:focus {
  background: #e2e6e8;
}

.newsletter button {
  background: #1b4332;
  border: none;
  color: white;
  padding: 0 15px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #16352a;
}

/* BOTTOM */
.footer-bottom {
  background: #1b4332;
  color: white;
  padding: 15px 0;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
}

.bottom-links a:hover {
  color: #f3b106;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .bottom-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============ RESPONSIVE: TABLET ============ */
@media (max-width: 1024px) {
  .faq-section {
    padding: 4rem 1rem;
  }

  .faq-header h2 {
    font-size: 2.2rem;
  }

  .faq-trigger {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* ============ RESPONSIVE: MOBILE ============ */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0.9rem;
  }

  .faq-header {
    margin-bottom: 2rem;
  }

  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-accordion {
    gap: 0.85rem;
  }

  .faq-trigger {
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
  }

  .faq-icon {
    font-size: 1.3rem;
  }

  .faq-answer {
    padding: 0 1rem 0.95rem 1rem;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .faq-strip-track {
    min-height: 50px;
    font-size: 0.85rem;
  }

  .faq-track {
    gap: 1rem;
    animation: scroll-left 10s linear infinite;
  }
}

/* ============ WORDPRESS CORE ============ */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  z-index: 10000;
}

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

.custom-logo {
  width: clamp(36px, 4.5vw, 56px);
  height: auto;
  border-radius: 50%;
}

.archive-page-shell,
.single-post-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.service-page-generic-inner {
  width: 100%;
}

.page-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.page-eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(198, 129, 0, 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-heading h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.page-heading p,
.archive-description,
.single-entry-content,
.single-entry-content p,
.page-content,
.page-content p {
  color: #5f5f5f;
  line-height: 1.8;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.entry-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(35, 74, 36, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.entry-card-media,
.entry-card-media img {
  display: block;
  width: 100%;
}

.entry-card-media img {
  height: 250px;
  object-fit: cover;
}

.entry-card-body {
  padding: 1.4rem;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  color: #777;
  font-size: 0.86rem;
  margin-bottom: 0.85rem;
}

.entry-meta a {
  color: inherit;
  text-decoration: none;
}

.entry-card-title,
.entry-card-title a {
  color: var(--ink);
  text-decoration: none;
}

.entry-card-title {
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.entry-card-excerpt {
  color: #666;
  line-height: 1.7;
}

.entry-card-excerpt p:last-child {
  margin-bottom: 0;
}

.entry-card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--forest);
  font-weight: 700;
  text-decoration: none;
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.page-numbers,
.post-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(35, 74, 36, 0.1);
}

.page-numbers.current,
.post-page-numbers.current {
  background: var(--forest);
  color: #fff;
}

.empty-state {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(35, 74, 36, 0.08);
}

.search-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.search-form label {
  flex: 1 1 320px;
}

.search-field {
  width: 100%;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(35, 74, 36, 0.14);
  background: rgba(255, 255, 255, 0.95);
  padding: 0 1.1rem;
  font: inherit;
}

.search-submit {
  min-height: 54px;
  padding: 0 1.4rem;
  border: none;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
}

.single-entry-card,
.blog-sidebar .widget {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  border: 1px solid rgba(35, 74, 36, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}

.single-entry-card {
  padding: 1.5rem;
}

.single-entry-header {
  margin-bottom: 1.5rem;
}

.single-entry-media {
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
}

.single-entry-media img {
  display: block;
  width: 100%;
  height: auto;
}

.single-entry-content > * + * {
  margin-top: 1rem;
}

.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4,
.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--ink);
  line-height: 1.2;
}

.single-entry-content ul,
.single-entry-content ol,
.page-content ul,
.page-content ol {
  padding-left: 1.25rem;
}

.single-entry-content a,
.page-content a,
.comments-area a,
.widget a {
  color: var(--forest);
}

.wp-block-image img,
.single-entry-content img,
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.alignwide {
  width: min(100%, 1100px);
}

.alignfull {
  width: 100%;
}

.post-tags {
  margin-top: 1.5rem;
}

.post-tags a {
  display: inline-flex;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff3e0;
  color: #a56800;
  text-decoration: none;
}

.single-entry-footer .post-navigation {
  margin-top: 2rem;
}

.single-entry-footer .nav-links {
  justify-content: space-between;
}

.single-entry-footer .nav-previous,
.single-entry-footer .nav-next {
  flex: 1 1 280px;
}

.single-entry-footer .nav-links a {
  display: block;
  height: 100%;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #fffaf0;
  text-decoration: none;
}

.single-entry-footer .nav-links span,
.single-entry-footer .nav-links strong {
  display: block;
}

.single-entry-footer .nav-links span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.blog-sidebar {
  display: grid;
  gap: 1rem;
}

.blog-sidebar .widget {
  padding: 1.25rem;
}

.widget-title {
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.widget ul {
  list-style: none;
}

.widget li + li {
  margin-top: 0.6rem;
}

.comments-area {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(35, 74, 36, 0.1);
}

.comments-title {
  margin-bottom: 1rem;
}

.comment-list {
  list-style: none;
  padding-left: 0;
}

.comment-list .comment {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(35, 74, 36, 0.08);
}

.comment-body {
  display: grid;
  gap: 0.65rem;
}

.comment-metadata,
.comment-metadata a,
.logged-in-as,
.comment-notes {
  color: #777;
  font-size: 0.88rem;
}

.comment-content,
.comment-content p {
  color: #5f5f5f;
  line-height: 1.7;
}

.comment-respond {
  margin-top: 1.5rem;
}

.comment-form {
  display: grid;
  gap: 1rem;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid rgba(35, 74, 36, 0.14);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}

.comment-form textarea {
  min-height: 180px;
  resize: vertical;
}

.submit {
  border: none;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  padding: 0.9rem 1.3rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .posts-grid,
  .single-post-layout {
    grid-template-columns: 1fr 1fr;
  }

  .single-post-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .archive-page-shell,
  .single-post-shell {
    padding: 1.4rem 0.9rem 3rem;
  }

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

  .single-entry-card {
    padding: 1.15rem;
  }

  .search-form {
    flex-direction: column;
  }

  .search-submit {
    width: 100%;
  }
}
