@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;
  --dark: #171717;
  --text: #222222;
  --muted: #666666;
  --light: #f7f7f7;
  --border: #eeeeee;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.1);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f8f8;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.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%;
}

/* Hero CTA Section */
.ppf-hero-section {
  position: relative;
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(224, 30, 38, 0.45), transparent 32%),
    linear-gradient(135deg, #070707 0%, #1b1b1b 52%, #850b10 100%);
  overflow: hidden;
}

.ppf-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.28;
}

.ppf-hero-section .container {
  position: relative;
  z-index: 1;
}

.ppf-hero-section h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.ppf-hero-section p {
  max-width: 820px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

.hero-cta-btn {
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 16px 35px rgba(224, 30, 38, 0.35);
  white-space: nowrap;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
}

/* Main Section */
.container-l {
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
}

.main-section {
  padding: 42px 0 0;
  margin: 0 auto;
}

.price-list-container,
.form-container {
  margin-bottom: 32px;
}

.price-list-container {
  background: transparent;
  padding: 0;
}

.banner-img {
  width: 100%;
  height: 78vh;
  min-height: 520px;
  max-height: 760px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Form */
.form-container {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-container::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-container .section-title {
  margin-bottom: 24px;
}

.section-title {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.section-title span {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.form-control,
.form-select,
select.form-control {
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  background-color: #fbfbfb;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-control::placeholder {
  color: #898989;
}

.form-control:focus,
.form-select:focus,
select.form-control:focus {
  border-color: rgba(224, 30, 38, 0.55);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(224, 30, 38, 0.11);
}

.btn-danger {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 28px rgba(224, 30, 38, 0.26);
  transition: all 0.25s ease;
}

.btn-danger:hover,
.btn-danger:focus {
  background: linear-gradient(135deg, #f1272f, var(--primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(224, 30, 38, 0.34);
}

.conditional-question {
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */


.offers img,
#why-global img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-sm);
}

/* Cards */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.card.border-0 {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.card.shadow-sm {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
  padding: 22px;
}

.card .bi {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 16px;
  background: rgba(224, 30, 38, 0.09);
  color: var(--primary);
  font-size: 1.7rem;
}

.card-title {
  margin-bottom: 5px;
  color: var(--black);
  font-weight: 800;
}

.card-text {
  color: #444444;
  font-size: 0.96rem;
  line-height: 1.55;
}

.card-text strong {
  color: var(--black);
  font-weight: 800;
}

/* Why Global */
#why-global ul {
  margin: 0;
}

#why-global li {
  padding: 12px 0;
  color: #333333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#why-global li:last-child {
  border-bottom: 0;
}

#why-global .bi {
  color: var(--primary) !important;
}

/* Global Banner */
.global-banner {
  width: min(100% - 32px, 1320px) !important;
  margin: 58px auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* Contact Box */
.contact-box {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

/* 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-color: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
}

.sticky-contact-btn i {
  margin-right: 8px;
}

/* Iframe */
.fp-iframe {
  height: 87vh;
}

/* Footer */
footer {
  margin-top: 64px;
  padding: 26px 16px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 14px;
}

/* Responsive */
@media only screen and (max-width: 1199px) {
  .banner-img {
    height: 58vh;
    min-height: 460px;
  }

  .form-container {
    padding: 26px;
  }
}


@media only screen and (max-width: 991px) {
  .navbar-nav {
    padding-top: 16px;
  }

  .ppf-hero-section {
    padding: 64px 0;
    text-align: center;
  }

  .ppf-hero-section p {
    margin-inline: auto;
    font-size: 16px;
  }

  .hero-cta-btn {
    width: 100%;
  }

  .main-section {
    padding-top: 28px;
  }

  .banner-img {
    height: auto;
    min-height: unset;
    max-height: unset;
  }

  .form-container {
    padding: 24px;
  }

  .offers,
  .contact-columns,
  #why-global {
    margin-top: 36px;
    padding: 28px;
  }

  .section-title {
    text-align: left !important;
  }

  .offers .section-title {
    text-align: center !important;
  }

  .global-banner {
    margin-top: 36px;
  }

  .fp-iframe {
    height: 60vh;
  }
}

@media only screen and (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .container-l {
    width: min(100% - 20px, 1320px);
  }

  .navbar {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .navbar-brand img {
    height: 44px !important;
  }

  .ppf-hero-section {
    padding: 48px 0;
  }

  .ppf-hero-section h1 {
    letter-spacing: -0.8px;
  }

  .main-section {
    padding-top: 20px;
  }

  .form-container,
  .offers,
  .contact-columns,
  #why-global {
    padding: 22px;
    border-radius: 18px;
  }

  .card-body {
    padding: 18px;
  }

  .card .bi {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.45rem;
    border-radius: 14px;
  }

  .section-title span {
    font-size: 0.95rem;
  }

  .global-banner {
    width: min(100% - 20px, 1320px) !important;
    border-radius: 18px;
  }

  .sticky-contact-btn {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 14px;
  }
}




/* ===== Top Banner + Contact Form 6/6 Layout Fix ===== */

.main-section {
  padding-top: 38px;
}

.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: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.form-container::before {
  height: 5px;
}

.form-container .section-title {
  margin-bottom: 28px;
  font-size: clamp(34px, 3vw, 46px);
}

.form-container .section-title span {
  max-width: 440px;
  margin-top: 12px;
  color: #e01e26;
  font-size: 14px;
  line-height: 1.55;
}

.form-container .form-control {
  min-height: 54px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #e4e4e4;
  font-size: 15px;
  font-weight: 500;
}

.form-container .form-control:focus {
  background: #ffffff;
  border-color: rgba(224, 30, 38, 0.55);
  box-shadow: 0 0 0 4px rgba(224, 30, 38, 0.1);
}

.form-container .btn-danger {
  min-height: 56px;
  margin-top: 4px;
  border-radius: 14px;
  font-weight: 800;
}

.conditional-question {
  animation: fadeIn 0.25s ease-in-out;
}

@media only screen and (max-width: 991px) {
  .price-list-container .banner-img {
    height: auto;
    min-height: unset;
  }

  .form-container {
    padding: 30px;
  }

  .form-container .section-title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 575px) {
  .form-container {
    padding: 24px;
    border-radius: 20px;
  }

  .price-list-container .banner-img {
    border-radius: 20px;
  }

  .form-container .section-title {
    font-size: 30px;
  }
}




/* ======================================================
   CLASSIC MINIMAL LAYOUT OVERRIDE
   Removes heavy card-style section design
====================================================== */

body {
  background: #ffffff;
  color: #111111;
}

/* Global container control */
.container-l,
.main-section,
.offers,
#why-global,
.contact-section,
.global-banner {
  max-width: 1280px;
}

/* Main layout */
.container-l {
  width: calc(100% - 56px);
  margin-left: auto;
  margin-right: auto;
}

.main-section {
  padding: 56px 0 0;
  margin: 0 auto;
}

/* Remove section cards */
.offers,
#why-global,
.contact-section {
  width: calc(100% - 56px);
  margin: 80px auto 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Section separators instead of cards */
.offers,
#why-global,
.contact-section {
  border-top: 1px solid #e9e9e9;
  padding-top: 72px;
}

/* Remove nested container padding issues */
.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: #e01e26;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
}

/* ======================================================
   HERO SECTION - CLASSIC BUT STILL PREMIUM
====================================================== */

.ppf-hero-section {
  padding: 92px 0;
  background: #101010;
  color: #ffffff;
}

.ppf-hero-section::before {
  display: none;
}

.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;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.hero-cta-btn {
  border-radius: 0;
  padding: 15px 30px;
  box-shadow: none;
  font-weight: 800;
}

.hero-cta-btn:hover {
  transform: none;
}

/* ======================================================
   TOP 6/6 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 minimal style */
.form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
}

.form-container::before {
  display: none;
}

.form-container .section-title {
  margin-bottom: 30px;
  font-size: clamp(34px, 3vw, 48px);
}

.form-container form .row {
  row-gap: 16px;
}

.form-container .form-control,
.form-container 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;
}

.form-container .form-control::placeholder {
  color: #777777;
}

.form-container .form-control:focus,
.form-container select.form-control:focus {
  border-color: #e01e26;
  background: transparent;
  box-shadow: none;
}

.form-container .btn-danger {
  min-height: 56px;
  margin-top: 12px;
  border-radius: 0;
  background: #e01e26;
  box-shadow: none;
  font-weight: 800;
}

.form-container .btn-danger:hover {
  background: #b4161e;
  transform: none;
  box-shadow: none;
}

/* ======================================================
   OFFERS SECTION - NO CARDS, CLEAN ROWS
====================================================== */

.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-radius: 0;
  background: transparent;
  box-shadow: none !important;
  border-bottom: 1px solid #eeeeee !important;
}

.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;
  margin-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: #e01e26;
  font-size: 1.8rem;
}

.offers .card-title {
  margin-bottom: 2px;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
}

.offers .card-text {
  color: #555555;
  font-size: 15px;
  line-height: 1.5;
}

/* ======================================================
   WHY GLOBAL - CLEAN EDITORIAL STYLE
====================================================== */

#why-global {
  padding-top: 72px;
}

