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

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

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

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

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

body {
  font-family: "Inter", sans-serif;
  color: #4a4a4a;
  background-color: #f9f9f9;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .subtitle {
  color: #c49f5d;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}
.section-header .title {
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  color: #121212;
  font-weight: 700;
}
@media (max-width: 768px) {
  .section-header .title {
    font-size: 2rem;
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #c49f5d;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 4px;
}
.btn:hover {
  background-color: rgb(166.6, 135.15, 79.05);
}
.btn--outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn--outline:hover {
  background-color: #ffffff;
  color: #121212;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background-color: transparent;
  transition: 0.3s ease;
}
.header.scrolled {
  background-color: #121212;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.header .logo:hover {
  transform: scale(1.02);
}
.header .logo:hover .logo-icon {
  color: #ffffff;
}
.header .logo .logo-text {
  font-weight: 400;
}
.header .logo .logo-highlight {
  font-weight: 800;
  color: #c49f5d;
}
@media (max-width: 768px) {
  .header .logo {
    font-size: 1.2rem;
  }
}
.header .nav-menu {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    background-color: #121212;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
  .header .nav-menu.active {
    right: 0;
  }
}
.header .nav-menu .nav-link {
  color: #ffffff;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.2rem;
}
.header .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c49f5d;
  transition: 0.3s ease;
}
.header .nav-menu .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header .nav-menu .nav-link {
    font-size: 1.5rem;
  }
}
.header .hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.header .hamburger span {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
  }
}
.header .hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url("../assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}
@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}
.hero .hero-content {
  max-width: 800px;
}
.hero .hero-content .hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero .hero-content .hero-title span {
  color: #c49f5d;
}
@media (max-width: 768px) {
  .hero .hero-content .hero-title {
    font-size: 2.5rem;
  }
}
.hero .hero-content .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
}
.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 500px) {
  .hero .hero-content .hero-buttons {
    flex-direction: column;
  }
}

.services {
  background-color: #ffffff;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.services .service-card {
  background-color: #f9f9f9;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  transition: 0.5s ease;
  border-bottom: 3px solid transparent;
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom-color: #c49f5d;
}
.services .service-card:hover .service-icon {
  color: #c49f5d;
  transform: scale(1.1);
}
.services .service-card .service-icon {
  font-size: 3rem;
  color: #121212;
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
}
.services .service-card .service-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  color: #121212;
  margin-bottom: 1rem;
}
.services .service-card .service-desc {
  font-size: 0.95rem;
  color: #4a4a4a;
}

.work-carousel {
  background: linear-gradient(180deg, #f6f1e7 0%, #ffffff 100%);
}
.work-carousel__shell {
  position: relative;
  padding: 1.5rem 0 4.5rem;
}
.work-carousel__viewport {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.14);
}
.work-carousel__track {
  display: flex;
  transition: transform 0.6s ease;
}
.work-carousel__slide {
  min-width: 100%;
  position: relative;
  isolation: isolate;
  background-color: #121212;
}
.work-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.72) 0%, rgba(18, 18, 18, 0.22) 52%, rgba(18, 18, 18, 0.08) 100%);
  z-index: 1;
}
.work-carousel__slide img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.work-carousel__content {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  max-width: 32rem;
  color: #ffffff;
  z-index: 2;
}
.work-carousel__content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2.35rem;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.work-carousel__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.75;
}
.work-carousel__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #c49f5d;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.work-carousel__button {
  position: absolute;
  top: calc(50% - 1.5rem);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 18, 0.68);
  color: #ffffff;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s ease;
}
.work-carousel__button:hover {
  background: #c49f5d;
  color: #121212;
}
.work-carousel__button--prev {
  left: 1.5rem;
}
.work-carousel__button--next {
  right: 1.5rem;
}
.work-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 3;
}
.work-carousel__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.3s ease;
}
.work-carousel__dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: #c49f5d;
}
@media (max-width: 900px) {
  .work-carousel__slide img {
    height: 520px;
  }
  .work-carousel__content {
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
  }
  .work-carousel__content h3 {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  .work-carousel__shell {
    padding: 0.75rem 0 4rem;
  }
  .work-carousel__viewport {
    border-radius: 18px;
  }
  .work-carousel__slide img {
    height: 440px;
  }
  .work-carousel__slide::after {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.1) 0%, rgba(18, 18, 18, 0.78) 100%);
  }
  .work-carousel__content {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.4rem;
  }
  .work-carousel__content h3 {
    font-size: 1.55rem;
  }
  .work-carousel__content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .work-carousel__button {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(18, 18, 18, 0.58);
  }
  .work-carousel__button--prev {
    left: 1rem;
  }
  .work-carousel__button--next {
    right: 1rem;
  }
}

