@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {

  --primary-dark: #07353b;
  --primary-text: #1a2f33;
  --primary-heading: #0E5977;
  --secondary-text: #526b70;
  --accent-green: #b9e84b;
  --accent-green-hover: #d3f584;
  --icon-light-blue: #ceeef8;
  --icon-blue: #0ea7d7;
  --icon-teal: #36c5b2;
  --hero-color: #0E5977;
  --grad-start: #0E5977;
  --grad-end: #1DC7E5;
  --bg-light: #f9fbfb;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  --font-main: 'Inter', sans-serif;

  --site-header: 80px;
  --site-padding: 24px;
  --section-padding: 80px var(--site-padding);
  --container-width: 1200px;

  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --radius-md: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-header);
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--secondary-text);
  line-height: 1.6;
  background-color: var(--bg-white);
  /* overflow-x: hidden; */
  width: 100%;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--primary-heading);
  line-height: 1.2;
  font-weight: 500;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 40px;
}

h1 b,
h2 b,
h3 b,
h4 b,
h1 strong,
h2 strong,
h3 strong,
h4 strong {
  background: linear-gradient(to right, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero h1 b,
.hero h2 b,
.hero h3 b,
.hero h4 b,
.hero h1 strong,
.hero h2 strong,
.hero h3 strong,
.hero h4 strong {
  background: linear-gradient(to right, #1BE1D8, #1DC7E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero p {
  color: var(--bg-white);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul.bullet {
  margin-left: 20px;
  list-style-type: disc;
}

ul.bullet li {
  margin-bottom: 10px;
}

section.alt1 {
  background-color: var(--bg-light);
}

.wrapper {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flex.row {
  flex-direction: row;
}

.flex.row.reverse {
  flex-direction: row-reverse;
}

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

.flex.column.reverse {
  flex-direction: column-reverse;
}

.container .column,
.layanan-page .container>.flex.column {
  flex: 1;
}

.flex.ais {
  align-items: flex-start;
}

.flex.aic {
  align-items: center;
}

.flex.aie {
  align-items: flex-end;
}

.flex.jcs {
  justify-content: flex-start;
}

.flex.jcc {
  justify-content: center;
}

.flex.jce {
  justify-content: flex-end;
}

.flex.jcsa {
  justify-content: space-around;
}

.flex.jcsb {
  justify-content: space-between;
}

.flex.jcse {
  justify-content: space-evenly;
}

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

.self-stretch {
  align-self: stretch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 28px 0 0 0;
}

.wrap {
  flex-wrap: wrap;
}

.wrap-0 {
  flex-wrap: nowrap;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-28 {
  gap: 28px;
}

.gap-32 {
  gap: 32px;
}

.gap-48 {
  gap: 48px;
}

.gap-52 {
  gap: 52px;
}

.gap-60 {
  gap: 60px;
}

.gap-64 {
  gap: 64px;
}

.gap-72 {
  gap: 72px;
}

.gap-80 {
  gap: 80px;
}

.overflow-hidden {
  overflow: hidden;
}

.section-tag {
  color: var(--primary-text);
  border-radius: 60px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  background-color: var(--icon-light-blue);
  padding: 4px 12px;
  display: inline-flex;
}

.sticky {
  flex: 1;
  position: sticky;
  top: calc(var(--site-header) + (var(--site-padding) * 2));
}


.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  gap: 12px;
}

.card h3 {
  font-size: 24px;
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.3;
}

.card p {
  font-size: 15px;
  text-wrap: balance;
}

.icon-box {
  width: 64px;
  height: 64px;
  background-color: var(--icon-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: 48px;
  background-repeat: no-repeat;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.wrap-balance {
  text-wrap: balance;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--site-header);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  z-index: 1000;
  padding: 0 var(--site-padding);
}

.header.floating {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

header.no-hero .logo {
  filter: none;
}

header.no-hero .nav a {
  color: var(--primary-text);
}

header.no-hero .nav a:hover {
  color: var(--accent-green);
}

.header .nav a.btn,
.header.floating .nav a.btn {
  color: var(--primary-text);
  transition: all 0.3s ease;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  filter: brightness(0) invert(1);
}

.header .logo img {
  height: 40px;
}

.header.floating .logo {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.floating .nav a {
  color: var(--primary-text);
}

.nav a:hover {
  color: var(--accent-green);
}

.floating .nav a:hover {
  color: var(--icon-blue);
}

/* --- BUTTONS --- */
.btn {
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn:hover {
  transform: scale(1.05);
}

.btn-accent {
  background-color: var(--accent-green);
  color: #000;
}

.btn-accent:hover {
  background-color: var(--accent-green-hover);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-text);
}

.btn-white:hover {
  background-color: #f1f1f1;
}

.btn-outline {
  background-color: #f1f5f9;
  color: var(--primary-text);
}

.btn-outline:hover {
  background-color: #e2e8f0;
}

.btn-primary {
  background-color: var(--accent-green);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--accent-green-hover);
}

.btn-wa {
  background-color: #25D366;
  color: #fff;
}

.btn-wa:hover {
  background-color: #128C7E;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-heading);
}

.text-red {
  color: #ef4444;
  margin-left: 4px;
}

.form-hint {
  font-size: 13px;
  color: var(--secondary-text);
  margin-top: 8px;
}

.form-group-turnstile {
  display: flex;
  flex-direction: column;
}

.send-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

main>section:first-of-type {
  padding: calc(80px + var(--site-header)) var(--site-padding) 80px var(--site-padding);
}

/* --- SECTION 1: HERO --- */
section.hero {
  background-color: var(--hero-color);
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#home section.hero {
  background-image: linear-gradient(to right, rgba(14, 89, 119, 0.95) 30%, rgba(14, 89, 119, 0.4) 100%), url('https://reedjaz.github.io/thkcdn/images/hero-img.jpg');
}

#tentang section.hero {
  background-image: linear-gradient(to top, rgba(14, 89, 119, 0.85) 30%, rgba(14, 89, 119, 0.85) 100%), url('https://reedjaz.github.io/thkcdn/images/about-img.jpg');
  min-height: 56vh;
}

#kontak-page .onlysection {
  min-height: 100vh;
}

#kontak-page .contact-container {
  padding: var(--site-padding);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  box-shadow: none;
  border: 1px solid var(--border-color);
}

#kontak-page #kontak {
  width: 100%;
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: var(--bg-white);
}

.hero p:last-of-type {
  margin-bottom: 32px;
}

.button-rows {
  display: flex;
  gap: 16px;
}

/* --- SECTION 2: SERVICES --- */
.services {
  padding: var(--section-padding);
  background-color: var(--bg-white);
}

.services h2 {
  font-size: 36px;
  max-width: 700px;
  margin-bottom: 24px;
}

.services>p {
  margin-bottom: 50px;
  font-size: 16px;
}

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

/* --- SECTION 2.5: PORTFOLIO AND TEAM --- */
.portfolio-card,
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.portfolio-card:hover,
.team-card:hover {
  box-shadow: var(--shadow-md);
}

.portfolio-img,
.team-img {
  width: 100%;
  height: auto;
  background-color: #e2e8f0;
  overflow: hidden;
}

.team-img {
  height: 380px;
  background-size: cover;
  background-position: center;
}

.portfolio-img img,
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img img,
.team-card:hover .team-img img {
  transform: scale(1.05);
}

.portfolio-content,
.team-content {
  padding: 16px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.team-content {
  gap: 0;
}

.team-role {
  font-size: 18px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.portfolio-content h3 {
  font-size: 24px;
  color: var(--primary-heading);
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.3;
}

.team-content h4 {
  font-size: 32px;
  color: var(--primary-heading);
  text-wrap: balance;
  font-weight: 500;
  line-height: 1.3;
}

.portfolio-content p,
.team-content p {
  font-size: 15px;
  color: var(--secondary-text);
  flex: 1;
}

.portfolio-tag {
  align-self: flex-start;
  background-color: #e2e8f0;
  color: var(--primary-text);
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.porto-swiper {
  width: calc(100% + 40px);
  margin: 20px -20px 0 -20px;
  padding: 20px 20px 40px 20px !important;
  left: -20px;
}

.porto-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.porto-swiper .portfolio-card {
  width: 100%;
}

.porto-pagination {
  bottom: 0 !important;
}

.porto-swiper .swiper-button-next,
.porto-swiper .swiper-button-prev {
  color: var(--primary-dark);
}

.porto-swiper .swiper-button-next::after,
.porto-swiper .swiper-button-prev::after {
  font-size: 24px;
  font-weight: 700;
}

/* --- SECTION 3: WHY US --- */

.feature-item {
  display: flex;
  gap: 12px;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--icon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
  background-image: url("https://reedjaz.github.io/thkcdn/images/check.svg");
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 15px;
}

/* --- SECTION 4: TESTIMONIALS AND PARTNERS --- */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--bg-light);
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  margin: 20px 0 50px;
}

.testi-swiper {
  width: calc(100% + 40px);
  margin: 28px -20px;
  padding: 20px 20px 40px 20px !important;
  left: -20px;
}

.testi-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.testi-swiper .swiper-slide {
  height: auto;
}

.testi-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #e2e8f0;
  margin: 0 auto 20px;
  overflow: hidden;
}

.testi-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-weight: 700;
  color: var(--primary-heading);
  font-size: 20px;
}

.testi-role {
  font-size: 14px;
  color: var(--secondary-text);
  margin-bottom: 16px;
}

.testi-quote {
  font-style: italic;
  font-size: 18px;
}

.testi-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #cbd5e1;
  opacity: 1;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-dark);
  width: 24px;
  border-radius: 4px;
}

