/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #d4af37;
  --dark-navy: #0a0909;
  --light-gold: #f4e5c2;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;

  --font-heading: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ==================== HEADER ==================== */

.header {
  top: 0;
  left: 0;
  width: 100%;
  /* height: 650px; */
  background: #000000;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}
/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #9c812a 0%, #F4E4C1 50%, #eacc6a 100%);;
    padding: 0.75rem 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
 
.top-banner p {
    color: #0A1828;
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
}

/*Banner Image*/
.lux-banner {
  position: relative;
  background-image: url('./images/width_2400.jpeg');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 220%;
  box-shadow: inset -150000px 0px 0px 0 rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  padding: 3rem 3rem 4rem;
}

@media (min-width: 1530px) {
  .lux-banner {
    min-height: 90vh;
    background-size: 150%;
  }
}
/* .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 175vh;
  z-index: -1;
  overflow: hidden;
} */

/* .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} */

/*Overlay for better text contrast */
.banner-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/*Banner Content*/
.banner-content{
    /* position: absolute; */
    display: flex;
    flex-direction: column;
    text-align: justify;
    top: 45%;
    right: 40%;
    /* transform: translateY(-50%); */
    width: 100%;
    max-width: 420px;
    gap: 20px;
    color: #ffffff;
}

.logo-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.logo {
  width: 100%;
  padding: 0.5rem 0;
  text-align: center;
  padding-right: 40px;
}

@media (min-width: 1530px) {
  .banner-content {
    max-width: 515px;
    gap: 30px;
    justify-content: center;
  }
  .logo {
    padding-right: 45px;
  }
}

.logo img {
  width: 160px;
  height: auto;
}
.logo p{
  font-style: italic;
  font-size: 16px;
  padding-bottom: 5px;

}
@media (min-width: 1530px) {
  .logo img {
    width: 210px;
    height: auto;
  }
  .logo p{
    font-size: 18px;
  }
}

.content-1 {
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.2;  
}
.content-1 p {
  color: #ffffff;
  font-size: 60px;
  font-weight: 400;
}
@media (min-width: 1530px) {
  .content-1 p {
    font-size: 75px;
  }
}

.content-1 .golden-text {
  font-size: 87px;
  font-weight: 700;
  letter-spacing: 2px;

  background: linear-gradient(180deg, #F4E4C1 0%, #D4AF37 100%);
  background: #EDE7C9;
background: radial-gradient(circle, rgba(237, 231, 201, 1) 0%, rgba(183, 162, 97, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}


@media (min-width: 1530px) {
  .content-1 .golden-text {
    font-size: 108px;
    line-height: 1;
  }
}

.content-2 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  padding-right: 25px;
}

.content-3 p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  padding-right: 25px;
}

@media (min-width: 1530px) {
  .content-2 p, .content-3 p {
    font-size: 20px;
  }
}


/* ==================== PRESENTATION SECTION ==================== */
.presentation-section {
  min-height: 100vh;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 0 80px;
  overflow: hidden;
}

.presentation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.presentation-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  position: relative;
  align-items: stretch;
  z-index: 2;
}

/* ========== CENTERED HEADER ========== */
.presentation-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 1s ease-out;
}

.presentation-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.presentation-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ========== CONTENT ROW (FORM + VIDEO) ========== */
.presentation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ========== LEFT SIDE - FORM ========== */
.presentation-form-wrapper {
  animation: fadeInLeft 1s ease-out 0.3s backwards;
}

.presentation-form-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: rgba(0, 0, 0, 0.6);
}

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

/* Upload Area */
.upload-area {
  border: 2px dashed rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.upload-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.upload-text {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.upload-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.upload-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--primary-gold);
  border-radius: 50px;
  color: var(--primary-gold);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.upload-button:hover {
  background: var(--primary-gold);
  color: #000000;
  transform: translateY(-2px);
}

.upload-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
}

.file-preview {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.file-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white);
}

.file-item-remove {
  background: none;
  border: none;
  color: var(--primary-gold);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
}

/*Captcha*/
.captcha-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.captcha-error {
  display: none;
  color: red;
  font-size: 14px;
  margin-top: 8px;
}

.captcha-error.show {
  display: block;
  padding-left: 25px;
  margin-top: 25px;
}

/* Submit Button */
.create-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4e5c2 100%);
  border: none;
  border-radius: 50px;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.create-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.create-button:active {
  transform: translateY(-1px);
}

/* ========== RIGHT SIDE - VIDEO ========== */
.presentation-video-wrapper {
  position: relative;
  flex: 1;
  flex-direction: column;
  display: flex;
  height: auto;
  animation: fadeInRight 1s ease-out 0.3s backwards;
}

.video-frame {
  position: relative;
  flex: 1;
  display: flex;
  height: 30%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.presentation-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
  pointer-events: none;
}

.video-accent-border {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

/* ========== VIDEO CTA ========== */
.video-cta {
  margin-top: 30px;
  text-align: center;
  flex: 1;
  justify-content: center;
  padding: 50px; 
  border-radius: 15px;
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

.video-cta-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.video-cta-description {
  font-family: 'Roboto', sans-serif;
  font-size: medium;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 90%;
  font-weight: 300;
}

.video-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.video-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.video-cta-button svg {
  transition: transform 0.3s ease;
}

.video-cta-button:hover svg {
  transform: translateX(5px);
}


/* ==================== FOOTER SECTION ==================== */
.footer {
  background: var(--dark-navy);
  color: var(--white);
  padding-top: 100px;
  padding-bottom: 5px;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 3rem;
  ;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 100%;
  padding: 0.5rem 0;
}

.footer-logo img {
  width: 200px;
  height: 50px;
}

.footer-description {
  color: var(--light-gold);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--dark-navy);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
  color: var(--light-gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--light-gold);
}

.footer-bottom p {
  margin: 0.5rem 0;
}

.footer-legal-links {
  margin: 2rem 0;
}

.footer-legal-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
}

