/* =========================================================
   VELORA DIGITAL — PREMIUM WEBSITE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #080811;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 17, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 2px;
}

.brand span {
  font-size: 9px;
  letter-spacing: 3px;
  color: #9b7cff;
  margin-top: 4px;
}

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

.navbar nav a {
  font-size: 13px;
  color: #d5d5df;
  transition: 0.3s ease;
}

.navbar nav a:hover {
  color: #9b7cff;
}

.nav-button {
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c5cff, #a58cff);
  color: white;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.nav-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(124, 92, 255, 0.35);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 14, 0.97) 0%,
      rgba(7, 7, 18, 0.88) 38%,
      rgba(7, 7, 18, 0.35) 75%,
      rgba(7, 7, 18, 0.70) 100%
    ),
    url("velora-hero.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(124, 92, 255, 0.22),
      transparent 38%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 90%);
  margin-left: 7%;
  padding-top: 80px;
}

.eyebrow,
.section-label {
  color: #9b7cff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 25px;
}

.hero h1 span,
.intro-section h2 span,
.starting-section h2 span,
.process-section h2 span,
.work-section h2 span,
.cta-section h2 span,
.contact-section h2 span {
  color: #9b7cff;
}

.hero-description {
  max-width: 580px;
  color: #c4c4cf;
  font-size: 17px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary-button {
  border: 0;
  background: linear-gradient(135deg, #7655ff, #a58cff);
  color: white;
  box-shadow: 0 10px 35px rgba(124, 92, 255, 0.22);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(124, 92, 255, 0.4);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.secondary-button:hover {
  border-color: #9b7cff;
  color: #bcaeff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #aaaab7;
  font-size: 12px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
  position: relative;
}

.intro-section,
.services-section,
.starting-section,
.process-section,
.work-section,
.contact-section {
  padding: 120px 7%;
}

.intro-section {
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(124, 92, 255, 0.12),
      transparent 45%
    ),
    #090914;
}

.intro-section h2,
.starting-section h2,
.process-section h2,
.cta-section h2,
.contact-section h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}

.intro-section > p:last-child {
  max-width: 680px;
  margin: auto;
  color: #aaaab8;
  font-size: 17px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-section {
  background: #0c0c17;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.section-heading > p {
  max-width: 420px;
  color: #9999a8;
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 390px;
  padding: 32px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.055),
    rgba(255,255,255,0.018)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(155,124,255,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.service-number {
  color: #9b7cff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 35px;
}

.service-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.service-card > p {
  color: #a6a6b4;
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  color: #c5c5cf;
  font-size: 13px;
  margin-bottom: 25px;
}

.service-card li {
  margin: 7px 0;
}

.service-card li::before {
  content: "✓";
  color: #9b7cff;
  margin-right: 8px;
}

.service-link {
  color: #a994ff;
  font-size: 13px;
  font-weight: 700;
}


/* =========================================================
   STARTING POINT / PRICING
   ========================================================= */

.starting-section {
  background: #080811;
}

.starting-section > p:not(.section-label) {
  max-width: 650px;
  color: #9999a8;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  padding: 38px;
  min-height: 330px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}

.price-card.featured {
  border-color: rgba(155,124,255,0.55);
  background:
    linear-gradient(
      145deg,
      rgba(124,92,255,0.13),
      rgba(255,255,255,0.025)
    );
}

.price-card > p:first-of-type {
  color: #9b7cff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.price-card h3 {
  font-size: 43px;
  margin: 20px 0;
}

.price-card > p:nth-of-type(2) {
  color: #9999a8;
  font-size: 14px;
  margin-bottom: 30px;
}

.price-card a {
  color: #b19cff;
  font-size: 13px;
  font-weight: 700;
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 20px;
  background: #9b7cff;
  font-size: 9px;
  font-weight: 800;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  background: #0c0c17;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.process-card {
  padding: 28px 20px;
  border-top: 1px solid rgba(155,124,255,0.5);
}

.process-card span {
  color: #9b7cff;
  font-size: 12px;
  font-weight: 700;
}

.process-card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.process-card p {
  color: #9999a8;
  font-size: 13px;
}


/* =========================================================
   WORK / PROJECTS
   ========================================================= */

.work-section {
  background: #080811;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: #10101c;
}

.project-image {
  height: 250px;
  overflow: hidden;
  background: #151521;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-info {
  padding: 28px;
}

.project-info > p:first-child {
  color: #9b7cff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.project-info h3 {
  font-size: 25px;
  margin: 10px 0;
}

.project-info > p:nth-of-type(2) {
  color: #9999a8;
  font-size: 13px;
  margin-bottom: 22px;
}

