:root {
  --font-family: 'Inter', sans-serif;
  --color-page: #fff;
  --color-text: #10131a;
  --color-muted: #6e7686;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f8fc;
  --color-dark: #10131a;
  --color-border: rgba(16, 23, 40, 0.08);
  --color-border-strong: rgba(16, 23, 40, 0.16);
  --color-cta: #111316;
  --radius-lg: 28px;
  --radius-xl: 44px;
  --shadow-soft: 0 28px 60px rgba(16, 24, 40, 0.08);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-page);
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 32px 0 24px;
  color: #fff;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand sup {
  margin-left: 6px;
  font-size: 0.55rem;
  letter-spacing: normal;
  position: relative;
  top: -0.45em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
  color: #fff;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  opacity: 1;
  color: #fff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #eaeaea;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.header-cta:hover {
  opacity: 1;
}

.header-cta span {
  margin-left: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.hero-slider-wrapper {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

/* Hero Slider */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 82vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 82vh;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-slider:active {
  cursor: grabbing;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 82vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 82vh;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 24, 0) 0%, rgba(9, 15, 24, 0.1) 45%, rgba(9, 15, 24, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 30vh 0 118px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  max-width: 440px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.description {
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 48px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  transform: scale(1.4);
  background: #fff;
}

/* Partners */
.partners {
  background: var(--color-surface);
  padding: 48px 0;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: none;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-items: center;
  align-items: center;
  gap: 28px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}

.logo-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-placeholder {
  font-weight: 600;
  opacity: 0.5;
  color: rgba(16, 24, 40, 0.55);
}

/* About */
.about {
  padding: 120px 0 90px;
  background-color: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  padding: 80px;
  background: #f5f7fb;
  border-radius: 44px;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.05);
}

.about-media {
  position: relative;
}

.about-image {
  border-radius: 36px;
  width: 100%;
  height: 700px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.badge {
  position: absolute;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-dark);
  box-shadow: 0 20px 32px rgba(15, 23, 42, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.badge-top {
  top: 28px;
  left: 32px;
}

.badge-middle {
  top: 50%;
  right: 38px;
  transform: translateY(-50%);
}

.badge-bottom {
  bottom: 28px;
  left: 22px;
}

.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 24, 40, 0.5);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.23;
  margin: 0 0 28px;
}

.lead {
  margin: 0 0 40px;
  color: #596072;
  line-height: 1.8;
  max-width: 520px;
}

.stats {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
}

.stat-card {
  flex: 1;
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(16, 24, 40, 0.05);
}

.stat-value {
  font-size: 2.1rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 14px 28px;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: #fff;
}

.ghost-button:hover {
  border-color: rgba(10, 94, 232, 0.35);
  background: rgba(10, 94, 232, 0.08);
}

/* Projects */
.projects {
  padding: 120px 0;
  background: #fff;
}

.projects-inner {
  display: grid;
  gap: 40px;
  text-align: center;
}

.projects-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.24;
}

.filter-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pill {
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 12px 24px;
  border-radius: 999px;
  background: #fff;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pill.active {
  background: var(--color-dark);
  color: #fff;
  border-color: transparent;
}

.pill:hover:not(.active) {
  background: rgba(16, 24, 40, 0.06);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.project-card {
  background: transparent;
  border-radius: 36px;
  display: grid;
  gap: 20px;
}

.project-media {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
}

.project-media img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.15);
}

.project-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 0 8px;
}

.project-content h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--color-text);
}

.project-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.project-date {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--color-dark);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 26px rgba(17, 19, 21, 0.18);
}

/* CTA Highlight */
.cta-highlight {
  padding: 90px 0;
  background-color: #fff;
  position: relative;
}

.highlight-inner {
  position: relative;
  color: #fff;
  border-radius: 44px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: #000;
  width: 100%;
}

.highlight-inner:has(.highlight-media img) {
  background: transparent;
}