.footer-legal-links a {
  font-size: 14px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #b19a55;
}

/* Compliance text */
.footer-compliance,
.footer-state-disclosure {
  max-width: 1100px;
  margin: 2rem auto;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

.footer-compliance a,
.footer-state-disclosure a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #fff;
  text-decoration: underline;
}

.footer-compliance a:hover {
  color: #b19a55;
}

.footer-state-disclosure p {
  margin: 0.25rem 0;
}


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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .logo {
    padding-left: 1rem;
    padding-right: 1rem;

  }

  .header {
    height: 600px;
  }

  .banner-content {
    top: 45%;
    right: 10%;              
    max-width: 350px;  
    text-align: center;      
  }

  .content-1 p {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .content-1 .golden-text {
    font-size: 36px;
  }

  .content-2 p,
  .content-3 p {
    font-size: 11px;
  }
  

  .presentation-section {
    padding: 100px 0 60px;
  }

  .presentation-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .presentation-container {
    padding: 0 20px;
  }

  .presentation-header {
    margin-bottom: 3rem;
  }

  .presentation-title {
    font-size: 3rem;
  }

  .presentation-description {
    font-size: 1.1rem;
  }

  .presentation-video {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .presentation-section {
    padding: 80px 0 40px;
  }

  .presentation-header {
    margin-bottom: 2.5rem;
  }

  .presentation-title {
    font-size: 2.2rem;
  }

  .presentation-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .presentation-form-card {
    padding: 1.5rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .upload-area {
    padding: 2rem 1rem;
  }

  .presentation-video {
    min-height: 300px;
  }

  .video-accent-border {
    top: -10px;
    right: -10px;
  }

}

.upload-area.invalid-state {
  border-color: #ff4d4d !important;
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  display: block !important;
  opacity: 0 !important;
}


/* ---------- Backdrop ---------- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;

  /* Fade-in animation */
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.modal-visible {
  display: flex;
  opacity: 1;
}

/* ---------- Card ---------- */
.modal-card {
  background: #000;
  padding: 48px 40px 44px;
  width: 100%;
  max-width: 470px;
  text-align: center;
  position: relative;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;

  /* Slide-up animation */
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.modal-visible .modal-card {
  transform: translateY(0);
}

/* ---------- Close Button ---------- */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- States ---------- */
.modal-state {
  display: block;
}

.modal-state--hidden {
  display: none;
}

.modal-state > hr {
  background-color: rgb(177 154 85);
  height: 2px;
  width: 100%;
  margin-bottom: 1.75rem;
  border: none;
}

/* ---------- Spinner ---------- */
.modal-spinner-ring {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.10);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: modalSpin 0.9s linear infinite;
  margin: 0 auto 28px;
}

@keyframes modalSpin {
  to {
    transform: rotate(360deg);
  }
}

.modal-loading-text {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
}

.modal-sub-text {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
}

/* ---------- Icon Circle ---------- */
.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-icon--success {
  background: rgba(212, 175, 55, 0.12);
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
}

.modal-icon--error {
  background: rgba(220, 38, 38, 0.10);
  border: 2px solid #dc2626;
  color: #dc2626;
}

/* ---------- Typography ---------- */
.modal-title {
  margin: 0 0 5px;
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1;
  color: #d4af37;
  text-transform: uppercase;
}

.modal-body-text {
  margin: 0 0 1.75rem;
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.6;
}

/* ---------- Download Button ---------- */
.modal-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(177 154 85);
  color: #fff;
  text-decoration: none;
  padding: 6px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all 0.2s, transform 0.15s;
  text-transform: uppercase;
}

.modal-download-btn:hover {
  background: var(--light-gold);
  transform: translateY(-1px);
  color: #000;
}

.modal-download-btn:active {
  transform: translateY(0);
}

/* ---------- Retry Button ---------- */
.modal-retry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 13px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background 0.2s, border-color 0.2s;
}

.modal-retry-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--primary-gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .modal-card {
    padding: 40px 24px 36px;
  }

  .modal-title {
    font-size: 19px;
  }

  .modal-download-btn,
  .modal-retry-btn {
    width: 100%;
    justify-content: center;
  }
}
.modalSuccessContent {
    display: flex;
    align-items: center;
    gap: 20px;
}
.modalSuccessContent-img {
    max-width: 35%;
    flex: 1 0 35%;
}
.modalSuccessContent-img img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.modalSuccessContent-right {
  text-align: left;

}
.modalSuccessContent-right h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.modalSuccessFooter {
  margin-top: 3rem;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.modalSuccessFooter p {
  margin-bottom: 2rem;
}

.modalSuccessFooter p > * {
  display: block;
  color: rgb(177 154 85);
}
.modalSuccessFooter p a {
  color: #fff;
}
.modalSuccessFooter p:last-child {
  margin-bottom: 0;
}
/* END PRESENTATION MODAL */