/* ==========================================================================
   Growbiz Innovations - Portfolio Page Master Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Universal Reset
   -------------------------------------------------------------------------- */
:root {
  --pf-primary-gradient: linear-gradient(135deg, #0d9488 0%, #2563eb 50%, #7c3aed 100%);
  --pf-hero-bg: #090d16;
  --pf-card-bg: #ffffff;
  --pf-dark-card: #131c2e;
  --pf-border-glow: rgba(13, 148, 136, 0.18);
  --pf-shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 10px 20px -8px rgba(13, 148, 136, 0.18);
  --pf-font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  font-family: var(--pf-font-family);
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   2. Standalone Header
   -------------------------------------------------------------------------- */
.portfolio-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.04);
}

.pf-announcement {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #f8fafc;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pf-announcement .badge-delivery {
  background: rgba(13, 148, 136, 0.3);
  color: #2dd4bf;
  border: 1px solid rgba(45, 212, 191, 0.4);
  padding: 0.1rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pf-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.pf-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0f172a;
  white-space: nowrap;
}

.pf-logo img {
  height: 48px;
  width: auto;
}

.pf-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  display: inline-block !important;
}

.pf-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.pf-nav-links a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 0.925rem;
  transition: color 0.2s ease;
}

.pf-nav-links a:hover,
.pf-nav-links a.active {
  color: #0d9488;
}

.pf-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-header-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* --------------------------------------------------------------------------
   3. Section Headers & Typography
   -------------------------------------------------------------------------- */
.pf-section {
  padding: 4.5rem 0;
}