.testi-swiper .swiper-button-next,
.testi-swiper .swiper-button-prev {
  color: var(--primary-dark);
}

.testi-swiper .swiper-button-next::after,
.testi-swiper .swiper-button-prev::after {
  font-size: 24px;
  font-weight: 700;
}

.partners h3 {
  font-size: 28px;
  margin-bottom: 40px;
}

.partners-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.partners-logos.is-many {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
}

.partners-logos.is-many .logo-placeholder {
  width: calc(25% - 15px);
}

.logo-placeholder {
  height: 100px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 12px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-placeholder:hover {
  opacity: 1;
}

/* --- LAYANAN PAGE --- */
#layanan-hero {
  background-image: linear-gradient(to top, rgba(14, 89, 119, 0.95) 30%, rgba(14, 89, 119, 0.85) 100%), url('https://reedjaz.github.io/thkcdn/images/hero-img.jpg');
  min-height: 56vh;
}

.service-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background-color: var(--secondary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.service-img img {
  width: 150px;
  opacity: 0.25;
  transition: transform 0.3s ease;
}

.wrapper:hover .service-img img {
  transform: scale(1.1);
}


/* --- PORTOFOLIO PAGE --- */
#portofolio-hero {
  background-image: linear-gradient(to top, rgba(14, 89, 119, 0.95) 30%, rgba(14, 89, 119, 0.85) 100%), url('https://reedjaz.github.io/thkcdn/images/hero-img.jpg');
  min-height: 56vh;
}