.portfolio {
  background-color: #f9f9f9;
}
.portfolio .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.portfolio .project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio .project-card:focus-visible {
  outline: 3px solid rgba(196, 159, 93, 0.75);
  outline-offset: 4px;
}
.portfolio .project-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio .project-card .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: 0.3s ease;
}
.portfolio .project-card .project-title {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: 0.3s ease;
}
.portfolio .project-card .project-desc {
  color: #c49f5d;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.portfolio .project-card:hover img {
  transform: scale(1.05);
}
.portfolio .project-card:hover .project-overlay {
  opacity: 1;
}
.portfolio .project-card:hover .project-title, .portfolio .project-card:hover .project-desc {
  transform: translateY(0);
}

.project-lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2000;
}
.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.project-lightbox.is-open .project-lightbox__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.project-lightbox.is-open .project-lightbox__image {
  transform: scale(1);
}
.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
}
.project-lightbox__dialog {
  position: relative;
  width: min(100%, 1080px);
  max-height: calc(100vh - 4rem);
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.project-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 18, 0.72);
  color: #ffffff;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s ease;
}
.project-lightbox__close:hover {
  background: #c49f5d;
  color: #121212;
}
.project-lightbox__figure {
  display: grid;
  margin: 0;
}
.project-lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transform: scale(0.98);
  transition: transform 0.45s ease;
}
.project-lightbox__caption {
  padding: 1.5rem 1.75rem 1.8rem;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.92));
}
.project-lightbox__caption h3 {
  margin-bottom: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
}
.project-lightbox__caption p {
  color: #e0e0e0;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .project-lightbox {
    padding: 1rem;
  }
  .project-lightbox__dialog {
    border-radius: 18px;
  }
  .project-lightbox__image {
    max-height: 64vh;
  }
  .project-lightbox__caption {
    padding: 1.1rem 1.15rem 1.25rem;
  }
}

body.lightbox-open {
  overflow: hidden;
}

.about {
  background-color: #ffffff;
}
.about .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about .about-container {
    grid-template-columns: 1fr;
  }
}
.about .about-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}
.about .about-content .about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 2.5rem;
}
.about .about-content .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.about .about-content .features-grid .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about .about-content .features-grid .feature-item i {
  color: #c49f5d;
  font-size: 1.5rem;
}
.about .about-content .features-grid .feature-item span {
  font-weight: 600;
  color: #121212;
}
.about .about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
.about .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about .about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background-color: #c49f5d;
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}
.about .about-image .experience-badge .years {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f3efe8 100%);
}
.contact .contact-wrapper {
  display: block;
}
.contact .contact-info {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 3.5rem;
  background-color: #121212;
  color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.contact .contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(196, 159, 93, 0.22), transparent 35%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact .contact-info {
    padding: 2rem;
    border-radius: 16px;
  }
}
.contact .contact-info > * {
  position: relative;
  z-index: 1;
}
.contact .contact-info .contact-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c49f5d;
  background-color: rgba(255, 255, 255, 0.04);
}
.contact .contact-info h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact .contact-info h3 {
    font-size: 2rem;
  }
}
.contact .contact-info p {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
}
.contact .contact-info .contact-highlight {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid #c49f5d;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 0 12px 12px 0;
}
.contact .contact-info .contact-highlight span {
  color: #ffffff;
  font-weight: 500;
}
.contact .contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.contact .contact-info .info-item i {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #c49f5d;
  background-color: rgba(196, 159, 93, 0.12);
}
.contact .contact-info .info-item a, .contact .contact-info .info-item span {
  color: #ffffff;
  font-size: 1rem;
  transition: 0.3s ease;
}
.contact .contact-info .info-item a:hover, .contact .contact-info .info-item span:hover {
  color: #c49f5d;
}
.contact .contact-info .social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.contact .contact-info .social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}
.contact .contact-info .social-links a:hover {
  background-color: #c49f5d;
  color: #121212;
  transform: translateY(-3px);
}

.footer {
  background-color: #121212;
  color: #e0e0e0;
  padding: 4rem 0 2rem;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer .footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer .footer-brand .logo img {
  height: 40px;
}
.footer .footer-brand p {
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer .footer-links h4 {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.footer .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer .footer-links ul a {
  transition: 0.3s ease;
}
.footer .footer-links ul a:hover {
  color: #c49f5d;
  padding-left: 5px;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

/*# sourceMappingURL=main.css.map */
