:root {
  --dark: #171512;

  --dark-2: #211e19;

  --dark-3: #2b261f;

  --cream: #f5efe3;

  --cream-2: #e9dfce;

  --orange: #e28a35;

  --orange-light: #f1ad63;

  --white: #ffffff;

  --text: #f6f1e8;

  --muted: #aaa39a;

  --text-dark: #24211d;

  --border: rgba(255, 255, 255, 0.1);

  --shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* =====================================================
           GLOBAL
        ====================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;

  background: var(--dark);

  color: var(--text);

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.text-orange {
  color: var(--orange);
}

.section-padding {
  padding: 110px 0;
}

.section-title {
  font-family: "Playfair Display", serif;

  font-size: clamp(2.2rem, 5vw, 4rem);

  line-height: 1.1;
}

.section-subtitle {
  color: var(--muted);

  max-width: 650px;

  line-height: 1.8;
}

/* =====================================================
           PRELOADER
        ====================================================== */

#preloader {
  position: fixed;

  inset: 0;

  background: var(--dark);

  z-index: 99999;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.5s;
}

.loader {
  width: 55px;

  height: 55px;

  border: 3px solid rgba(255, 255, 255, 0.12);

  border-top-color: var(--orange);

  border-radius: 50%;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
           NAVBAR
        ====================================================== */

.navbar {
  position: fixed;

  width: 100%;

  top: 0;

  z-index: 1000;

  padding: 22px 0;

  transition: 0.4s;
}

.navbar.scrolled {
  background: rgba(23, 21, 18, 0.94);

  backdrop-filter: blur(18px);

  padding: 14px 0;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  color: white !important;

  font-size: 1.5rem;

  font-weight: 700;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* background: var(--orange); */
  border-radius: 12px;
  margin-right: 8px;
  overflow: hidden;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 7px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange-light) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =====================================================
           BUTTON
        ====================================================== */

.btn-orange {
  background: var(--orange);

  color: var(--dark);

  border: 1px solid var(--orange);

  padding: 13px 24px;

  border-radius: 50px;

  font-weight: 700;

  transition: 0.3s;
}

.btn-orange:hover {
  background: var(--orange-light);

  color: var(--dark);

  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(226, 138, 53, 0.25);
}

.btn-outline-custom {
  color: white;

  border: 1px solid rgba(255, 255, 255, 0.25);

  padding: 13px 24px;

  border-radius: 50px;

  transition: 0.3s;
}

.btn-outline-custom:hover {
  color: var(--orange);

  border-color: var(--orange);

  transform: translateY(-3px);
}

/* =====================================================
           HERO
        ====================================================== */

.hero {
  min-height: 100vh;

  display: flex;

  align-items: center;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(226, 138, 53, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(241, 173, 99, 0.08),
      transparent 25%
    ),
    var(--dark);
}

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  opacity: 0.05;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);

  background-size: 60px 60px;
}

.hero-content {
  position: relative;

  z-index: 2;
}

.hero-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 8px 15px;

  border-radius: 50px;

  color: var(--orange-light);

  background: rgba(226, 138, 53, 0.08);

  border: 1px solid rgba(226, 138, 53, 0.3);

  font-size: 0.85rem;

  margin-bottom: 25px;
}

.pulse {
  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #79d27a;

  box-shadow: 0 0 0 5px rgba(121, 210, 122, 0.1);
}