.project-button {
  border: 0;
  background: transparent;
  color: #b19cff;
  padding: 0;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding: 150px 7%;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(124,92,255,0.18),
      transparent 45%
    ),
    #0b0b15;
}

.cta-section p:not(.section-label) {
  color: #9999a8;
  margin: 0 auto 30px;
  max-width: 550px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  background: #080811;
}

.contact-content > p:not(.section-label) {
  color: #9999a8;
  max-width: 500px;
}

.enquiry-form {
  display: grid;
  gap: 14px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  outline: none;
  border-radius: 10px;
  padding: 16px;
  color: white;
  background: #11111d;
  transition: 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: #9b7cff;
  box-shadow: 0 0 0 3px rgba(155,124,255,0.08);
}

.enquiry-form textarea {
  resize: vertical;
}


/* =========================================================
   PROJECT DEMO MODAL
   ========================================================= */

.demo-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  z-index: 2000;
}

.demo-modal.active {
  display: flex;
}

.demo-box {
  position: relative;
  width: min(1000px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #10101c;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

#demoContent img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.demo-text {
  padding: 35px;
}

.demo-text p:first-child {
  color: #9b7cff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.demo-text h2 {
  font-size: 36px;
  margin: 8px 0 12px;
}

.demo-text p:nth-of-type(2) {
  color: #a4a4b2;
  max-width: 700px;
  margin-bottom: 25px;
}

.close-demo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,0.65);
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 45px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #05050a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer strong {
  letter-spacing: 2px;
}

footer p {
  color: #777783;
  font-size: 12px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

  .navbar nav {
    gap: 15px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-section {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 760px) {

  .navbar {
    height: 70px;
    padding: 0 5%;
  }

  .navbar nav {
    display: none;
  }

  .nav-button {
    padding: 10px 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 100svh;
    background-position: center;
  }

  .hero-content {
    width: 90%;
    margin: auto;
    padding-top: 90px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-trust {
    gap: 12px;
  }

  .intro-section,
  .services-section,
  .starting-section,
  .process-section,
  .work-section,
  .contact-section {
    padding: 85px 6%;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .services-grid,
  .projects-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .project-image {
    height: 220px;
  }

  .contact-section {
    gap: 45px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


@media (max-width: 480px) {

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand span {
    font-size: 8px;
  }

  .nav-button {
    font-size: 10px;
    padding: 9px 11px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .price-card {
    padding: 28px;
  }

  .demo-text {
    padding: 25px;
  }
}
/* ===============================
   PROJECT DEMO MODAL
================================ */

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-modal.active {
  visibility: visible;
  opacity: 1;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.82);
  backdrop-filter: blur(12px);
}

.demo-modal-box {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #101528;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.demo-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.demo-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #080b16;
}

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

.demo-content {
  padding: 32px;
}

.demo-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: #8da8ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.demo-content h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(28px, 5vw, 46px);
}

.demo-content p {
  max-width: 700px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

  .demo-modal {
    padding: 14px;
  }

  .demo-modal-box {
    border-radius: 18px;
  }

  .demo-content {
    padding: 24px;
  }

  .demo-image {
    aspect-ratio: 4 / 3;
  }

}
/* =========================================================
   FIX PROJECT DEMO MODAL
   ========================================================= */

.demo-modal-box {
  position: relative;
  width: min(1000px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #10101c;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.demo-image {
  width: 100%;
  overflow: hidden;
}

.demo-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.demo-content {
  padding: 35px;
}

.demo-content span {
  color: #9b7cff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.demo-content h2 {
  font-size: 36px;
  margin: 8px 0 12px;
}

.demo-content p {
  color: #a4a4b2;
  max-width: 700px;
  margin-bottom: 25px;
}

.demo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0,0,0,0.65);
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}

.demo-close:hover {
  background: #9b7cff;
}

body.modal-open {
  overflow: hidden;
}
/* FINAL PROJECT DEMO FIX */

.demo-modal-overlay {
  position: absolute;
  inset: 0;
}

.demo-modal-box {
  position: relative;
  z-index: 2;
  width: min(1000px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #10101c;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}

.demo-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #151521;
}

.demo-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.demo-content {
  padding: 35px;
}

.demo-content span {
  display: block;
  color: #9b7cff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.demo-content h2 {
  color: #ffffff;
  font-size: 36px;
  margin: 0 0 12px;
}

.demo-content p {
  color: #a4a4b2;
  max-width: 700px;
  margin-bottom: 25px;
}

.demo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0,0,0,0.7);
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.demo-close:hover {
  background: #9b7cff;
}

body.modal-open {
  overflow: hidden;
}
