/* Planteaza Page Specific Styles */

/* Hero Section Customization */

.planteaza-content {
  padding-top: 20px;
}

.planteaza-main-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}

.highlight-gradient {
  background: linear-gradient(90deg, #07675C 0%, #079888 50%, #41C4AC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* Rotating Headline Animation */
.rotating-headline {
  position: relative;
  height: 1.1em;
  overflow: visible;
  display: inline-block;
  vertical-align: bottom;
  min-width: 250px;
}

.rotate-text {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
  opacity: 0;
  animation: rotateText 8s linear infinite;
  white-space: nowrap;
  background: linear-gradient(90deg, #07675C 2.4%, #079888 57.21%, #41C4AC 78.37%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: block;
}

.rotate-text:nth-child(1) {
  animation-delay: 0s;
}

.rotate-text:nth-child(2) {
  animation-delay: 2s;
}

.rotate-text:nth-child(3) {
  animation-delay: 4s;
}

.rotate-text:nth-child(4) {
  animation-delay: 6s;
}

@keyframes rotateText {
  0%   {
    opacity: 0;
    transform: translateY(100%);
  }
  5%   {
    opacity: 1;
    transform: translateY(0);
  }
  25%  {
    opacity: 1;
    transform: translateY(0);
  }
  30%  {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
  }
}

.planteaza-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}

.planteaza-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.planteaza-stats .stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}

.planteaza-stats .stat-label {
  font-size: 16px;
  opacity: 0.8;
  color: #ffffff;
}

/* Implica-te Button */
.btn-implica {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 200px;
  height: 44px;
  position: absolute;
  top: 170px;
  
  border-radius: 30px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  background: transparent;
  text-decoration: none;
  padding: 0 20px;
  transition: all 0.3s;
}

.btn-implica:hover {
  background: #ffffff;
}

.btn-implica:hover .btn-implica-text {
  color: #28282a;
}

.btn-implica-text {
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: left;
  transition: color 0.3s;
  font-family: var(--font-mono);
  font-size: var(--fs-16);
  font-weight: 500;
}

.btn-arrow-implica {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.arrow-circle-implica {
  position: absolute;
  width: 100%;
  height: 100%;
 
  transition: filter 0.3s;
}

.arrow-icon-implica {
  position: relative;
  width: 10px;
  height: 10px;
  filter: invert(1);
  transition: filter 0.3s;
}

.btn-implica:hover .arrow-circle-implica {
  filter: invert(0);
}

.btn-implica:hover .arrow-icon-implica {
  filter: invert(0);
}

/* Main Content Wrapper */
.planteaza-wrapper {
 background-color: var(--color-background-light);
    border-radius: var(--br-120) var(--br-120) 0 0;
    padding: 95px 0 0px;
    margin-top: -110px;
    position: relative;
    z-index: 2;
}

/* Involvement Section */

.involvement-header {
  margin-bottom: 40px;
}

.section-subtitle {
  max-width: 600px;
  color: #666;
  margin-top: 10px;
}

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  color: #999;
  cursor: pointer;
  font-family: inherit;
}

.tab-btn.active {
  color: #28282a;
}

.tab-line {
  height: 2px;
  width: 150px;
  background-color: #5CC3AD;
  margin-bottom: 60px;
  transition: all 0.3s ease;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #28282a;
}

.card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100px;
}

.btn-sm {
  
  height: 44px;
  position: relative;
  text-align: left;
  font-size: 16px;
  
  font-family: inherit;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-geist);
color: var(--color-gray);
}

.btn-sm:hover {
  border-color: #28282a;
  color: #28282a;
}

.btn-arrow-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.arrow-circle-dark {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: invert(1);
}

.arrow-icon-dark {
  position: relative;
  width: 10px;
  height: 10px;

}

/* Events Section */
.events-section {
  padding: 80px 0 0 0;
  background-color: var(--color-whitesmoke);

}

.events-section .section-tag {
  color: #28282a;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 40px;
}

