/* ============================================================
   ProjectPanicMarketMasters – Project Panic & Marketing Masters
   Custom Stylesheet  |  v1.0
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:      #0b1a2e;
  --navy-mid:  #122240;
  --navy-lite: #1a3460;
  --gold:      #c9a84c;
  --gold-lite: #e0c06a;
  --off-white: #f5f0e8;
  --light-bg:  #f7f8fc;
  --text-dark: #1c1c2e;
  --text-mid:  #4a5568;
  --text-muted: #8896a7;
  --border:    rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 12px rgba(11,26,46,0.08);
  --shadow-md: 0 8px 32px rgba(11,26,46,0.12);
  --shadow-lg: 0 20px 60px rgba(11,26,46,0.16);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.28s ease;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

p { line-height: 1.75; color: var(--text-mid); }

a { transition: color var(--transition); }

img { max-width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.ppmm-navbar {
  background: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.ppmm-navbar .navbar-brand { text-decoration: none; }

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: background var(--transition);
}
.brand-icon:hover { background: var(--gold-lite); }
.brand-icon-sm { width: 36px; height: 36px; font-size: 1.1rem; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-line1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.brand-line2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ppmm-navbar .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.ppmm-navbar .nav-link:hover,
.ppmm-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.08);
}

/* Gold CTA button */
.btn-gold {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 30px;
  padding: 10px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--gold-lite);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0d2a4a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,52,96,0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-lite);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-outline-gold {
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.h-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}

.h-card-main {
  position: relative;
  z-index: 3;
}

.h-card-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.h-card-main h3 {
  color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem;
}
.h-card-main p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

.h-card-float {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 200px;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.h-card-float2 {
  position: absolute;
  left: -24px;
  top: -30px;
  width: 180px;
  z-index: 1;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
}

.float-tag {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.float-val {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: 96px 0; }

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  color: #8b6914;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
}

.divider-gold {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* ============================================================
   WHAT WE DO STRIP
   ============================================================ */
.strip-section {
  background: var(--navy);
  padding: 36px 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.strip-item i { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section { background: var(--light-bg); }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: #fff; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.why-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.why-item h5 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; color: var(--navy); }
.why-item p  { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lite) 100%);
  border-radius: var(--radius-lg);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.why-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.15) 0%, transparent 60%);
}

.why-quote {
  position: relative; z-index: 2;
  text-align: center;
}
.why-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #fff;
  line-height: 1.5;
  font-style: italic;
}
.why-quote cite {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--light-bg); }

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -10%;
  width: 20%;
  height: 2px;
  background: rgba(201,168,76,0.3);
}
.process-step:last-child::after { display: none; }

.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(201,168,76,0.3);
  transition: border-color var(--transition), background var(--transition);
}
.process-step:hover .process-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.process-step h5 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.87rem; color: var(--text-mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); }
.testimonials-section .section-chip { background: rgba(201,168,76,0.15); color: var(--gold-lite); border-color: rgba(201,168,76,0.4); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-lead  { color: rgba(255,255,255,0.6); }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
}

.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
.reviewer-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #b8913c 100%);
  padding: 80px 0;
}
.cta-section h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta-section p  { color: var(--navy); opacity: 0.75; font-size: 1.05rem; }
.btn-cta-dark {
  background: var(--navy);
  color: #fff !important;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(11,26,46,0.25);
}
.btn-cta-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(11,26,46,0.35);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.page-hero p  { color: rgba(255,255,255,0.65); max-width: 600px; position: relative; font-size: 1.05rem; }
.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 500; text-decoration: none; }
.page-breadcrumb .breadcrumb-item.active { color: var(--gold); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  background: #fff;
}
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
}
.stat-card .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card p { font-size: 0.88rem; color: var(--text-mid); margin: 0.5rem 0 0; }

.values-section { background: var(--light-bg); }

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.value-card h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.88rem; color: var(--text-mid); margin: 0; }

.team-section { background: #fff; }

.team-card {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(201,168,76,0.4);
}

.team-card h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.3rem; }
.team-role   { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.team-card p { font-size: 0.87rem; color: var(--text-mid); margin-top: 0.75rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail-section { background: #fff; }

.service-detail-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-detail-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.2); }
.service-detail-card:hover::after { transform: scaleX(1); }

.service-detail-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

.service-detail-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-detail-card p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

.service-ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.service-ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.service-ul li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}

.pricing-section { background: var(--navy); }
.pricing-section .section-chip { background: rgba(201,168,76,0.15); color: var(--gold-lite); border-color: rgba(201,168,76,0.4); }
.pricing-section .section-title { color: #fff; }
.pricing-section .section-lead  { color: rgba(255,255,255,0.6); }

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.pricing-card.featured {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
  transform: scale(1.03);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.pricing-card h4 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-period { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 1.5rem; }

.pricing-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
}
.pricing-ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-ul li i { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: #fff; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  color: #fff;
}
.contact-info-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.75rem; }
.contact-info-card .lead { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-item-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.contact-item-value a { font-size: 12px; color: var(--gold); text-decoration: none; }
.contact-item-value a:hover { color: var(--gold-lite); }

.contact-form-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.form-label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.form-control, .form-select {
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  outline: none;
}

.btn-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(11,26,46,0.2);
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,26,46,0.28);
}

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-section { background: var(--light-bg); padding: 0; }
.map-placeholder {
  height: 360px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lite));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}
.map-placeholder i { font-size: 3rem; color: var(--gold); }
.map-placeholder p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   PRIVACY / TERMS
   ============================================================ */
.legal-section { background: #fff; padding: 80px 0; }
.legal-content h2 { font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.legal-content h3 { font-size: 1.15rem; color: var(--navy); margin: 1.75rem 0 0.75rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.legal-content p  { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.legal-date { font-size: 0.8rem; color: var(--text-muted); background: var(--light-bg); padding: 6px 14px; border-radius: 8px; display: inline-block; margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.ppmm-footer {
  background: #060e1a;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
}

.text-gold { color: var(--gold); }

.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 300px; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { font-size: 0.88rem; }
.footer-contact li { line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-divider { border-color: rgba(255,255,255,0.07); margin-bottom: 0; }

/* ============================================================
   ALERT OVERRIDES
   ============================================================ */
.alert-success {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #166534;
  border-radius: var(--radius);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease both; }
.delay-1    { animation-delay: 0.1s; }
.delay-2    { animation-delay: 0.2s; }
.delay-3    { animation-delay: 0.3s; }
.delay-4    { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-visual { margin-top: 3rem; }
  .h-card-float, .h-card-float2 { display: none; }
  section { padding: 72px 0; }
  .process-step::after { display: none; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 767.98px) {
  section { padding: 56px 0; }
  .hero { padding: 60px 0 48px; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat .number { font-size: 1.6rem; }
  .contact-info-card, .contact-form-card { border-radius: var(--radius); }
  .why-img-placeholder { min-height: 300px; }
}

@media (max-width: 575.98px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-badge { font-size: 0.7rem; }
  .section-title { font-size: 1.7rem; }
  .contact-info-card, .contact-form-card { padding: 1.75rem 1.25rem; }
  .service-detail-card { padding: 2rem 1.5rem; }
}