.highlight-media {
  position: absolute;
  inset: 0;
}

.highlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.highlight-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0) 100%);
}

.highlight-copy {
  position: relative;
  z-index: 1;
  padding: 64px 80px;
  max-width: 520px;
  display: grid;
  gap: 20px;
}

.highlight-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  line-height: 1.18;
}

.highlight-copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.primary-button.light {
  background: #fff;
  color: var(--color-text);
}

.primary-button.light:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Process */
.process {
  padding: 110px 0 130px;
  background-color: #fff;
}

.process-inner {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  padding: 76px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  position: relative;
}

.process-copy h2 {
  margin: 0 0 36px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.process-cta {
  position: absolute;
  top: 36px;
  right: 36px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 44px;
  display: grid;
  gap: 20px;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 24px 28px;
  border-radius: 26px;
  background: var(--color-surface-alt);
}

.step-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.55);
}

.step-list h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.step-list p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.process-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: #070808;
  color: #fff;
  padding: 88px 0 34px;
  border-radius: 48px;  
  width: 93%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #fff;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #14181d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links h4,
.footer-newsletter h4 {
  margin: 0 0 18px;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 999px;
  align-items: center;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

.about-inner,
.process-inner,
.highlight-inner {
  grid-template-columns: 1fr;
  padding: 48px;
}

  .about-media,
  .process-media {
    order: -1;
  }

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

@media (max-width: 768px) {
  .site-header {
    position: static;
    padding: 24px 0 16px;
  }

  .header-inner {
    background: var(--color-dark);
    border-radius: 24px;
    border: none;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    min-height: 70vh;
    border-radius: 0 0 40px 40px;
  }

  .hero-content {
    padding: 110px 0 64px;
  }

  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-inner,
  .process-inner,
  .highlight-inner {
    padding: 36px;
  }

  .stats {
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(92vw, 440px);
  }

  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-cta,
  .ghost-button,
  .primary-button {
    width: 100%;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
  }

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

  .highlight-copy {
    padding: 40px;
  }
}
.footer-brand .brand-mark {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.24em;
}

.footer-brand sup {
  font-size: 0.6rem;
  margin-left: 6px;
  position: relative;
  top: -0.5em;
}
.primary-button.process-cta {
  background: var(--color-dark);
  color: #fff;
  padding: 12px 24px;
  gap: 8px;
  box-shadow: 0 18px 32px rgba(17, 19, 21, 0.2);
}

.primary-button.process-cta:hover {
  box-shadow: 0 20px 40px rgba(17, 19, 21, 0.28);
}

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

/* About Header */
.about-header {
  position: relative;
  background: #fff;
  padding: 24px 0;
  z-index: 10;
}

.about-header .header-inner {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
}

.about-header .brand,
.about-header .main-nav a,
.about-header .header-cta {
  color: var(--color-dark);
}

.main-nav a.active {
  font-weight: 600;
  position: relative;
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}

.btn-contact {
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-contact:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

/* About Hero Section */
.about-hero {
  background: #fff;
  padding: 120px 0 60px; /* Add top padding to account for fixed header */
  margin-top: 0;
}

.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 32px;
  font-weight: 500;
  padding-top: 0;
}

.about-hero-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.about-hero-title h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.about-hero-description {
  padding-top: 8px;
}

.about-hero-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.about-hero-images {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  align-items: start;
}

.hero-image-left img,
.hero-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-image-left img {
  aspect-ratio: 3/4;
}

.hero-image-right img {
  aspect-ratio: 16/9;
}

/* Story Section */
.story-section {
  background: #fff;
  padding: 0 0 60px;
}

.story-images {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  margin-bottom: 56px;
}

.story-image-left img,
.story-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.story-image-left img {
  aspect-ratio: 3/4;
}

.story-image-right img {
  aspect-ratio: 16/9;
}

.story-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.story-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  padding-top: 4px;
}