.events-section .section-tag span {
  color: #5CC3AD;
}

.events-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.events-desc {
  max-width: 750px;
  margin-bottom: 40px;
  color: #28282a;
  font-size: 16px;
  line-height: 1.6;
}

.event-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-item {
  background: transparent;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid rgba(40, 40, 42, 0.1);
}

.event-item:last-child {
  border-bottom: none;
}

.event-left {
  display: flex;
  gap: 30px;
  flex: 1;
}

.event-date {
  font-weight: 400;
  color: #28282a;
  font-size: 16px;
  min-width: 60px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-details h4 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 700;
  color: #28282a;
}

.event-type {
  display: block;
  font-size: 14px;
  color: #666;
}

.event-participants {
  display: block;
  font-size: 14px;
  color: #28282a;
  font-weight: 400;
}

.event-points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #28282a;
  margin-top: 4px;
}

.star-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.star {
  position: relative;
  width: 12px;
  height: 12px;
  z-index: 1;
}

.event-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  text-align: right;
}

.event-status-text {
  font-size: 14px;
  color: #28282a;
  line-height: 1.4;
}

.event-status-text strong {
  font-weight: 700;
}

.btn-inscrie {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 32px;
  background: transparent;
  height: 44px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #28282a;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 30px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.btn-inscrie:hover {
  border-color: #28282a;
  background: transparent;
  color: #28282a;
}

.btn-arrow-inscrie {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.btn-arrow-inscrie img {
  width: 12px;
  height: 12px;
  position: relative;
  z-index: 2;
}

.btn-inscrie:hover .btn-arrow-inscrie {
  background: transparent;
}

.btn-inscrie:hover .btn-arrow-inscrie img {
  filter: none;
}

/* Calendar */
.events-calendar {

  padding: 40px;
  border-radius: 20px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.calendar-nav-btn {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.3s;
}

.calendar-nav-btn:hover {
  color: #28282a;
}

.calendar-header .current-month {
  color: #28282a;
  font-size: 20px;
  font-weight: 700;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  text-align: center;
  margin-bottom: 30px;
}

.day-name {
  font-weight: 600;
  color: #999;
  font-size: 14px;
  margin-bottom: 10px;
}

.day {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  color: #28282a;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}

.day:hover:not(:empty) {
  background-color: #f5f5f5;
}

.day.active {
  background-color: #28282a;
  color: #fff;
  font-weight: 600;
}

.day.event-day::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #5CC3AD;
}

.day.active.event-day::after {
  background-color: #fff;
}

.calendar-legend {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-bottom: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  color: #28282a;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.green {
  background-color: #5CC3AD;
}

.legend-dot.teal {
  background-color: #076755;
}

.calendar-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.show-all-events {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #28282a;
  text-decoration: none;
  transition: color 0.3s;
}

.show-all-events:hover {
  color: #5CC3AD;
}

.show-all-events strong {
  font-weight: 700;
}

.show-all-events img {
  width: 12px;
  height: 12px;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0 0 0;

}

.gallery-section .section-tag {
  color: #28282a;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 40px;
}

.gallery-section .section-tag span {
  color: #5CC3AD;
}

.gallery-desc {
  max-width: 600px;
  margin-bottom: 40px;
  color: #666;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-item.large {
  grid-column: 1 / -1;
}

/* Donation Section */
.donation-section {
  padding: 80px 0 0 0;
  background-color: #f2f2f2;
}

.donation-header {
  margin-bottom: 60px;
}

.donation-tag {
  color: #28282a;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-mono);
}

.donation-tag span {
  color: #5CC3AD;
}

.donation-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.donation-header-left {
  flex: 1;
}

.donation-header-right {
  flex: 1;
}

.donation-description {
  color: #28282a;
  line-height: 1.6;
  font-size: 16px;
}

.donation-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.donation-left {
  flex: 1;
}

.donation-right {
  flex: 1;
}

.donation-benefit {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}

.benefit-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #5CC3AD;
}

.benefit-text {
  color: #28282a;
  line-height: 1.6;
  font-size: 14px;
}

.payment-titles-row {
  margin-top: 30px;
  margin-bottom: 20px;
}

.payment-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #28282a;
  margin: 0;
}

