/* TOKENS */
:root {
  --primary-red: #FF1F1F;
  --primary-blue: #1E4DB7;
  --dark-text: #111111;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --border-gray: #E5E7EB;
  --surface: #FFFFFF;
  --muted: #6B7280;
  --gradient: linear-gradient(135deg, #1E4DB7 0%, #7A2FA5 50%, #FF1F1F 100%);
  --radius: 16px;
  --shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 16px 36px rgba(17, 17, 17, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light-gray);
  color: var(--dark-text);
  line-height: 1.65;
  font-size: 18px;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  margin: 0;
}

p,
li,
span {
  font-family: 'Inter', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* NAV */


.navbar-custom {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-red);
  color: #fff;
  font-weight: 800;

  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
}

.nav-logo-sub {
  font-size: 12px;
  color: var(--muted);
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary-red);
}

/* CTA */
.nav-cta {
  background: var(--primary-red);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 3px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;

    flex-direction: column;
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 20px;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* HERO */

#hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url('images/home-background-image.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.blueprint-grid,
.hero-accent {
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

/* HERO TEXT */

.hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-h1 span {
  color: var(--primary-red);
}

.hero-tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* BUTTONS */

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-secondary {
  background: #fff;
  color: var(--primary-blue);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--primary-blue);
}

/* STATS */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-num {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

/* SECTIONS */

section {
  padding: 88px 6%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--primary-red);
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 52px;
}


@media (max-width: 992px) {
  .hero-stats {
    margin-top: 30px;
  }
}

/* TABLET + MOBILE */
@media (max-width: 576px) {

  section {
    padding: 60px 5%;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-sub {
    font-size: 15px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }

  .stat-num {
    font-size: 30px;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 400px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* ABOUT  */
#about {
  background: var(--surface);
}

.about-visual {
  position: relative;
}

.about-img-block {
  background-image: url('images/jayProLogo.png');
  background-size: cover;
  background-position: center;
  min-height: 450px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-img-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.about-badge {
  position: absolute;
  right: -15px;
  bottom: -15px;
  background: var(--primary-red);
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 2;
}

.about-badge-num {
  font-size: 34px;
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.about-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.point-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.point-text {
  font-size: 16px;
  line-height: 1.8;
}

/* Tablet */
@media (max-width: 991.98px) {

  .about-img-block {
    min-height: 350px;
  }

  .about-badge {
    right: 15px;
    bottom: 15px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {

  .about-img-block {
    min-height: 280px;
  }

  .about-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 15px;
    display: inline-block;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .point-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-points {
    gap: 15px;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {

  .about-img-block {
    min-height: 240px;
  }

  .about-badge-num {
    font-size: 28px;
  }

  .about-badge {
    padding: 15px 20px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* SERVICES */

#services {
  padding: 80px 0;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.service-tag {
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 102, 255, 0.08);
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 600;
}

.pkg-btn {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Mobile Improvements */
@media (max-width: 576px) {
  .service-card {
    padding: 24px 18px;
  }

  .service-icon {
    font-size: 34px;
  }

  .service-title {
    font-size: 1.05rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }

  .pkg-btn {
    max-width: 100%;
  }
}

/* PACKAGES */

#packages {
  background: var(--surface);
}

.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pkg-card.featured {
  background: linear-gradient(180deg,
      rgba(255, 31, 31, 0.08) 0%,
      rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(255, 31, 31, 0.16);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.pkg-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pkg-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 24px;
}

.pkg-unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--muted);
  text-align: left;
}

.pkg-features li::before {
  content: "✓";
  color: var(--primary-red);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: var(--primary-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.pkg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 31, 31, 0.16);
}

@media (max-width: 576px) {
  .pkg-card {
    padding: 28px 20px;
  }

  .pkg-price {
    font-size: 40px;
  }

  .pkg-features li {
    font-size: 14px;
  }
}


/* PROCESS */

#process {
  background: var(--light-gray);
}

.step {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 34px 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.step-num {
  width: 72px;
  height: 72px;
  background: rgba(255, 31, 31, 0.1);
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  margin: 0 auto 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: 800;
  color: var(--primary-red);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 576px) {
  .step {
    padding: 28px 18px;
  }

  .step-num {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    font-size: 14px;
  }
}

/*LEAD POPUP*/

.lead-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lead-popup.active {
  display: flex;
}

.popup-content {
  background: #fff;
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  animation: popupFade 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-close {
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  background: none;
  font-size: 32px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.popup-close:hover {
  color: #e53935;
}

.popup-header {
  text-align: center;
  margin-bottom: 25px;
}

.popup-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.popup-header p {
  color: var(--muted);
  line-height: 1.8;
}

.popup-content .form-group {
  margin-bottom: 16px;
}

.popup-content input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

.popup-content input:focus {
  border-color: var(--primary-blue);
}

.popup-content .form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.popup-success {
  display: none;
  text-align: center;
}

.popup-success .success-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

.popup-success h3 {
  margin-bottom: 10px;
}

.popup-success p {
  color: var(--muted);
}

@media (max-width: 768px) {
  .popup-content {
    max-width: 100%;
    padding: 24px;
  }

  .popup-header h2 {
    font-size: 24px;
  }
}

/* FOOTER */

footer {
  background: #0f2973;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  margin-bottom: 40px;
}

/* Brand */
.footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Social buttons */
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.social-btn:hover {
  background: var(--primary-red);
}

/* Titles */
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-red);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;

  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  .social-btn {
    width: 34px;
    height: 34px;
  }
}

/*WHATSAPP FLOAT*/

.floating-buttons {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn {
  background: var(--primary-red);
}

.call-btn:hover {
  background: var(--primary-red);
}

.whatsapp-btn:hover {
  background: #1da851;
}

@media (max-width: 768px) {
  .floating-buttons {
    right: 16px;
    bottom: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* TESTIMONIALS */

#testimonials {
  background: var(--surface);
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.testi-stars {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text);
}

.testi-city {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 576px) {
  .testi-card {
    padding: 24px 18px;
  }

  .testi-stars {
    font-size: 18px;
  }

  .testi-text {
    font-size: 14px;
  }

  .testi-avatar {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
}

/* CONTACT */

#contact {
  background: linear-gradient(135deg,
      rgba(30, 77, 183, 0.95),
      rgba(122, 47, 165, 0.92));
}

#contact .section-title {
  color: #fff;
}

#contact .section-sub {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.ci-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}

.ci-value {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 15px;
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
}

.popup-header {
  text-align: center;
  margin-bottom: 25px;
}

.popup-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.popup-header p {
  color: var(--muted);
  line-height: 1.8;
}

.form-control {
  height: 52px;
  border-radius: 10px;
}

.form-submit {
  border: none;
  padding: 14px;
  border-radius: 999px;
  background: var(--primary-red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit:hover {
  transform: translateY(-2px);
}

.popup-success {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 25px 20px;
  }

  .popup-header h2 {
    font-size: 22px;
  }

  .ci-value {
    font-size: 14px;
  }
}