.story-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-text {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--color-dark);
  margin: 0;
  font-weight: 400;
}

/* Stats Section */
.stats-section {
  background: #fff;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* Impact Section */
.impact-section {
  background: #fff;
  padding: 60px 0 80px;
}

.impact-content {
  background: #eaeaea;
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 48px;
}

.impact-header {
  margin-bottom: 0;
}

.impact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--color-text);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.impact-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.3;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.impact-left {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.impact-image {
  width: 100%;
  position: relative;
}

.impact-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  aspect-ratio: 6/5;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.impact-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.impact-features {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--color-dark);
  margin-top: 4px;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--color-dark);
  line-height: 1.4;
}

.feature-content p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin: 0;
}

.impact-cta {
  margin-top: 8px;
}

.btn-projects {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border-radius: 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.005em;
}

.btn-projects:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

/* Projects Timeline Section */
.projects-timeline {
  background: #fff;
  padding: 80px 0;
}

.timeline-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 56px;
  text-align: center;
  letter-spacing: -0.01em;
}

.timeline-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  margin-bottom: 48px;
  align-items: start;
}

.timeline-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 4px;
}

.timeline-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
}

.timeline-filters {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: #000;
  border: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.filter-btn:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

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

.projects-list {
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 64px;
  box-shadow: none;
  column-count: 2;
  column-gap: 64px;
}

.project-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.project-bullet {
  flex-shrink: 0;
  color: var(--color-dark);
  font-weight: 400;
  font-size: 1rem;
}

.project-name {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 400;
}

/* Projects Gallery */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f5f5f5;
}