#porto-grid-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}


.logo-placeholder img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* --- SECTION 5: CONTACT --- */
.contact {
  padding: var(--section-padding);
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.contact-container {
  display: flex;
  gap: 60px;
  background-color: var(--bg-white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-left h2 {
  font-size: 32px;
  margin: 12px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--primary-text);
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--icon-teal);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  padding: 48px var(--site-padding) 20px var(--site-padding);
}

.footer .logo img {
  height: 52px;
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 28%;
}

.footer-brand p {
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: normal;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-links a {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

.social-links a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-contact {
  width: max-content;
  display: flex;
  flex-direction: column;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--bg-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--slate-200);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  opacity: 0.8;
}



/* --- NAVIGATION ACTIVE STATE --- */
.nav a.active {
  color: var(--bg-white);
  font-weight: 700;
  position: relative;
}

.floating .nav a.active {
  color: var(--primary-heading);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-accent, #1BE1D8);
  border-radius: 2px;
}

/* --- PORTO SEARCH --- */
.porto-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.porto-search-wrap svg {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--secondary-text);
  pointer-events: none;
}

.porto-search {
  font-family: var(--font-main);
  font-size: 14px;
  padding: 8px 16px 8px 36px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background: var(--bg-white);
  color: var(--primary-text);
  width: 248px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.porto-search:focus {
  border-color: var(--primary-heading);
  box-shadow: 0 0 0 3px rgba(14, 89, 119, 0.08);
}

.porto-search::placeholder {
  color: var(--secondary-text);
}

/* --- PORTO FILTER ROW --- */
.porto-filter-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.porto-filter-row .porto-tag-filter-wrap {
  flex: 1;
  min-width: 0;
  /* allow shrinking below content size */
}

/* --- PORTO TAG FILTER --- */
.porto-tag-filter-wrap {
  position: relative;
  overflow: hidden;
}

.porto-tag-filter-wrap::before,
.porto-tag-filter-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.porto-tag-filter-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white), transparent);
}

.porto-tag-filter-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white), transparent);
}

.porto-tag-filter-wrap.fade-left::before {
  opacity: 1;
}

.porto-tag-filter-wrap.fade-right::after {
  opacity: 1;
}

#porto-tag-filter {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  flex-wrap: nowrap !important;
  padding: 6px 0;
  user-select: none;
}

#porto-tag-filter::-webkit-scrollbar {
  display: none;
}

#porto-tag-filter.is-dragging {
  cursor: grabbing;
}

.porto-tag-btn {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--secondary-text);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.porto-tag-btn:hover {
  border-color: var(--primary-heading);
  color: var(--primary-heading);
  background: var(--bg-light);
}

.porto-tag-btn.active {
  background: var(--primary-heading);
  color: var(--bg-white);
  border-color: var(--primary-heading);
}

/* --- PAGINATION KEYFRAMES AND STYLES --- */
.pagination-nav .page-btn {
  font-family: var(--font-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--secondary-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination-nav .page-btn:hover {
  background: var(--bg-light);
  color: var(--primary-heading);
}

.pagination-nav .page-btn.active {
  background: var(--primary-heading);
  color: var(--bg-white);
  border-color: var(--primary-heading);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {

  .why-us-container,
  .contact-container {
    flex-direction: column;
  }

  .why-us-left {
    position: static;
  }

  .contact-container {
    padding: 40px 20px;
  }
}