.hero h1 {
  font-family: "Playfair Display", serif;

  font-size: clamp(3rem, 7vw, 6.5rem);

  line-height: 0.98;

  letter-spacing: -3px;

  max-width: 950px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-description {
  max-width: 620px;

  color: #aaa49b;

  line-height: 1.8;

  font-size: 1.08rem;

  margin: 30px 0;
}

.hero-buttons {
  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

.hero-visual {
  height: 500px;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;
}

.visual-circle {
  width: 390px;

  height: 390px;

  border-radius: 50%;

  border: 1px solid rgba(226, 138, 53, 0.35);

  background: radial-gradient(
    circle,
    rgba(226, 138, 53, 0.18),
    transparent 65%
  );

  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.visual-icon {
  position: absolute;

  font-size: 9rem;

  color: var(--orange);

  filter: drop-shadow(0 20px 30px rgba(226, 138, 53, 0.2));
}

.floating-box {
  position: absolute;

  background: rgba(42, 38, 31, 0.9);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(15px);

  padding: 16px 20px;

  border-radius: 17px;

  box-shadow: var(--shadow);
}

.floating-box i {
  color: var(--orange);

  margin-right: 8px;
}

.floating-one {
  top: 50px;

  right: 0;

  animation: float 4s ease-in-out infinite;
}

.floating-two {
  bottom: 40px;

  left: 0;

  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* =====================================================
           MARQUEE
        ====================================================== */

.marquee {
  overflow: hidden;

  white-space: nowrap;

  background: var(--orange);

  color: var(--dark);

  padding: 17px 0;
}

.marquee-content {
  display: inline-block;

  animation: marquee 25s linear infinite;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.marquee-content span {
  margin: 0 30px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Projects */

/* 22 */

/* =========================================
   PROJECT / WEBSITE KAMI
========================================= */

.projects {
  background: var(--cream);
  color: var(--text-dark);
}

.projects .section-subtitle {
  color: #706a62;
}

/* PROJECT CARD */

.project-card {
  height: 100%;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 25, 20, 0.08);
  transition: 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(30, 25, 20, 0.15);
}

/* PROJECT IMAGE */

.project-image {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #2c2722;
}

/* IMAGE */

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

/* OVERLAY */

.project-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(20, 17, 14, 0.85),
    rgba(20, 17, 14, 0.15)
  );

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 20px;

  opacity: 0;
  transition: 0.35s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* DEMO BUTTON */

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: var(--orange);
  color: white;

  padding: 10px 17px;

  border-radius: 50px;

  font-size: 0.85rem;
  font-weight: 700;

  text-decoration: none;

  transition: 0.3s;
}

.demo-btn:hover {
  background: #c96a27;
  color: white;
  transform: translateY(-2px);
}

/* PROJECT TYPE */

.project-type {
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* PROJECT CONTENT */

.project-content {
  padding: 26px;
}

.project-category {
  color: var(--orange);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.project-content h4 {
  margin: 9px 0;
  font-weight: 700;
  color: var(--dark);
}

.project-content p {
  color: #746f67;
  line-height: 1.7;
  margin-bottom: 0;
}

/* TECH */

.project-tech {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tech {
  background: #f3eee5;
  color: #5d574e;

  padding: 6px 10px;

  border-radius: 50px;

  font-size: 0.72rem;
}

/* DEMO LINK MOBILE */

.project-demo-mobile {
  display: none;
}

/* =========================================
   DEMO BUTTON ALWAYS AVAILABLE
========================================= */

.project-demo {
  margin-top: 20px;
}

.project-demo a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--dark);

  font-weight: 700;
  text-decoration: none;

  font-size: 0.9rem;

  transition: 0.3s;
}

.project-demo a:hover {
  color: var(--orange);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {
  .project-image {
    height: 220px;
  }

  .project-overlay {
    opacity: 1;

    background: linear-gradient(to top, rgba(20, 17, 14, 0.75), transparent);
  }

  .project-content {
    padding: 22px;
  }
}

/* =====================================================
           HOW IT WORKS
        ====================================================== */

.how {
  background: var(--dark-2);
}

.step {
  position: relative;

  text-align: center;

  padding: 30px;
}

.step-number {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: var(--orange);

  color: var(--dark);

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 25px;

  font-weight: 700;

  font-size: 1.1rem;
}

.step h4 {
  font-weight: 700;
}

.step p {
  color: var(--muted);

  line-height: 1.7;
}

.step-arrow {
  position: absolute;

  top: 55px;

  right: -15px;

  color: var(--orange);
}

/* =========================================
   PRICING
========================================= */

.pricing {
  background: var(--cream);
  color: var(--text-dark);
}

.pricing .section-subtitle {
  color: #706a62;
}

/* PRICE CARD */

.price-card {
  height: 100%;
  padding: 35px;

  border: 1px solid #e2dbcf;
  border-radius: 25px;

  background: white;

  transition: 0.4s;

  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(30, 25, 20, 0.1);
}

/* CARD FEATURE */

.price-card.featured {
  background: var(--dark);
  color: white;

  border: 2px solid var(--orange);

  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

/* LABEL */

.price-label {
  display: inline-block;

  padding: 6px 12px;

  border-radius: 50px;

  background: rgba(226, 138, 53, 0.12);

  color: var(--orange);

  font-size: 0.72rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.8px;
}

/* TITLE */

.price-card h4 {
  margin-top: 20px;

  font-weight: 700;

  font-size: 1.35rem;
}

/* PRICE */

.price {
  font-family: "Playfair Display", serif;

  font-size: 2.3rem;

  font-weight: 700;

  margin: 20px 0;
}

.price small {
  font-family: "DM Sans", sans-serif;

  font-size: 0.8rem;

  color: #8b847b;
}

/* PRICE DESCRIPTION */

.price-description {
  color: #6f6961;

  font-size: 0.9rem;

  line-height: 1.7;

  min-height: 70px;
}

.featured .price-description {
  color: #b9b2a8;
}

/* PRICE LIST */

.price-list {
  list-style: none;

  padding: 0;

  margin: 25px 0;
}

.price-list li {
  margin-bottom: 14px;

  color: #6f6961;

  font-size: 0.9rem;
}

.featured .price-list li {
  color: #b9b2a8;
}

.price-list i {
  color: var(--orange);

  margin-right: 8px;
}

/* PRICE NOTE */

.price-note {
  color: #80796f;

  font-size: 0.85rem;

  line-height: 1.6;
}

.featured .price-note {
  color: #8e877d;
}

/* PRICE CTA */

.price-btn {
  border-radius: 50px;

  padding: 11px 20px;

  font-weight: 600;

  transition: 0.3s;
}

.price-btn:hover {
  transform: translateY(-2px);
}

/* INFO */

.pricing-info {
  max-width: 750px;

  margin: auto;

  color: #706a62;

  font-size: 0.88rem;

  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 767px) {
  .price-card {
    padding: 28px;
  }

  .price {
    font-size: 2rem;
  }
}

/* =====================================================
           FAQ
        ====================================================== */

.accordion-button:not(.collapsed) {
  background: var(--dark-3);

  color: var(--orange);
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-body {
  background: var(--dark-3);

  color: var(--muted);

  line-height: 1.8;
}

/* =====================================================
           CTA
        ====================================================== */

.cta {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(226, 138, 53, 0.2),
      transparent 35%
    ),
    var(--dark);
}

.cta-box {
  border: 1px solid rgba(226, 138, 53, 0.3);

  border-radius: 35px;

  padding: 70px 40px;

  text-align: center;

  background: rgba(226, 138, 53, 0.04);
}

/* =====================================================
           CONTACT
        ====================================================== */

.contact {
  background: var(--cream);

  color: var(--text-dark);
}

.contact .section-subtitle {
  color: #706a62;
}

.contact-info {
  background: var(--dark);

  color: white;

  border-radius: 25px;

  padding: 35px;

  height: 100%;
}

.contact-item {
  display: flex;

  gap: 15px;

  margin-bottom: 25px;
}

.contact-icon {
  min-width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(226, 138, 53, 0.12);

  color: var(--orange);

  border-radius: 12px;
}

.contact-item p {
  color: var(--muted);

  margin: 0;
}

.contact-form {
  background: white;

  padding: 35px;

  border-radius: 25px;

  box-shadow: 0 20px 60px rgba(30, 25, 20, 0.08);
}

.form-control,
.form-select {
  padding: 14px 16px;

  border-radius: 12px;

  border: 1px solid #ddd6cb;

  background: #faf9f6;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);

  box-shadow: 0 0 0 3px rgba(226, 138, 53, 0.12);
}

/* =====================================================
           FOOTER
        ====================================================== */

footer {
  background: #100f0d;

  padding: 70px 0 25px;
}

.footer-brand {
  color: white;

  font-size: 1.5rem;

  font-weight: 700;
}

.footer-text {
  color: var(--muted);

  line-height: 1.8;

  max-width: 420px;
}

.footer-title {
  font-weight: 700;

  margin-bottom: 20px;
}

.footer-links {
  list-style: none;

  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);

  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--orange);

  padding-left: 5px;
}

.social-links {
  display: flex;

  gap: 10px;
}

.social-links a {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  color: white;

  transition: 0.3s;
}

.social-links a:hover {
  background: var(--orange);

  color: var(--dark);

  transform: translateY(-4px);
}

.copyright {
  border-top: 1px solid var(--border);

  margin-top: 50px;

  padding-top: 25px;

  color: #77716a;

  text-align: center;

  font-size: 0.9rem;
}

/* =====================================================
           BACK TO TOP
        ====================================================== */

#backToTop {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 50px;

  height: 50px;

  border: none;

  border-radius: 50%;

  background: var(--orange);

  color: var(--dark);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 999;
}

#backToTop.show {
  opacity: 1;

  visibility: visible;
}

/* =====================================================
           REVEAL
        ====================================================== */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}

/* =====================================================
           RESPONSIVE
        ====================================================== */

@media (max-width: 991px) {
  .navbar {
    background: rgba(23, 21, 18, 0.95);

    backdrop-filter: blur(15px);
  }

  .navbar-collapse {
    margin-top: 15px;

    padding: 20px;

    background: var(--dark-2);

    border-radius: 20px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-visual {
    height: 400px;

    margin-top: 20px;
  }

  .step-arrow {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 3.4rem;

    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-visual {
    height: 320px;
  }

  .visual-circle {
    width: 240px;

    height: 240px;
  }

  .visual-icon {
    font-size: 6rem;
  }

  .floating-box {
    font-size: 0.8rem;

    padding: 12px 14px;
  }

  .floating-one {
    right: 0;
  }

  .floating-two {
    left: 0;
  }

  .project-image {
    height: 220px;
  }

  .cta-box {
    padding: 50px 25px;
  }

  .contact-form {
    padding: 25px;
  }

  #backToTop {
    right: 15px;

    bottom: 15px;

    width: 45px;

    height: 45px;
  }
}

/* =========================================
   PROJECT DETAIL PAGE
========================================= */

.project-back-link {
  display: inline-flex;
  align-items: center;

  color: #555;
  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.project-back-link:hover {
  color: #f97316;

  transform: translateX(-4px);
}


/* =========================================
   GALLERY
========================================= */

.project-detail-gallery {
  overflow: hidden;

  border-radius: 20px;

  background: #111;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.project-detail-gallery .carousel-item {
  height: 580px;

  background: #111;
}

.project-detail-gallery .carousel-item img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* =========================================
   PROJECT DETAIL CONTENT
========================================= */

.project-detail-content {
  padding: 35px;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.project-detail-content p {
  color: #666;

  line-height: 1.8;

  margin-bottom: 16px;
}


/* =========================================
   FEATURE
========================================= */

.project-feature {
  display: flex;

  gap: 15px;

  height: 100%;

  padding: 20px;

  background: #f8f9fa;

  border-radius: 14px;

  transition: 0.3s;
}

.project-feature:hover {
  background: #fff;

  transform: translateY(-4px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #fff0e6;

  color: #f97316;
}

.project-feature h6 {
  margin-bottom: 5px;

  font-weight: 700;
}

.project-feature p {
  margin: 0;

  font-size: 13px;

  line-height: 1.6;
}


/* =========================================
   ORDER CARD
========================================= */

.project-order-card {
  padding: 30px;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.project-price-section {
  padding: 25px 0;

  margin: 15px 0;

  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.project-price-section span {
  display: block;

  color: #888;

  font-size: 13px;

  margin-bottom: 5px;
}

.project-price-section h2 {
  margin: 0;

  color: #f97316;

  font-size: 30px;

  font-weight: 800;
}

.project-price-section small {
  display: block;

  margin-top: 8px;

  color: #888;

  line-height: 1.5;
}


/* =========================================
   INFO ROW
========================================= */

.project-info-row {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 15px 0;

  border-bottom: 1px solid #eee;
}

.project-info-row:last-child {
  border-bottom: none;
}

.project-info-row span {
  color: #888;

  font-size: 13px;
}

.project-info-row strong {
  text-align: right;

  font-size: 14px;
}


/* =========================================
   NOTE
========================================= */

.project-order-note {
  padding: 12px;

  border-radius: 10px;

  background: #f8f9fa;

  color: #777;

  font-size: 12px;

  line-height: 1.6;
}


/* =========================================
   SIDEBAR INFO
========================================= */

.project-sidebar-info {
  padding: 25px;

  background: #fff;

  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

  .project-detail-gallery .carousel-item {
    height: 350px;
  }

  .project-detail-content,
  .project-order-card,
  .project-sidebar-info {
    padding: 25px;
  }

}


@media (max-width: 576px) {

  .project-detail-gallery .carousel-item {
    height: 260px;
  }

  .project-price-section h2 {
    font-size: 25px;
  }

}