.gallery-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 40px;
  border-top: 2px dotted rgba(0, 0, 0, 0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.5fr;
  gap: 80px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand {
  max-width: 240px;
  padding-left: 20px;
}

.brand-footer {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.brand-footer sup {
  font-size: 0.45rem;
  margin-left: 3px;
  position: relative;
  top: -0.5em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
  font-style: italic;
  line-height: 1.4;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h3 {
  font-size: 0.65rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col ul li {
  margin-bottom: 0;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-newsletter h3 {
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fff;
  font-size: 0.75rem;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  padding: 10px 20px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .about-hero-header {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .about-hero-title h1 {
    font-size: 2.8rem;
  }

  .about-hero-images {
    grid-template-columns: 1fr 1.5fr;
  }

  .story-images {
    grid-template-columns: 1fr 1.5fr;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .impact-content {
    padding: 48px;
    gap: 40px;
  }

  .impact-left {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-title {
    font-size: 2rem;
  }

  .timeline-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    grid-column: span 2;
  }

  .projects-list {
    column-count: 1;
    padding: 0;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-hero-header {
    gap: 32px;
    margin-bottom: 40px;
  }

  .about-hero-title h1 {
    font-size: 2.2rem;
  }

  .about-hero-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-section {
    padding: 0 0 60px;
  }

  .story-images {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .story-content {
    gap: 24px;
  }

  .story-text {
    font-size: 1.1rem;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .impact-content {
    padding: 40px 32px;
  }

  .impact-left {
    grid-template-columns: 1fr;
  }

  .impact-title {
    font-size: 1.8rem;
  }

  .timeline-header h2 {
    font-size: 1.5rem;
  }

  .timeline-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-filters {
    justify-content: flex-start;
  }

  .timeline-header h2 {
    font-size: 1.6rem;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-image img {
    height: 180px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

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

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero-title h1 {
    font-size: 1.85rem;
  }

  .about-hero-description p {
    font-size: 0.95rem;
  }

  .story-text {
    font-size: 1rem;
  }

  .impact-content {
    padding: 32px 24px;
  }

  .impact-section,
  .projects-timeline {
    padding: 60px 0;
  }

  .timeline-header h2 {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }

  .projects-list {
    column-count: 1;
    padding: 0;
  }

  .timeline-filters {
    gap: 8px;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .projects-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .gallery-image img {
    height: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-newsletter {
    grid-column: span 1;
  }

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

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

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

/* Projects Header */
.projects-header {
  position: relative;
  background: #fff;
  padding: 24px 0;
  z-index: 10;
}

.projects-header .header-inner {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
}

.projects-header .brand,
.projects-header .main-nav a,
.projects-header .header-cta {
  color: var(--color-dark);
}

/* Projects Hero Section */
.projects-hero {
  background: #fff;
  padding: 120px 0 60px; /* Add top padding to account for header */
}

.projects-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 40px 0;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 100%;
}

.projects-hero-bottom {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.projects-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  padding-top: 4px;
}

.projects-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* Responsive Styles for Projects Page */
@media (max-width: 1024px) {
  .projects-hero-bottom {
    gap: 48px;
  }

  .projects-hero-title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .projects-hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-hero-title {
    font-size: 2.2rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .projects-hero {
    padding: 32px 0 40px;
  }

  .projects-hero-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .projects-description {
    font-size: 0.95rem;
  }
}

/* ========================================
   PROJECT DETAIL PAGE STYLES
   ======================================== */

/* Project Detail Header */
.project-detail-header {
  position: relative;
  background: #fff;
  padding: 24px 0;
  z-index: 10;
}

.project-detail-header .header-inner {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 18px;
}

.project-detail-header .brand,
.project-detail-header .main-nav a,
.project-detail-header .header-cta {
  color: var(--color-dark);
}

/* Project Detail Hero */
.project-detail-hero {
  background: #fff;
  padding: 120px 0 50px; /* Add top padding to account for header */
}

.breadcrumb-detail {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.project-detail-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

/* Project Images Section */
.project-images-section {
  background: #fff;
  padding: 0 0 80px;
}

.project-images-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.project-main-image {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-name-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.project-info-side {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.project-info-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-info-cards-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: -40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.info-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-dark);
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 1px;
  font-weight: 500;
}

.info-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* Project Description Section */
.project-description-section {
  background: #fff;
  padding: 0 0 80px;
}

.project-description-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.description-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  padding-top: 4px;
}

.description-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.description-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
  font-weight: 400;
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-dark);
  color: #fff;
  border-radius: 32px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-catalog:hover {
  background: #000;
  transform: translateX(4px);
}

.btn-catalog svg {
  width: 16px;
  height: 16px;
}

/* Project Highlight Section */
.project-highlight-section {
  background: #F8F8F8;
  padding: 80px 0;
  border-radius: 30px;
  margin: 50px;
}

.highlight-wrapper {
  background: #FAFAFA;
  border-radius: 32px;
  padding: 60px;
}

.highlight-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 32px;
}

.highlight-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 48px;
  max-width: 800px;
  letter-spacing: -0.02em;
}

.highlight-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.highlight-text {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0;
  font-weight: 400;
}

.highlight-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid #E5E5E5;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Project Gallery Section */
.project-gallery-section {
  background: #fff;
  padding: 80px 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.gallery-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0;
  letter-spacing: -0.02em;
}

.gallery-main-image {
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-main-image:hover img {
  transform: scale(1.02);
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.thumbnail-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Responsive Styles for Project Detail Page */
@media (max-width: 1024px) {
  .project-detail-title {
    font-size: 2.8rem;
  }

  .project-images-grid {
    gap: 24px;
  }

  .project-name-overlay {
    font-size: 2.5rem;
    bottom: 32px;
    left: 32px;
  }

  .project-info-cards-overlay {
    padding: 20px;
    gap: 7px;
  }

  .highlight-wrapper {
    padding: 48px;
    border-radius: 28px;
  }

  .highlight-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .highlight-content-grid {
    gap: 24px;
  }

  .highlight-text {
    padding: 40px;
  }

  .gallery-header {
    margin-bottom: 48px;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .gallery-main-image {
    border-radius: 28px;
    margin-bottom: 28px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .thumbnail-item {
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .project-detail-title {
    font-size: 2.2rem;
  }

  .project-images-grid {
    grid-template-columns: 1fr;
  }

  .project-main-image {
    aspect-ratio: 16 / 11;
  }

  .project-info-side {
    min-height: 500px;
  }

  .project-name-overlay {
    font-size: 2rem;
    bottom: 24px;
    left: 24px;
  }

  .project-info-cards-overlay {
    top: 45%;
    padding: 22px;
    gap: 7px;
  }

  .project-description-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .description-content p {
    font-size: 1rem;
  }

  .highlight-wrapper {
    padding: 40px;
    border-radius: 24px;
  }

  .highlight-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }

  .highlight-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .highlight-text {
    gap: 16px;
    padding: 36px;
  }

  .highlight-text p {
    font-size: 0.95rem;
  }

  .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-main-image {
    border-radius: 24px;
    margin-bottom: 24px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .thumbnail-item {
    border-radius: 14px;
  }
}

@media (max-width: 520px) {
  .project-detail-hero {
    padding: 32px 0 40px;
  }

  .project-detail-title {
    font-size: 1.8rem;
  }

  .project-main-image,
  .project-info-side {
    border-radius: 24px;
  }

  .project-info-side {
    min-height: 450px;
  }

  .project-name-overlay {
    font-size: 1.5rem;
    bottom: 20px;
    left: 20px;
  }

  .project-info-cards-overlay {
    padding: 18px;
    gap: 7px;
  }

  .info-card {
    padding: 9px 12px;
    gap: 8px;
  }

  .info-icon {
    width: 28px;
    height: 28px;
  }

  .info-icon svg {
    width: 14px;
    height: 14px;
  }

  .info-label {
    font-size: 0.6rem;
  }

  .info-value {
    font-size: 0.75rem;
  }

  .btn-catalog {
    width: 100%;
    justify-content: center;
  }

  .highlight-section {
    padding: 60px 0;
  }

  .highlight-wrapper {
    padding: 28px;
    border-radius: 20px;
  }

  .highlight-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .highlight-content-grid {
    gap: 20px;
  }

  .highlight-text {
    padding: 28px;
  }

  .highlight-image {
    border-radius: 20px;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-header {
    margin-bottom: 32px;
  }

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-main-image {
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .gallery-thumbnails {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .thumbnail-item {
    border-radius: 12px;
  }
}

/* Pagination Styles */
.pagination {
  display: flex !important;
  gap: 6px !important;
  justify-content: center !important;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  list-style: none !important;
  padding: 0 !important;
  flex-wrap: wrap;
}

.pagination .page-item {
  margin: 0 !important;
  list-style: none !important;
}

.pagination .page-link {
  padding: 6px 10px !important;
  font-size: 0.8rem !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 4px !important;
  color: #374151 !important;
  text-decoration: none !important;
  background-color: #fff !important;
  transition: all 0.2s ease !important;
  display: block !important;
  min-width: 32px;
  text-align: center;
  line-height: 1.4;
}

.pagination .page-link:hover {
  background-color: #f3f4f6 !important;
  border-color: #d1d5db !important;
  color: #090f18 !important;
}

.pagination .page-item.active .page-link {
  background-color: #090f18 !important;
  border-color: #090f18 !important;
  color: #fff !important;
  cursor: default !important;
}

.pagination .page-item.disabled .page-link {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background-color: #f9fafb !important;
}

.pagination .page-item.disabled .page-link:hover {
  background-color: #f9fafb !important;
  border-color: #e5e7eb !important;
  color: #374151 !important;
}

/* Override Bootstrap pagination styles */
ul.pagination li.page-item {
  margin: 0 !important;
}

ul.pagination li.page-item a.page-link,
ul.pagination li.page-item span.page-link {
  padding: 6px 10px !important;
  font-size: 0.8rem !important;
  min-width: 32px;
  text-align: center;
}
