@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --primary: #e01e26;
  --primary-dark: #b4161e;
  --black: #0d0d0d;
  --text: #222222;
  --muted: #555555;
  --border: #e8e8e8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
  height: 54px !important;
  object-fit: contain;
}

.navbar-brand,
.nav-link {
  color: var(--black) !important;
  font-weight: 700;
}

.nav-link {
  position: relative;
  padding: 8px 0 !important;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--primary) !important;
  text-decoration: none;
}

.nav-link:hover::after {
  width: 100%;
}

/* Shared Layout */
.container-l,
.main-section,
.offers,
#why-global,
.contact-section,
.global-banner {
  max-width: 1280px;
}

.container-l,
.offers,
#why-global,
.contact-section {
  width: calc(100% - 56px);
  margin-left: auto;
  margin-right: auto;
}

.main-section {
  padding: 56px 0 0;
  margin: 0 auto;
}

.offers,
#why-global,
.contact-section {
  margin-top: 80px;
  padding-top: 72px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.offers > .container,
.contact-section > .container {
  max-width: 1280px;
  padding-left: 0;
  padding-right: 0;
}

/* Headings */
.section-title {
  margin-bottom: 28px;
  color: #080808;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}

.section-title span {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
}

/* Hero */
.ppf-hero-section {
  padding: 92px 0;
  background: #101010;
  color: var(--white);
}

.ppf-hero-section h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -2px;
}

.ppf-hero-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.hero-cta-btn {
  padding: 15px 30px;
  border-radius: 0;
  box-shadow: none;
  font-weight: 800;
  white-space: nowrap;
}

.hero-cta-btn:hover {
  transform: none;
}

/* Top Image + Form */
.main-section > .row {
  align-items: stretch;
}

.price-list-container,
.form-container {
  margin-bottom: 0;
}

.price-list-container {
  padding: 0;
}

.price-list-container .banner-img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}

.form-container .section-title {
  margin-bottom: 30px;
  font-size: clamp(34px, 3vw, 48px);
}

.form-container form .row {
  row-gap: 16px;
}

.form-control,
.form-select,
select.form-control {
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  background: transparent;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.25s ease;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-control::placeholder {
  color: #777777;
}

.form-control:focus,
.form-select:focus,
select.form-control:focus {
  border-color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.conditional-question {
  animation: fadeIn 0.25s ease-in-out;
}

.conditional-label {
  display: block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn-danger {
  min-height: 56px;
  margin-top: 12px;
  border: 0;
  border-radius: 0;
  background: var(--primary);
  box-shadow: none;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: background-color 0.25s ease;
}

.btn-danger:hover,
.btn-danger:focus {
  background: var(--primary-dark);
  color: var(--white);
  transform: none;
  box-shadow: none;
}

/* Offer Section */
.offers .row {
  align-items: center;
}

.offers img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.offers .card {
  margin-bottom: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #eeeeee !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none !important;
  overflow: visible;
  transition: none;
}

.offers .card:hover {
  transform: none;
  box-shadow: none !important;
}

.offers .card-body {
  padding: 22px 0;
}

.offers .card .bi {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-size: 1.8rem;
}

.offers .card-title {
  margin-bottom: 2px;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

.offers .card-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.offers .card-text strong {
  color: #111111;
  font-weight: 800;
}

/* Why Global */
#why-global img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#why-global .section-title {
  text-align: left !important;
}

#why-global ul {
  margin: 0;
}

#why-global li {
  padding: 14px 0;
  color: #333333;
  border-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

#why-global .bi {
  color: var(--primary) !important;
}

/* Middle Banner */
.global-banner {
  display: block;
  width: calc(100% - 56px) !important;
  margin: 80px auto 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

/* Contact Info */
#contact-info.offers,
.contact-section {
  margin-top: 80px;
}

#contact-info img,
.contact-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.contact-content-card {
  padding: 0;
}

.small-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 0;
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-intro {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-detail-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  margin-bottom: 0;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
  background: transparent;
  transition: none;
}

.contact-detail-box:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  font-size: 22px;
}

.contact-detail-box h6 {
  margin-bottom: 4px;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

.contact-detail-box a {
  color: var(--primary);
  font-weight: 700;
}

.contact-detail-box p {
  margin: 0;
  color: #444444;
  font-size: 15px;
  line-height: 1.55;
}

.contact-image-wrap {
  height: 100%;
  min-height: 440px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

/* Sticky Contact Button */
.sticky-contact-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1050;
  display: flex;
  align-items: center;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(224, 30, 38, 0.32);
  transition: all 0.3s ease;
}

.sticky-contact-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
}

.sticky-contact-btn i {
  margin-right: 8px;
}

/* Footer */
footer {
  margin-top: 88px;
  padding: 28px 16px;
  background: #080808;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 14px;
}

/* Optional iframe support */
.fp-iframe {
  height: 87vh;
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .container-l,
  .offers,
  #why-global,
  .contact-section,
  .global-banner {
    width: calc(100% - 32px) !important;
  }

  .navbar-nav {
    padding-top: 16px;
  }

  .ppf-hero-section {
    padding: 64px 0;
    text-align: left;
  }

  .ppf-hero-section h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .ppf-hero-section p {
    font-size: 16px;
  }

  .hero-cta-btn {
    width: auto;
  }

  .main-section {
    padding-top: 36px;
  }

  .price-list-container .banner-img {
    height: auto;
    min-height: unset;
  }

  .form-container {
    padding: 34px 28px;
  }

  .offers,
  #why-global,
  .contact-section {
    margin-top: 64px;
    padding-top: 56px;
  }

  .offers img,
  #why-global img,
  #contact-info img,
  .contact-image-wrap img {
    height: auto;
  }

  .contact-image-wrap {
    min-height: unset;
  }

  .global-banner {
    margin-top: 64px;
  }

  .fp-iframe {
    height: 60vh;
  }
}

@media only screen and (max-width: 575px) {
  body {
    font-size: 15px;
  }

  .container-l,
  .offers,
  #why-global,
  .contact-section,
  .global-banner {
    width: calc(100% - 22px) !important;
  }

  .navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .navbar-brand img {
    height: 44px !important;
  }

  .ppf-hero-section {
    padding: 52px 0;
  }

  .ppf-hero-section h1 {
    font-size: 36px;
  }

  .ppf-hero-section p {
    font-size: 15px;
  }

  .hero-cta-btn {
    width: 100%;
  }

  .main-section {
    padding-top: 28px;
  }

  .form-container {
    padding: 28px 22px;
  }

  .offers,
  #why-global,
  .contact-section {
    margin-top: 52px;
    padding-top: 46px;
  }

  .section-title {
    font-size: 32px;
  }

  .offers .card-body {
    padding: 18px 0;
  }

  .sticky-contact-btn {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }

  footer {
    margin-top: 64px;
  }
}



input.form-control::placeholder {
    color: black;
}
