/* CONSTRUCZ - Core Design System & Global Styles */

:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8faf9;
  --bg-tertiary: #f1f4f2;
  
  --brand-green: #26392c;
  --brand-green-hover: #324a3a;
  --brand-green-dark: #1a261e;
  
  --brand-gold: #8c6f38;
  --brand-gold-hover: #755c2e;
  --brand-gold-glow: rgba(140, 111, 56, 0.08);
  
  --text-white: #0f172a; /* Main body text - deep charcoal Slate 900 */
  --text-gray: #475569; /* Subtitles & descriptions - Slate 600 */
  --text-dark: #ffffff; /* Contrast text (e.g. white text inside green buttons) */
  --text-gold: #8c6f38; /* Darker gold for text readability */

  --border-gold: rgba(140, 111, 56, 0.2);
  --border-dark: rgba(0, 0, 0, 0.08);

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Settings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Hide browser scrollbars globally */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Main Layout Wrapper */
#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #0c120f 100%);
  width: 100%;
}

main {
  flex-grow: 1;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Headers */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, var(--text-white), var(--brand-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--brand-gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Helper Buttons & UI Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 0.9rem;
  gap: 8px;
}

.btn-primary {
  background-color: var(--brand-gold);
  color: var(--bg-primary);
  border: 1px solid var(--brand-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--brand-gold);
  box-shadow: 0 0 15px var(--brand-gold-glow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
}

.btn-gold-outline:hover {
  background-color: var(--brand-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--brand-gold-glow);
}

/* Cards & Containers */
.card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 0 10px var(--brand-gold-glow);
}

/* Badge style */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  letter-spacing: 0.05em;
  background-color: rgba(196, 164, 108, 0.1);
  color: var(--brand-gold);
  border: 1px solid var(--border-gold);
}

/* Interactive Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-gold);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--text-white);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 8px rgba(196, 164, 108, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideRight {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Media Queries */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .container {
    padding: 0 16px;
  }
}

/* ----------------------------------------------------
   HEADER & FOOTER OVERRIDES (Keep Premium Dark Styling)
   ---------------------------------------------------- */
.site-header .nav-link-btn {
  color: #94a3b8 !important; /* Light Slate text */
}
.site-header .nav-link-btn:hover {
  color: #ffffff !important;
}
.site-header .nav-link-btn.active {
  color: #c4a46c !important; /* Keep original lighter gold highlight in dark header */
  background-color: var(--brand-green) !important;
  border-color: rgba(196, 164, 108, 0.2) !important;
}
.site-header .header-search-input {
  color: #ffffff !important;
}
.site-header .header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}
.site-header .mobile-menu-toggle {
  color: #ffffff !important;
}

.site-footer .contact-label {
  color: #94a3b8 !important;
}
.site-footer .contact-value {
  color: #f1f5f9 !important;
}
.site-footer .footer-tagline {
  color: #cbd5e1 !important;
}
.site-footer .footer-col-title {
  color: #c4a46c !important; /* Keep original gold header in footer */
}
.site-footer .footer-column li {
  color: #94a3b8 !important;
}
.site-footer .footer-column li:hover {
  color: #ffffff !important;
}
.site-footer .footer-copyright,
.site-footer .footer-bottom-tagline {
  color: #64748b !important;
}
.site-footer .social-box {
  border-color: rgba(196, 164, 108, 0.2) !important;
  color: #c4a46c !important;
}
.site-footer .social-box:hover {
  background-color: #c4a46c;
  color: #060907;
}

/* ----------------------------------------------------
   PRELOADER & ANIMATIONS FOR RE-ENGINEERED HOME
   ---------------------------------------------------- */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0c120f;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  overflow: hidden;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__logo {
  z-index: 10;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseLogo 2s ease-in-out infinite;
}