.line-div {
  width: 100%;
  height: 2px;
  position: relative;
  border-top: 2px solid #5CC3AD;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.bank-details {
  margin-top: 20px;
  font-size: 14px;
  color: #28282a;
  line-height: 1.6;
}

.bank-details strong {
  font-weight: 700;
}

.donation-form-wrapper {
  width: 100%;
}

.donation-form {
  
 
  border-radius: 20px;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.form-group {
  
  flex-direction: column;
}

.form-input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-family: inherit;
  font-size: 16px;
  background: transparent;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #5CC3AD;
}

.form-label-inline {
  font-size: 14px;
  font-weight: 600;
  color: #28282a;
  margin-bottom: 10px;
}

.form-label-block {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #28282a;
  margin-bottom: 15px;
  margin-top: 10px;
}

.freq-toggle {
  display: inline-flex;
  background: #5CC3AD;
  border-radius: 30px;
  padding: 4px;
  overflow: hidden;
}

.freq-btn {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  transition: background 0.3s;
}

.freq-btn.active {
  background: #fff;
  color: #5CC3AD;
}

.amount-group-inline {
  justify-content: flex-end;
}

.amount-input-wrapper {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  gap: 10px;
}

.amount-input {
  border: none;
  width: 80px;
  padding: 10px 0;
  font-size: 16px;
  background: transparent;
  text-align: right;
}

.amount-input:focus {
  outline: none;
}

.currency-select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
}

.currency-select:focus {
  outline: none;
}

.payment-methods-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.payment-option input[type="radio"] {
  width: 20px;
  height: 20px;
}

.payment-option img {
  height: 40px;
}

.form-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
     
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.checkbox-label a {
  color: #5CC3AD;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.donate-btn {
  flex-shrink: 0;
}