#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;
  border-bottom: 1px solid #eeeeee;
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
}

#why-global li:last-child {
  border-bottom: 0;
}

#why-global .bi {
  color: #e01e26 !important;
}

/* ======================================================
   MIDDLE BANNER
====================================================== */

.global-banner {
  display: block;
  width: calc(100% - 56px) !important;
  margin: 80px auto 0;
  border-radius: 0;
  box-shadow: none;
}

/* ======================================================
   BOTTOM CONTACT INFO SECTION - MINIMAL
====================================================== */

#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: #e01e26;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-intro {
  max-width: 540px;
  margin-bottom: 30px;
  color: #555555;
  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-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  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: #e01e26;
  font-size: 22px;
}

.contact-detail-box h6 {
  margin-bottom: 4px;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
}

.contact-detail-box a {
  color: #e01e26;
  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;
}

/* Footer */
footer {
  margin-top: 88px;
  padding: 28px 16px;
  background: #080808;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media only screen and (max-width: 991px) {
  .container-l,
  .offers,
  #why-global,
  .contact-section,
  .global-banner {
    width: calc(100% - 32px) !important;
  }

  .ppf-hero-section {
    padding: 64px 0;
    text-align: left;
  }

  .ppf-hero-section h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .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;
  }
}

@media only screen and (max-width: 575px) {
  .container-l,
  .offers,
  #why-global,
  .contact-section,
  .global-banner {
    width: calc(100% - 22px) !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%;
  }

  .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;
  }

  footer {
    margin-top: 64px;
  }
}