/* ===== Petal Solutions — Global Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --ps-blue: #3259a8;
  --ps-blue-dark: #1e3a7a;
  --ps-blue-light: #4a75c4;
  --ps-blue-pale: #f0f4fa;
  --ps-green: #2e7d32;
  --ps-green-pale: #e8f5e9;
  --ps-orange: #f57c00;
  --ps-orange-dark: #e65100;
  --ps-orange-light: #fef3e0;
  --ps-text: #000000;
  --ps-text-muted: #111111;
  --ps-bg: #ffffff;
  --ps-bg-off: #f5f7fa;
  --ps-bg-warm: #faf8f5;
  --ps-border: #e0e4ea;
  --ps-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --ps-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --ps-shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --ps-radius: 24px;
  --ps-radius-sm: 12px;
  --ps-gold: #c5a059;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ps-text);
  background: var(--ps-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ps-border); transition: all 0.3s;
  padding: 8px 0;
}
.nav.scrolled { padding: 4px 0; box-shadow: var(--ps-shadow-md); }
.nav-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
.nav-brand { flex: 0 0 300px; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo { height: 80px; width: auto; }
.nav-company-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--ps-blue); }

.nav-center { flex: 1; display: flex; justify-content: center; gap: 12px; }
.nav-link {
  text-decoration: none; color: var(--ps-text-muted);
  padding: 12px 20px; border-radius: 12px;
  font-size: 1.05rem; font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-link:hover {
  color: var(--ps-blue);
  background: rgba(50, 89, 168, 0.08);
  transform: scale(1.1);
}
.nav-link.active {
  color: var(--ps-blue) !important;
  background: var(--ps-blue-pale);
  box-shadow: inset 0 0 0 1.5px rgba(50, 89, 168, 0.15);
}

.nav-contact-btn, .nav-contact-btn.active {
  background: #ffa726 !important;
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  border: none !important;
  box-shadow: 0 4px 12px rgba(255, 167, 38, 0.25) !important;
}
.nav-contact-btn:hover, .nav-contact-btn:active {
  background: #f57c00 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.3) !important;
  color: #fff !important;
}

/* ===== Buttons ===== */
.btn-primary {
  background: linear-gradient(135deg, #ffa726, #f57c00) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.25) !important;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fb8c00, #e65100) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.35) !important;
}

.btn-green {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  border: 1px solid rgba(46, 125, 50, 0.2) !important;
  padding: 14px 40px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.btn-green:hover {
  background: #c8e6c9 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.1);
}

/* ===== Sections ===== */
.section { padding: 100px 24px; }
.section-alt { background: var(--ps-orange); color: #fff; }
.section-alt h2, .section-alt .section-label, .section-alt h3, .section-alt p, .section-alt li:not(.faq-item li) { color: #fff !important; }
.section-alt .faq-item { color: #000000 !important; }
.section-alt .faq-question, .section-alt .faq-answer, .section-alt .faq-answer p { color: #000000 !important; }
.section-alt .card h3, .section-alt .card p { color: var(--ps-text) !important; }
.section-alt .section-label, [style*="background: var(--ps-blue)"] .section-label { background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; margin-bottom: 16px !important; display: block !important; color: #fff !important; }
.section-warm { background: var(--ps-bg-warm); }

.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  background: #fff3e0;
  color: #fb8c00;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 24px;
  border: 1px solid rgba(251, 140, 0, 0.1);
  box-shadow: 0 2px 8px rgba(251, 140, 0, 0.05);
}
.section-title { font-size: 3.5rem; margin-bottom: 24px; color: var(--ps-text); }
.section-subtitle { font-size: 1.25rem; color: var(--ps-text-muted); max-width: 800px; line-height: 1.6; }

/* ===== Hero ===== */
.hero {
  padding: 140px 24px 100px;
  background: linear-gradient(135deg, #fff 0%, var(--ps-blue-pale) 100%);
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: #fff3e0;
  color: #fb8c00;
  padding: 12px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  border: 1px solid rgba(251, 140, 0, 0.15);
  box-shadow: 0 4px 15px rgba(251, 140, 0, 0.1);
}
.hero h1 { font-size: 5rem; margin-bottom: 24px; color: var(--ps-text); }
.hero h1 span { color: var(--ps-blue); }

/* Inner Hero (Pages) */
.inner-hero {
  background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
  color: #fff; padding: 140px 24px 100px; text-align: center;
}
.inner-hero h1 { font-size: 4rem; margin-bottom: 16px; color: #fff; }
.inner-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto; }

/* ===== Cards & Grid ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; }
.cards-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.cards-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; max-width: 1240px; margin-left: auto; margin-right: auto; }

.card {
  background: #fff; padding: 20px 24px; border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--ps-shadow-lg); border-color: var(--ps-blue-light); }
.card-icon { font-size: 3rem; margin-bottom: 24px; display: block; }
.card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--ps-blue-dark); min-height: 3.6rem; display: flex; align-items: flex-start; }
.card p { color: var(--ps-text-muted); font-size: 1.05rem; line-height: 1.6; }

/* ===== Steps ===== */
.steps {
  display: flex; flex-direction: column; gap: 48px; margin-top: 60px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; left: 30px; top: 40px; bottom: 40px;
  width: 2px; background: #e0e4ea; z-index: 0;
}
.step {
  display: flex; gap: 32px; align-items: flex-start;
  position: relative; z-index: 1;
}
.step-num {
  flex: 0 0 60px; height: 60px; background: var(--ps-blue); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.5rem; box-shadow: 0 0 0 8px #fff;
}
.step-content { padding-top: 8px; }
.step-content h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--ps-blue-dark); font-family: 'Inter', sans-serif; }
.step-content p { color: var(--ps-text-muted); font-size: 1.15rem; line-height: 1.6; }

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--ps-bg-warm);
  padding: 48px 40px;
  border-radius: var(--ps-radius);
  border: 1px solid var(--ps-border);
  text-align: center;
  max-width: 1000px;
  margin: 32px auto 12px;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ps-blue-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}
.testimonial-author {
  font-weight: 500;
  color: var(--ps-text-muted);
  font-size: 1.1rem;
}

/* ===== Footer ===== */
.footer { background: var(--ps-blue-dark); color: #fff; padding: 100px 24px 40px; }
.footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; }
.footer-brand img { height: 160px; width: auto; margin-bottom: 24px; }
.footer-brand p { color: #fff; line-height: 1.6; font-size: 1.1rem; }
.footer h4 { font-size: 1.2rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ps-orange); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 16px; }
.footer-links a { color: #fff; text-decoration: none; transition: all 0.3s; font-weight: 500; }
.footer-links a:hover { color: #fff; padding-left: 8px; }
.footer-bottom {
  max-width: 1240px; margin: 80px auto 0; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 0.9rem;
}

/* ===== Utilities ===== */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1); }
.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-visible { opacity: 1; transform: translate(0); }

@media (max-width: 992px) {
  .nav-center { display: none; }
  .mobile-toggle { display: flex !important; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
  .mobile-toggle span { width: 30px; height: 3px; background: var(--ps-blue); border-radius: 3px; transition: all 0.3s; }
  .mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .nav-center.mobile-active {
    display: flex; position: fixed; top: 0; right: 0; width: 80%; height: 100vh;
    background: #fff; flex-direction: column; justify-content: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); padding: 40px; gap: 24px; z-index: 1000;
  }
  .cards-grid, .cards-grid-3col, .cards-grid-4col { grid-template-columns: 1fr 1fr !important; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.4rem; }
  .cards-grid, .cards-grid-3col, .cards-grid-4col { grid-template-columns: 1fr !important; }
}

/* ===== Page Specific & Components ===== */
.hero-media-split {
  display: flex; align-items: stretch; justify-content: center; gap: 48px;
  margin-top: 40px; text-align: left; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.hero-media-split .hero-big-quote {
  flex: 1; position: relative; margin: 0; padding: 75px 40px 55px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  color: var(--ps-blue-dark); line-height: 1.2;
  background: #fff; border-radius: 24px; box-shadow: var(--ps-shadow-lg);
  overflow: hidden;
}
.hero-media-split .hero-big-quote::before {
  content: '"'; position: absolute; top: 15px; left: 20px;
  font-size: 6rem; color: rgba(50, 89, 168, 0.15); font-family: 'serif'; z-index: 1;
}
.hero-big-quote span { position: relative; z-index: 2; }
.hero-media-split .section-image { flex: 0 0 35%; margin: 0; display: block; border-radius: 24px; overflow: hidden; box-shadow: var(--ps-shadow-lg); }
.hero-media-split .section-image img { width: 100%; height: 100%; object-fit: cover; }

.mission-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 24px 32px; align-items: stretch;
  margin-top: 48px;
}
.mission-stat-card {
  background: #fff; border-radius: 20px; padding: 24px;
  text-align: left; border: 1.5px solid var(--ps-border);
  display: flex; flex-direction: column; justify-content: center;
}
.stat-value { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 8px; font-variant-numeric: lining-nums; }
.stat-label { font-weight: 800; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; color: var(--ps-text); }
.stat-sub { font-size: 0.85rem; color: var(--ps-text-muted); margin-top: 4px; }

.cta-section {
  background: linear-gradient(135deg, var(--ps-blue) 0%, var(--ps-blue-dark) 100%);
  color: #fff; padding: 40px 24px; text-align: center; border-radius: 24px;
  margin: 0 auto 48px; max-width: 1240px;
}
.cta-section h2 { font-size: 3rem; margin-bottom: 16px; color: #fff; }
.cta-section p { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 800px; margin: 0 auto 32px; }
.cta-section .btn-primary { background: #fff3e0 !important; border: 2px solid #ffa726 !important; color: #fb8c00 !important; }

/* Internal Page Components */
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; background: #fff; padding: 24px 32px; border-radius: 24px;
  box-shadow: var(--ps-shadow-md); position: relative; z-index: 10;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--ps-blue); margin-bottom: 4px; font-variant-numeric: lining-nums; }

.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 36px; margin-bottom: 20px;
  font-size: 1.1rem; color: var(--ps-text-muted); font-weight: 500;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}
.check-list li:hover { transform: translateX(12px); color: var(--ps-text) !important; }
.check-list li:hover::before { transform: scale(1.3); }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--ps-orange);
  font-weight: 900; font-size: 1.4rem; top: -2px;
}
.section-alt .check-list li::before { color: #fff; font-size: 1.8rem; top: -6px; left: -10px; }
.section-alt .check-list li { padding-left: 48px; }

.criteria-card {
  background: #fff; padding: 32px; border-radius: 24px; border: 1.5px solid var(--ps-border);
  margin-bottom: 24px; transition: all 0.3s;
}
.badge-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.badge {
  background: #fff3e0; color: #fb8c00; padding: 12px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-transform: uppercase; border: 1px solid rgba(251, 140, 0, 0.1);
}
.badge-green {
  background: #e8f5e9; color: #2e7d32; padding: 12px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 800; text-transform: uppercase; border: 1px solid rgba(46, 125, 50, 0.1);
}

.compliance-box {
  background: #fff; border: 1.5px solid var(--ps-border);
  border-radius: 24px; padding: 48px; margin-top: 48px; box-shadow: var(--ps-shadow-md);
}
.compliance-item { margin-bottom: 32px; border-left: 4px solid var(--ps-blue); padding-left: 24px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Form Styles */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; margin-top: 40px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--ps-border); border-radius: 12px;
  font-family: inherit; font-size: 1rem; transition: all 0.2s;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-card {
  background: var(--ps-blue);
  color: #fff;
  padding: 48px;
  border-radius: 32px;
  box-shadow: var(--ps-shadow-lg);
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-info-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.contact-info-label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 1.4rem;
  font-weight: 700;
}
.contact-info-value a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-info-value a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* FAQ Styles */
.faq-item { background: #fff; border: 1px solid var(--ps-border); border-radius: 16px; margin-bottom: 12px; cursor: pointer; transition: all 0.3s; overflow: hidden; color: var(--ps-text); }
.faq-item:hover { border-color: var(--ps-blue); box-shadow: var(--ps-shadow-sm); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; font-weight: 700; font-size: 1.05rem; color: #000000; }
.faq-answer { max-height: 0; padding: 0 28px; transition: all 0.3s ease-out; color: #000000; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-icon {
  width: 24px; height: 24px; background: var(--ps-blue); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #455a64; }

@media (max-width: 992px) {
  .hero-media-split { flex-direction: column; gap: 32px; }
  .hero-media-split .section-image { flex: none; width: 100%; height: 350px; }
  .mission-layout, .two-col, .contact-grid { grid-template-columns: 1fr !important; }
  .hero-media-split .hero-big-quote { font-size: 2rem; padding: 55px 30px 40px; }
  .hero-media-split .hero-big-quote::before { font-size: 4.5rem; top: 10px; left: 15px; }
  .stats-bar { margin-top: 0; }
}

/* Modal Styles */
.ps-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 2000;
}
.ps-modal-overlay.active { display: flex; }
.ps-modal {
  background: #fff; padding: 48px; border-radius: 32px; max-width: 500px; width: 90%;
  text-align: center; box-shadow: var(--ps-shadow-lg); animation: modalIn 0.3s ease-out;
}
@keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ps-modal-icon { font-size: 3rem; margin-bottom: 24px; color: var(--ps-blue); }
.ps-modal h3 { font-size: 2.2rem; margin-bottom: 16px; color: var(--ps-blue-dark); }
.ps-modal p { font-size: 1.1rem; color: var(--ps-text); margin-bottom: 32px; }
.ps-modal-btn {
  background: var(--ps-blue); color: #fff; border: none; padding: 12px 40px;
  border-radius: 50px; font-weight: 700; cursor: pointer; transition: all 0.3s;
}
.ps-modal-btn:hover { background: var(--ps-blue-dark); transform: translateY(-2px); }

/* ===== Advanced UX & Form validation ===== */
.form-group input, .form-group select, .form-group textarea {
  transition: all 0.3s ease;
  border: 1.5px solid var(--ps-border);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ps-blue);
  box-shadow: 0 0 0 4px rgba(50, 89, 168, 0.1);
  outline: none;
}
.form-group input:not(:placeholder-shown):valid, .form-group textarea:not(:placeholder-shown):valid {
  border-color: #2e7d32;
}
.form-group input:not(:placeholder-shown):invalid, .form-group textarea:not(:placeholder-shown):invalid {
  border-color: #c62828;
}

/* Button Loading State */
.btn-green, .btn-primary, .ps-modal-btn {
  position: relative;
  transition: all 0.3s ease;
}
.loading-state {
  color: transparent !important;
  pointer-events: none !important;
}
.loading-state::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--ps-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--ps-shadow-md);
  border: none;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--ps-blue);
  transform: translateY(-5px);
}