/* Main Button Styles from index_new.php */
.main-button {
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 100px;
  padding: 5px 5px 5px 24px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.main-button div {
  background-color: #fff;
  width: 33px;
  height: 33px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
  flex-shrink: 0;
}

.main-button span {
  margin-right: 10px;
  color: #FFF;
  font-family: Geist;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-button-lite-bg-form {
  border-radius: 30px;
  border: 1px solid #28282A;
  background-color: transparent;
  padding: 5px 5px 5px 24px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.main-button-lite-bg-form span {
  color: rgba(40, 40, 42, 1);
  margin-right: 10px;
  font-family: Geist;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.main-button-lite-bg-form div {
  background-color: rgba(77, 184, 162, 1);
  width: 33px;
  height: 33px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s ease;
  flex-shrink: 0;
}

.main-button-lite-bg-form div svg path {
  stroke: #ffffff;
}

.main-button-lite-bg-form div svg rect {
  fill: #ffffff;
}

.main-button-lite-bg-form:hover {
  background-color: #28282A;
}

.main-button-lite-bg-form:hover span {
  color: #ffffff;
}

.main-button-lite-bg-form:hover div {
  background-color: #ffffff;
}

.main-button-lite-bg-form:hover div svg path {
  stroke: #28282A;
}

.main-button-lite-bg-form:hover div svg rect {
  fill: #28282A;
}

/* Responsive Design */
@media (min-width: 768px) {
  .planteaza-main-title {
    font-size: 64px;
  }

  .planteaza-stats {
    justify-content: space-between;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
  }

  .gallery-item.large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .gallery-item.large img {
    height: 100%;
  }

  .donation-layout {
    flex-direction: row;
    gap: 60px;
  }

  .donation-info {
    flex: 1;
    max-width: 500px;
  }

  .donation-form-wrapper {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .donation-header-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .donation-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .form-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-item {
    flex-direction: column;
    gap: 20px;
  }

  .event-left {
    flex-direction: column;
    gap: 15px;
  }

  .event-right {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .btn-inscrie {
   
    justify-content: space-between;
  }

  .calendar-grid {
    gap: 8px;
  }

  .day {
    height: 36px;
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .events-layout {
    flex-direction: row;
  }

  .events-list {
    flex: 3;
  }

  .events-calendar {
    flex: 2;
  }
}

@media (max-width: 768px) {
  .planteaza-main-title {
    font-size: 40px;
  }

  .planteaza-hero {
    padding-bottom: 0;
  }

  .rotating-headline {
    min-width: 150px;
  }

  .form-row-dual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .planteaza-wrapper {
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    padding: 40px 0 0;
  }

  .card {
    align-items: center;
    text-align: center;
  }

  .card-icon {
    display: flex;
    justify-content: center;
  }

  .card .btn-sm,
  .btn-inscrie {
    width: 100%;
    max-width: 250px;
    height: 44px;
    padding: 0 20px;
    justify-content: center;
    gap: 12px;
  }

  .card p {
    min-height: auto;
    margin-bottom: 0;
  }

  .involvement-section {
    padding-bottom: 0;
  }

  .planteaza-main-title {
    font-size: clamp(24px, 5vw, 32px);
  }

  .planteaza-hero {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .site-header.navbar {
    margin-bottom: 20px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .planteaza-content {
    padding-top: 40px;
  }

  .logo {
    width: 130px;
    height: auto;
  }

  .donate-btn-container {
    flex-shrink: 0;
  }

  .donate-btn-container .btn {
    padding: 8px 12px 8px 16px;
    font-size: 12px;
    gap: 10px;
  }

  .donate-btn-container .btn-arrow {
    width: 24px;
    height: 24px;
  }

  .donate-btn-container .btn-arrow .arrow-circle {
    width: 24px;
    height: 24px;
  }

  .donate-btn-container .btn-arrow .arrow-icon {
    width: 10px;
    height: 10px;
  }

  .btn-implica {
    position: static;
    max-width: 140px;
    height: auto;
    padding: 6px 10px;
    font-size: 12px;
    
  }

  .btn-implica-text {
    font-size: 12px;
  }

  .btn-arrow-implica {
    width: 20px;
    height: 20px;
  }

  .arrow-circle-implica {
    width: 20px;
    height: 20px;
  }

  .arrow-icon-implica {
    width: 8px;
    height: 8px;
  }

  .hero-description {
    font-size: 14px;
    width: 100%;
  }

  .planteaza-stats {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .planteaza-stats .stat-item {
    text-align: center;
  }

  .planteaza-stats .stat-label {
    font-size: 14px;
  }

  .planteaza-stats .stat-number {
    font-size: 35px;
  }

  .main-button {
    padding: 2px 5px 2px 15px;
    font-size: 13px;
  }

  .main-button span {
    margin-top: 3px;
    margin-right: 10px;
    font-size: 14px;
  }

  .main-button div {
    width: 23px;
    height: 23px;
    padding-top: 0px;
  }

  .main-button div svg {
    width: 10px;
  }

  .main-button-lite-bg-form {
    border: 2px solid #28282A;
    padding: 2px 5px 2px 15px;
  }

  .main-button-lite-bg-form span {
    color: rgba(40, 40, 42, 1);
    font-size: 14px;
    margin-top: 3px;
  }

  .main-button-lite-bg-form div {
    background-color: rgba(77, 184, 162, 1);
    width: 23px;
    height: 23px;
  }

  .main-button-lite-bg-form div svg {
    width: 10px;
  }

  .form-row-dual {
    grid-template-columns: 1fr;
  }
}

/* Modal Backdrop and Functionality */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.modal-backdrop.show {
  opacity: 0.5;
}

/* Modal visibility */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show {
  display: block !important;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Modal fade animation */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}