.pf-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.pf-section-tag,
.pf-3d-gloss-badge {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f766e;
  background: linear-gradient(180deg, #e0f2fe 0%, #ccfbf1 50%, #99f6e4 100%);
  border: 1px solid rgba(13, 148, 136, 0.35);
  box-shadow: inset 0 1px 1px #ffffff, 0 4px 12px rgba(13, 148, 136, 0.15);
  padding: 0.35rem 1.1rem;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.pf-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.pf-section-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. Filter System (3D Gloss HD Buttons)
   -------------------------------------------------------------------------- */
.pf-filter-wrapper {
  margin-bottom: 2.75rem;
  width: 100%;
}

.pf-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.filter-btn {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 6px rgba(15, 23, 42, 0.06);
}

.filter-btn:hover {
  border-color: #0d9488;
  color: #0d9488;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 #ffffff, 0 6px 14px rgba(13, 148, 136, 0.18);
}

.filter-btn.active {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 6px 16px rgba(15, 23, 42, 0.3), 0 0 12px rgba(13, 148, 136, 0.25);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   5. Portfolio Grid & Cards
   -------------------------------------------------------------------------- */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pf-project-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pf-project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pf-shadow-hover);
  border-color: #cbd5e1;
}

.pf-project-card.hide {
  display: none !important;
}

/* Browser Frame Mockup */
.browser-frame {
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.browser-header {
  background: #0f172a;
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-address-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 0.15rem 0.6rem;
  font-size: 0.725rem;
  font-family: monospace;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.browser-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-project-card:hover .browser-image-wrapper img {
  transform: scale(1.04);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-project-card:hover .card-overlay {
  opacity: 1;
}

.btn-view-overlay {
  background: #ffffff;
  color: #0f172a;
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transform: translateY(8px);
  transition: transform 0.25s ease;
}

.pf-project-card:hover .btn-view-overlay {
  transform: translateY(0);
}

/* Card Content */
.card-content {
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.category-tag {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d9488;
  background: rgba(13, 148, 136, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.15rem;
  flex: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.card-footer-buttons {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
  padding: 0.65rem 0.65rem;
  background: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  white-space: nowrap;
}

.pf-project-card:hover .btn-card-action,
.btn-card-action:hover {
  background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.3);
  transform: translateY(-1px);
}

.btn-card-action svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.pf-project-card:hover .btn-card-action svg {
  transform: translateX(3px);
}

.btn-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1;
  padding: 0.65rem 0.65rem;
  background: #25d366;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  white-space: nowrap;
}

.btn-card-wa:hover {
  background: #20ba5a;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  transform: translateY(-1px);
}

.btn-card-wa svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .card-footer-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   6. Trust / Results Section
   -------------------------------------------------------------------------- */
.pf-trust-section {
  background: linear-gradient(180deg, #090d16 0%, #0f172a 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.pf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.pf-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem 1.25rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.pf-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
}

.pf-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2dd4bf;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.pf-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   7. What You Get Section
   -------------------------------------------------------------------------- */
.pf-features-section {
  padding: 5rem 0;
  background: #ffffff;
}

.pf-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pf-feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pf-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
  background: #ffffff;
  border-color: #cbd5e1;
}

.pf-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.pf-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.pf-feature-text p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. Call to Action Section
   -------------------------------------------------------------------------- */
.pf-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
}

.pf-cta-box {
  max-width: 820px;
  margin: 0 auto;
}

.pf-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.pf-cta-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.pf-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-cta-wa {
  background: #25d366;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.pf-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.15rem 0.85rem;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
}

.contact-card-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #2dd4bf;
  transform: translateY(-2px);
}

.contact-icon {
  color: #2dd4bf;
}

.contact-label {
  font-size: 0.725rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-val {
  font-size: 0.85rem;
  font-weight: 700;
  word-break: break-all;
}

/* --------------------------------------------------------------------------
   9. Standalone Footer
   -------------------------------------------------------------------------- */
.pf-footer {
  background: #090d16;
  color: #94a3b8;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pf-footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.pf-footer-brand p {
  font-size: 0.875rem;
}

.pf-footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.pf-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.pf-footer-links a:hover {
  color: #2dd4bf;
}

.pf-footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.825rem;
  color: #64748b;
}

/* ==========================================================================
   10. BULLETPROOF MOBILE RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pf-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pf-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pf-contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Header Mobile Layout */
  .pf-announcement {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  .pf-announcement .badge-delivery {
    font-size: 0.675rem;
    padding: 0.08rem 0.45rem;
  }

  .pf-header-nav {
    padding: 0.75rem 0;
    justify-content: center;
  }

  .pf-logo {
    font-size: 1.05rem;
    gap: 0.55rem;
    justify-content: center;
  }

  .pf-logo img {
    height: 38px;
  }

  .pf-logo span {
    font-size: 1.05rem !important;
    display: inline-block !important;
  }

  .pf-nav-links {
    display: none; /* Hide main links on mobile header to prevent clutter */
  }

  /* Title & Filter Mobile Layout */
  .pf-section {
    padding: 3rem 0;
  }

  .pf-section-header {
    margin-bottom: 1.75rem;
  }

  .pf-section-title {
    font-size: 1.65rem !important;
  }

  .pf-section-desc {
    font-size: 0.9rem;
  }

  /* Smooth Swipeable Filter Bar on Mobile */
  .pf-filter-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
  }

  .pf-filter-bar {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0.2rem 0.2rem 0.6rem;
    gap: 0.4rem;
    scrollbar-width: none;
  }

  .pf-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    white-space: nowrap;
  }

  /* Single Column Portfolio Grid on Mobile */
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-content {
    padding: 1.15rem 1.2rem;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  /* Trust Grid 2x2 Clean Mobile Layout */
  .pf-trust-section {
    padding: 3.5rem 0;
  }

  .pf-trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .pf-stat-card {
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
  }

  .pf-stat-number {
    font-size: 1.85rem;
  }

  .pf-stat-label {
    font-size: 0.78rem;
  }

  /* Features Grid Single Column */
  .pf-features-section {
    padding: 3.5rem 0;
  }

  .pf-features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .pf-feature-card {
    padding: 1.15rem;
  }

  /* CTA Section Mobile */
  .pf-cta-section {
    padding: 3.5rem 0;
  }

  .pf-cta-title {
    font-size: 1.6rem !important;
  }

  .pf-cta-desc {
    font-size: 0.925rem;
  }

  .pf-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-cta-wa, .btn-secondary-dark {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
  }

  .pf-contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .contact-card-item {
    padding: 0.95rem 0.5rem;
  }

  .contact-val {
    font-size: 0.78rem;
  }

  /* Footer Mobile */
  .pf-footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .pf-footer-links {
    justify-content: center;
    gap: 1rem;
  }
}

/* Small Phones (< 540px) */
@media (max-width: 540px) {
  .pf-header-nav {
    padding: 0.6rem 0;
  }
  .pf-logo {
    gap: 0.45rem;
  }
  .pf-logo img {
    height: 34px;
  }
  .pf-logo span {
    font-size: 0.95rem !important;
    display: inline-block !important;
  }
}

/* Ultra Small Mobile Screens (380px and below) */
@media (max-width: 380px) {
  .pf-contact-cards {
    grid-template-columns: 1fr;
  }
  .pf-logo img {
    height: 30px;
  }
  .pf-logo span {
    font-size: 0.875rem !important;
    display: inline-block !important;
  }
}
