:root {
  --bg-primary: #181818;
  --text-main: #FFFFFF;
  --text-secondary: #CFCFCF;
  --accent: #444444;
  --bg-light: #F2F2F2;
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-light: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 96px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

/* Desktop hero background */
.hero-section--desktop {
  background-image: url('../pictures/hero/MONEN SCHILDERWERKEN-Jelle5.jpg');
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-light);
  z-index: 1;
}

/* Navigation */
.hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.hero-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-nav__logo .nav-logo {
  height: 72px;
  width: auto;
}

.hero-nav__logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.hero-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-nav__links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.hero-nav__links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero-nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-insta-icon {
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.nav-insta-icon:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-whatsapp-icon {
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.nav-whatsapp-icon:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-cta-button {
  background: var(--text-main);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-main);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 5;
  padding-bottom: 2rem;
}

.hero-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

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

.hero-text__overlay {
  background: var(--overlay-dark);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
}

.hero-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--text-main);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

.hero-cta-button {
  display: inline-block;
  background: var(--text-main);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Metrics Strip */
.metrics-strip {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-strip__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.metric {
  text-align: center;
  color: var(--text-main);
}

.metric__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metric__label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Services Section */
.services {
  background: #f7f7f7;
  color: var(--bg-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services__title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--bg-primary);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(24, 24, 24, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(24, 24, 24, 0.15);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  color: var(--bg-primary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-card__icon {
  color: var(--accent);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--bg-primary);
  line-height: 1.3;
}

.service-card__description {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.service-card__link {
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  margin-top: auto;
}

.service-card:hover .service-card__link {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Scroll Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-card.animate:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card.animate:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card.animate:nth-child(3) {
  animation-delay: 0.3s;
}

/* Gallery */
.gallery {
  background: var(--bg-primary);
  color: var(--text-main);
  padding: 4rem 2rem;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 700;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item img {
  width: 100%;
  border-radius: 0.75rem;
  display: block;
  transition: transform 0.3s ease;
}

.gallery__item img:hover {
  transform: scale(1.02);
}

/* Before/After Showcase */
.before-after-showcase {
  background: var(--bg-primary);
  color: var(--text-main);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.before-after__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.before-after__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
}

.before-after__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.before-after__item {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(24, 24, 24, 0.12);
  transition: all 0.3s ease;
}

.before-after__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(24, 24, 24, 0.2);
}

.before-after__header {
  text-align: center;
  margin-bottom: 2rem;
}

.before-after__project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin: 0 0 0.5rem 0;
}

.before-after__project-description {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.before-after__comparison {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.comparison-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.comparison-images {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.before-image-container,
.after-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.after-image-container {
  clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
  transition: clip-path 0.1s ease;
}

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

.image-label {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
}

.comparison-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  cursor: ew-resize;
  pointer-events: all;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider::-moz-range-thumb {
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  transition: all 0.2s ease;
}

.slider-button::before {
  content: '';
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--bg-primary);
  border-right: 2px solid var(--bg-primary);
  border-top: 2px solid var(--bg-primary);
  border-bottom: 2px solid var(--bg-primary);
  transform: rotate(45deg);
}

.comparison-container:hover .slider-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (min-width: 768px) {
  .before-after__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .comparison-images {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .before-after__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .comparison-images {
    height: 350px;
  }
  
  .before-after__item {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .before-after-showcase {
    padding: 3rem 0;
  }
  
  .before-after__title {
    font-size: 2rem;
  }
  
  .before-after__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .before-after__item {
    padding: 1.5rem;
  }
  
  .before-after__project-title {
    font-size: 1.3rem;
  }
  
  .comparison-images {
    height: 300px;
  }
  
  .slider-button {
    width: 40px;
    height: 40px;
  }
  
  .image-label {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* About */
.about {
  background: var(--bg-primary);
  margin-top: 96px;
}

/* About Hero Section */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  z-index: 1;
}

.about-hero__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
}

.about-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about__section {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 2rem 0;
  text-align: center;
  position: relative;
}

.about__section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
}

.about__card {
  text-align: center;
}

.about__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 1.5rem 0;
}

.about__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about__text:last-child {
  margin-bottom: 0;
}

/* Services Detail */
.about__services {
  display: grid;
  gap: 2rem;
}

.service-detail {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.service-detail:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.service-detail h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 1rem 0;
}

.service-detail p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Advantages */
.about__advantages {
  display: grid;
  gap: 2.5rem;
}

.advantage {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.advantage:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.advantage__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.advantage__number {
  font-size: 1.5rem;
  font-weight: 700;
}

.advantage__icon svg {
  width: 28px;
  height: 28px;
}

.advantage__content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 0.75rem 0;
}

.advantage__content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  color: var(--text-main);
  text-align: center;
  padding: 3rem 2rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.footer__logo--large {
  width: 128px;
  height: 128px;
}

.footer__info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.footer__info a {
  color: var(--text-main);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer__info a:hover {
  color: var(--text-secondary);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  background: #25D366;
  border-radius: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background: #20b358;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Responsive Design - Mobile optimized image for narrow screens */
@media (max-width: 1024px) {
  .hero-section--desktop {
    background-image: url('../pictures/hero/MONEN SCHILDERWERKEN-Jelle4.jpg');
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    margin-top: 72px;
  }
  
  .hero-nav__links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-nav__right .nav-cta-button {
    display: none;
  }
  
  .hero-title {
    font-size: 0.9rem;
  }
  
  .hero-subtitle {
    font-size: 0.7rem;
  }
  
  .hero-text__overlay {
    padding: 0.75rem 1rem;
  }
  
  .hero-cta-button {
    width: 100%;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }
  
  .metrics-strip__container {
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .metric__number {
    font-size: 2rem;
  }
  
  .hero-nav__container {
    padding: 1rem;
  }
  
  .hero-content__container {
    padding: 0 1rem;
  }

  .hero-nav__logo .nav-logo {
    height: 56px;
  }

  /* Services Mobile */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    min-height: 240px;
  }
  
  .services__title {
    font-size: 2rem;
  }

  /* About Section Mobile */
  .about-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .about-hero__title {
    font-size: 1.8rem;
  }
  
  .about-hero__overlay {
    padding: 1.5rem 2rem;
  }
  
  .about__container {
    padding: 2rem 1rem;
  }
  
  .about__content {
    gap: 2.5rem;
  }
  
  .about__section {
    padding: 2rem 1.5rem;
  }
  
  .about__section-title {
    font-size: 1.5rem;
  }
  
  .about__name {
    font-size: 1.5rem;
  }
  
  .about__text {
    font-size: 1rem;
  }
  
  .service-detail {
    padding: 1.5rem;
  }
  
  .service-detail h4 {
    font-size: 1.1rem;
  }
  
  .advantage {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .advantage__content h4 {
    font-size: 1.1rem;
  }
}

@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* About Services Grid */
  .about__services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-nav__logo .nav-logo {
    height: 76px;
  }
  
  /* About Advantages Grid */
  .about__advantages {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .advantage {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 1.1rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }

  .hero-cta-button {
    font-size: 0.75rem;
  }
  
  /* About Hero Title Larger */
  .about-hero__title {
    font-size: 3rem;
  }
  
  /* Advantage Items Row Layout */
  .advantage {
    flex-direction: row;
    text-align: left;
  }
}

/* Mobile Menu Animation */
.mobile-nav.active {
  display: flex;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Active Navigation Link */
.hero-nav__links a.active {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* About Hero Section */
.about-hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 96px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  color: var(--text-main);
  max-width: 600px;
  padding: 0 2rem;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.1;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0 0 2rem 0;
  line-height: 1.4;
}

.about-hero-cta {
  display: inline-block;
  background: var(--text-main);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-hero-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Founder Section */
.founder-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.founder__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.founder__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.founder__image {
  display: flex;
  justify-content: center;
}

.founder__portrait {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder__text-content {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder__title {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.founder__bio {
  color: #333333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* About Services Section */
.about-services {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.about-services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-services__title {
  color: var(--text-main);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.2;
}

.about-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-service-card {
  background: var(--bg-primary);
  border: 2px solid var(--text-main);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.about-service-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-service-card__icon svg {
  width: 100%;
  height: 100%;
}

.about-service-card__title {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.about-service-card__description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Highlights Section */
.highlights-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.highlights__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.highlights__title {
  color: var(--text-main);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem 0;
  line-height: 1.2;
}

.highlights__carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  overflow-x: visible;
}

.highlight-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-card__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.highlight-card__icon svg {
  width: 100%;
  height: 100%;
}

.highlight-card__title {
  color: var(--text-main);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.highlight-card__description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Contact Strip */
.contact-strip {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.contact-strip__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.contact-strip__info {
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Mobile Responsive Styles for About Page */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
  }
  
  .about-hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .founder__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .founder__portrait {
    width: 250px;
    height: 250px;
  }
  
  .founder__text-content {
    padding: 2rem;
  }
  
  .founder__title {
    font-size: 2rem;
  }
  
  .founder__bio {
    font-size: 1rem;
  }
  
  .about-services__title,
  .highlights__title {
    font-size: 2rem;
  }
  
  .about-services__grid,
  .highlights__carousel {
    grid-template-columns: 1fr;
  }
  
  .about-service-card,
  .highlight-card {
    padding: 1.5rem;
  }
  
  .contact-strip__info {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (min-width: 1200px) {
  .highlights__carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    overflow-x: visible;
  }
  
  .highlight-card {
    min-width: auto;
    flex-shrink: 1;
  }
} 