.loader__ellipse {
  position: absolute;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__ellipse svg {
  width: 100%;
  height: 100%;
}

.loader__ellipse--outer {
  max-width: 1600px;
  max-height: 800px;
  animation: rotateOuter 35s linear infinite;
}

.loader__ellipse--inner {
  max-width: 800px;
  max-height: 800px;
  animation: rotateInner 25s linear infinite;
}

.loader__draw {
  fill: none;
  stroke: var(--brand-gold);
  stroke-width: 1.5;
  opacity: 0.25;
}

.loader__draw--outer {
  stroke-dasharray: 3700;
  stroke-dashoffset: 3700;
  animation: drawOuterPath 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.loader__draw--inner {
  stroke-dasharray: 2520;
  stroke-dashoffset: 2520;
  animation: drawInnerPath 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Animations */
@keyframes rotateOuter {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateInner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

@keyframes drawOuterPath {
  to { stroke-dashoffset: 0; }
}

@keyframes drawInnerPath {
  to { stroke-dashoffset: 0; }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(0.95); filter: drop-shadow(0 0 12px rgba(196, 164, 108, 0.25)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(196, 164, 108, 0.6)); }
}

/* Prevent body scroll when loading */
body.no-scroll {
  overflow: hidden !important;
}

/* Smooth fade for elements */
.transition-element {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ----------------------------------------------------
   HEADER STYLES (Copied from React Header.jsx)
   ---------------------------------------------------- */
.site-header {
  background-color: var(--brand-green);
  border-bottom: 1px solid rgba(196, 164, 108, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-normal);
  width: 100%;
}

.site-header.scrolled {
  background-color: rgba(26, 38, 30, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(196, 164, 108, 0.3);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  transition: var(--transition-normal);
}

.site-header.scrolled .header-container {
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header-logo-img {
  height: 76px;
  width: auto;
  display: block;
  transition: var(--transition-normal);
}

.site-header.scrolled .header-logo-img {
  height: 60px;
}

.logo-container:hover .header-logo-img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 8px rgba(196, 164, 108, 0.25));
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-pill-container {
  background-color: var(--brand-green-dark);
  border-radius: 50px;
  padding: 4px 8px;
  display: flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  padding: 8px 20px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-link-btn:hover {
  color: var(--text-white);
}

.nav-link-btn.active {
  background-color: var(--brand-green);
  color: var(--brand-gold);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(196, 164, 108, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-form {
  display: block;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-input {
  background-color: rgba(26, 38, 30, 0.6);
  border: 1px solid rgba(196, 164, 108, 0.2);
  color: var(--text-white);
  padding: 8px 40px 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  width: 180px;
  transition: var(--transition-fast);
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-search-input:focus {
  outline: none;
  border-color: var(--brand-gold);
  width: 240px;
  background-color: var(--brand-green-dark);
  box-shadow: 0 0 10px rgba(196, 164, 108, 0.15);
}

.search-submit-btn {
  background: transparent;
  border: none;
  position: absolute;
  right: 12px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.search-submit-btn:hover {
  color: var(--brand-gold);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

.mobile-nav-drawer {
  display: none;
  background-color: var(--brand-green-dark);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
  width: 100%;
}

.mobile-nav-drawer.open {
  display: block;
  max-height: 400px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

.mobile-nav-link-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  padding: 10px 16px;
  text-align: left;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

.mobile-nav-link-btn.active {
  color: var(--brand-gold);
  background-color: rgba(196, 164, 108, 0.08);
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-search-input:focus {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
    height: 76px;
  }
  .site-header.scrolled .header-container {
    height: 68px;
  }
  .header-logo-img {
    height: 56px;
  }
  .site-header.scrolled .header-logo-img {
    height: 48px;
  }
  .header-search-input {
    width: 100px;
    padding: 6px 30px 6px 12px;
  }
  .header-search-input:focus {
    width: 120px;
  }
}

/* ----------------------------------------------------
   FOOTER STYLES (Copied from React Footer.jsx)
   ---------------------------------------------------- */
.site-footer {
  background-color: #060907;
  border-top: 1px solid rgba(196, 164, 108, 0.15);
  width: 100%;
}

.footer-contact-bar {
  background-color: #0c120f;
  border-bottom: 1px solid rgba(196, 164, 108, 0.1);
  padding: 24px 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.contact-icon-box {
  border: 1px solid var(--brand-gold);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(196, 164, 108, 0.03);
  transition: var(--transition-fast);
}

.contact-item:hover .contact-icon-box {
  background-color: var(--brand-gold);
}

.contact-item:hover .gold-icon {
  color: #060907;
}

.gold-icon {
  color: var(--brand-gold);
  transition: var(--transition-fast);
}

.contact-text-box {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-gray);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-white);
}

a.contact-value:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}

.address-value {
  line-height: 1.4;
}

.footer-middle-bar {
  padding: 60px 0;
}

.middle-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-row {
  margin-bottom: 24px;
  cursor: pointer;
}

.footer-logo-img {
  height: 88px;
  width: auto;
  display: block;
  transition: var(--transition-fast);
}

.footer-logo-row:hover .footer-logo-img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 8px rgba(196, 164, 108, 0.25));
}

.footer-tagline {
  color: var(--text-white);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-brand-divider {
  width: 80px;
  height: 2px;
  background-color: var(--brand-gold);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: var(--font-headings);
  color: var(--brand-gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: var(--brand-gold);
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links li {
  font-size: 0.85rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-fast);
  width: fit-content;
}

.footer-col-links li:hover {
  color: var(--text-white);
  transform: translateX(3px);
}

.footer-bottom-bar {
  background-color: #040605;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.footer-bottom-tagline {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brand-gold);
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-box {
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  background-color: rgba(196, 164, 108, 0.02);
}

.social-box:hover {
  background-color: var(--brand-gold);
  color: #040605;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(196, 164, 108, 0.3);
}

@media (max-width: 1024px) {
  .middle-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand-column {
    align-items: center;
    text-align: center;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-item {
    width: 100%;
  }
}

/* ----------------------------------------------------
   QUOTE MODAL STYLES (Copied from React QuoteModal.jsx)
   ---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(4, 6, 5, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-content {
  background: linear-gradient(185deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--brand-gold);
  border-radius: 8px;
  max-width: 650px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(196, 164, 108, 0.1);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.modal-subtitle-label {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 0.05em;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-top: 4px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 4px;
}

.modal-close-btn:hover {
  color: var(--brand-gold);
  transform: rotate(90deg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.15);
}

.field-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 4px;
  display: block;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 24px;
}

/* Success State */
.modal-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
}

.success-icon-svg {
  color: var(--brand-gold);
  margin-bottom: 20px;
}

.modal-success-state h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.modal-success-state p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 450px;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-actions {
    flex-direction: column-reverse;
  }
  .modal-actions button {
    width: 100%;
  }
}
