  :root {
    --maroon: #5C0A1A;
    --maroon-deep: #3a0610;
    --gold: #C9963A;
    --gold-light: #E8C97A;
    --gold-pale: #f5e6c0;
    --cream: #FAF5EE;
    --blush: #F7EDE0;
    --deep: #1A0508;
    --text: #3A2010;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--cream); color: var(--text); font-family: 'Jost', sans-serif; overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 40px;
    background: rgba(26,5,8,0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,150,58,0.15);
  }
  .nav-left { display: flex; align-items: center; gap: 12px; }
  .nav-logo { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(201,150,58,0.5); }
  .nav-brand { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: var(--gold-light); }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { background: var(--maroon); color: #fff; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 10px 20px; text-decoration: none; transition: background 0.3s; }
  .nav-cta:hover { background: var(--gold); color: var(--deep); }
  .nav-logo-top {width: 100px; height: auto;}
  @media (max-width: 700px) { .nav-links { display: none; } nav { padding: 10px 18px; } .nav-cta { font-size: 10px; padding: 6px 8px; } .nav-logo-top{width: 60px;}}

  /* HERO */
  .hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at 65% 40%, #3d0a16 0%, var(--deep) 65%);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    padding-top: 74px;
  }
  @media (max-width: 768px) { 
    .hero { grid-template-columns: 1fr; padding: 0 !important; padding-top: 110px !important;}
  
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' stroke='rgba(201,150,58,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-size: 80px 80px; pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; top: 80px; bottom: 0; left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,150,58,0.25) 30%, rgba(201,150,58,0.25) 70%, transparent);
  }
  @media (max-width: 768px) { .hero::after { display: none; } }

  @keyframes fadeLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }
  @keyframes fadeRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }

  .hero-left {
    position: relative; z-index: 2;
    padding: 80px 60px 80px 80px;
    animation: fadeLeft 1s ease both;
  }
  @media (max-width: 768px) { .hero-left { padding: 40px 24px 20px; text-align: center; align-items: center; display: flex; flex-direction: column; } }

  .hero-eyebrow { font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; display: block; animation: fadeLeft 1s 0.2s ease both; opacity: 0; animation-fill-mode: both; }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(44px, 6vw, 82px); line-height: 1.02; color: #fff; animation: fadeLeft 1s 0.3s ease both; opacity: 0; animation-fill-mode: both; }
  .hero-title em { display: block; font-style: italic; color: var(--gold); }
  .hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(16px, 2.5vw, 22px); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.5); margin-top: 14px; line-height: 1.5; animation: fadeLeft 1s 0.45s ease both; opacity: 0; animation-fill-mode: both; }

  .hero-divider { display: flex; align-items: center; gap: 12px; margin: 26px 0; animation: fadeLeft 1s 0.55s ease both; opacity: 0; animation-fill-mode: both; }
  .hero-divider-line { flex: 1; height: 1px; background: rgba(201,150,58,0.3); max-width: 60px; }
  .hero-divider-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

  .hero-desc { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.85; max-width: 420px; animation: fadeLeft 1s 0.65s ease both; opacity: 0; animation-fill-mode: both; }

  .hero-btns { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; animation: fadeLeft 1s 0.75s ease both; opacity: 0; animation-fill-mode: both; }
  .btn-gold { background: var(--gold); color: var(--deep); font-family: 'Jost', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px 34px; text-decoration: none; transition: background 0.3s, transform 0.2s; display: inline-block; }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(201,150,58,0.4); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px 34px; text-decoration: none; transition: all 0.3s; display: inline-block; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  .hero-badges { display: flex; gap: 24px; margin-top: 40px; animation: fadeLeft 1s 0.9s ease both; opacity: 0; animation-fill-mode: both; flex-wrap: wrap; }
  .badge { text-align: center; }
  .badge-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); line-height: 1; }
  .badge-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 4px; }
  .badge-sep { width: 1px; background: rgba(201,150,58,0.2); align-self: stretch; }

  /* Hero Right */
  .hero-right {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    padding: 60px 60px 60px 40px;
    animation: fadeRight 1.2s 0.3s ease both;
    opacity: 0; animation-fill-mode: both;
  }
  @media (max-width: 768px) { 
    .hero-right { padding: 20px 24px 60px; } 
    .btn-gold {padding: 8px 8px;}
    .btn-ghost {padding: 8px 8px;}
    .badge-num {font-size: 20px;}
  }

  .logo-showcase {
    position: relative;
    width: clamp(260px, 38vw, 440px);
    aspect-ratio: 1;
  }
  .logo-ring-outer { position: absolute; inset: -28px; border-radius: 50%; border: 1px solid rgba(201,150,58,0.22); animation: spinRing 40s linear infinite; }
  .logo-ring-mid { position: absolute; inset: -14px; border-radius: 50%; border: 1px dashed rgba(201,150,58,0.12); animation: spinRing 28s linear infinite reverse; }
  .logo-ring-inner2 { position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(201,150,58,0.08); animation: spinRing 20s linear infinite; }
  @keyframes spinRing { to { transform: rotate(360deg); } }
  .logo-glow { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 80px rgba(201,150,58,0.18), 0 0 160px rgba(92,10,26,0.35); }
  .logo-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; position: relative; z-index: 1; box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 3px rgba(201,150,58,0.3); }

  /* corner brackets */
  .hero-corner { position: absolute; width: 56px; height: 56px; border-color: rgba(201,150,58,0.25); border-style: solid; }
  .hc-tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
  .hc-br { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

  /* MARQUEE */
  .marquee-wrap { background: var(--maroon); padding: 13px 0; overflow: hidden; white-space: nowrap; }
  .marquee-inner { display: inline-block; animation: marquee 28s linear infinite; font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(255,255,255,0.8); font-size: 15px; letter-spacing: 0.08em; }
  .marquee-inner span { margin: 0 26px; }
  .marquee-inner .gem { color: var(--gold-light); font-style: normal; font-size: 11px; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SHARED */
  section { padding: 96px 24px; }
  .container { max-width: 1120px; margin: 0 auto; }
  .section-label { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 5vw, 52px); line-height: 1.1; color: var(--deep); }
  .section-title em { font-style: italic; color: var(--maroon); }
  .section-title.light { color: #fff; }
  .section-title.light em { color: var(--gold-light); }
  .section-body { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; line-height: 1.8; color: #7a5030; margin-top: 18px; }
  .section-body.light { color: rgba(255,255,255,0.45); }

  /* ABOUT */
  .about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px;} .about-logo-img{display: none;} .about-logo-bg{display: none;} }

  .about-logo-wrap { display: flex; align-items: center; justify-content: center; position: relative; }
  .about-logo-frame { position: relative; width: 100%; max-width: 370px; }
  .about-logo-bg { position: absolute; inset: -18px; background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%); border-radius: 4px; z-index: 0; }
  .about-logo-bg::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,150,58,0.22); border-radius: 2px; }
  .about-logo-img { width: 100%; border-radius: 50%; position: relative; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
  .ac { position: absolute; width: 24px; height: 24px; border-color: var(--gold); border-style: solid; z-index: 2; }
  .ac-tl { top: -6px; left: -6px; border-width: 2px 0 0 2px; }
  .ac-tr { top: -6px; right: -6px; border-width: 2px 2px 0 0; }
  .ac-bl { bottom: -6px; left: -6px; border-width: 0 0 2px 2px; }
  .ac-br { bottom: -6px; right: -6px; border-width: 0 2px 2px 0; }

  .stats-row { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
  .stat { border-left: 2px solid var(--gold); padding-left: 14px; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--maroon); line-height: 1; }
  .stat-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #9a7050; margin-top: 4px; }


  @media (max-width:992px) {
    .stat-label {font-size: 8px;}
    .stat-num {font-size: 20px;}
    .stats-row { gap: 18px; }

  }
  /* SERVICES */
  .services { background: var(--deep); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; margin-top: 52px; background: rgba(201,150,58,0.07); }
  .service-card { background: var(--deep); padding: 42px 30px; position: relative; overflow: hidden; transition: background 0.4s, transform 0.3s; cursor: default; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--maroon), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .service-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-3px); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num { font-family: 'Playfair Display', serif; font-size: 48px; color: rgba(201,150,58,0.07); position: absolute; top: 14px; right: 18px; line-height: 1; }
  .service-icon { font-size: 30px; margin-bottom: 16px; }
  .service-name { font-family: 'Playfair Display', serif; font-size: 19px; color: #fff; margin-bottom: 10px; }
  .service-desc { font-size: 13px; color: rgba(255,255,255,0.36); line-height: 1.7; }

  /* SHOWCASE */
  .showcase { background: var(--blush); }
  .showcase-header { text-align: center; margin-bottom: 52px; }
  .cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  @media (max-width: 700px) { .cards-row { grid-template-columns:1fr; } }
  .outfit-card { position: relative; overflow: hidden; cursor: pointer; }
  .outfit-card-inner { display: flex; align-items: center; justify-content: center; font-size: 54px; transition: transform 0.6s; }
  .outfit-card:hover .outfit-card-inner { transform: scale(1.05); }
  .outfit-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,5,8,0.9) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; opacity: 0; transition: opacity 0.4s; }
  .outfit-card:hover .outfit-overlay { opacity: 1; }
  .outfit-tag { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
  .outfit-name { font-family: 'Playfair Display', serif; font-size: 16px; color: #fff; }
  .oc2 { background: linear-gradient(145deg, #0a2060, #050f30); }
  .oc3 { background: linear-gradient(145deg, #1a5c1a, #0a2a0a); }
  .oc4 { background: linear-gradient(145deg, #5c3010, #2a1405); }
  .oc5 { background: linear-gradient(145deg, #3a0a60, #180428); }
  .oc6 { background: linear-gradient(145deg, #1a4a5c, #0a1e28); }

  /* PROCESS */
  .process { background: var(--cream); }
  .process-header { text-align: center; margin-bottom: 60px; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  @media (max-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
  .steps::before { content: ''; position: absolute; top: 34px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--gold), var(--maroon), var(--gold)); opacity: 0.28; }
  @media (max-width: 700px) { .steps::before { display: none; } }
  .step { text-align: center; padding: 0 14px; }
  .step-circle { width: 68px; height: 68px; border-radius: 50%; border: 1.5px solid var(--gold); background: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Playfair Display', serif; font-size: 20px; color: var(--maroon); position: relative; z-index: 1; }
  .step-title { font-family: 'Playfair Display', serif; font-size: 16px; margin-bottom: 10px; color: var(--deep); }
  .step-desc { font-size: 13px; color: #9a7050; line-height: 1.65; }

  /* TESTIMONIALS */
  .testimonials { background: var(--maroon); }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 52px; }
  .testi-card { background: rgba(255,255,255,0.07); padding: 30px; border-top: 2px solid rgba(232,201,122,0.28); }
  .testi-quote { font-family: 'Playfair Display', serif; font-size: 50px; color: rgba(255,255,255,0.1); line-height: 0.5; margin-bottom: 14px; font-style: italic; }
  .testi-stars { color: var(--gold-light); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
  .testi-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 16px; }
  .testi-name { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }

  /* VISIT */
  .visit { background: var(--deep); }
  .visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  @media (max-width: 768px) { .visit-grid { grid-template-columns: 1fr; gap: 44px; } }
  .contact-block { margin-top: 32px; }
  .contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .contact-item:last-child { border-bottom: none; }
  .contact-icon { width: 38px; height: 38px; border: 1px solid rgba(201,150,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: var(--gold); }
  .contact-lbl { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
  .contact-val { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: rgba(255,255,255,0.75); }
  .contact-val a { color: inherit; text-decoration: none; }
  .visit-right { display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .visit-logo-img { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,150,58,0.38); box-shadow: 0 0 40px rgba(201,150,58,0.12); }
  .map-box { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,150,58,0.1); padding: 32px; text-align: center; }
  .map-pin { font-size: 38px; margin-bottom: 12px; }
  .map-title { font-family: 'Playfair Display', serif; font-size: 17px; color: #fff; margin-bottom: 10px; }
  .map-addr { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 16px; }
  .map-link { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,150,58,0.35); padding-bottom: 2px; }

  /* FOOTER */
  footer { background: #0a0205; padding: 36px 24px; border-top: 1px solid rgba(201,150,58,0.1); }
  .footer-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .footer-left { display: flex; align-items: center; gap: 12px; }
  .footer-logo-img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(201,150,58,0.3); }
  .footer-brand { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; color: rgba(255,255,255,0.65); }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.04em; }

  /* WA FLOAT */
  .wa-float { position: fixed; bottom: 26px; right: 26px; background: #25D366; color: #fff; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 18px rgba(37,211,102,0.4); text-decoration: none; z-index: 999; animation: waPulse 3s ease infinite; transition: transform 0.3s; }
  .wa-float:hover { transform: scale(1.1); }
  .wa-float1 { position: fixed; bottom: 100px; right: 26px; background: #25D366; color: #fff; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 18px rgba(37,211,102,0.4); text-decoration: none; z-index: 999; animation: waPulse 3s ease infinite; transition: transform 0.3s; }
  .wa-float1:hover { transform: scale(1.1); }
  @keyframes waPulse { 0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); } }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .d1 { transition-delay: 0.12s; } .d2 { transition-delay: 0.24s; } .d3 { transition-delay: 0.36s; } .d4 { transition-delay: 0.48s; }




  /* POPUP BACKGROUND */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* POPUP BOX */
.popup-content {
  background: #7b0f1b;
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  width: 320px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: popupFade 0.5s ease;
}

/* LOGO */
.popup-logo {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* TEXT */
.popup-content h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.location {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* BUTTON */
.call-btn {
  display: inline-block;
  background: gold;
  color: #7b0f1b;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.call-btn:hover {
  background: #fff;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes popupFade {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}








/* Modal Background Blur */
.modal {
  backdrop-filter: blur(6px);
}

/* Modal Box */
.modal-content {
  background: #5a0f1c; /* maroon */
  border-radius: 18px;
  border: 2px solid #d4af37; /* gold */
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  color: #fff;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

/* Header */
.modal-header {
  border-bottom: 1px solid rgba(212,175,55,0.4);
  text-align: center;
  justify-content: center;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #d4af37;
  letter-spacing: 1px;
}

/* Close Button */
.btn-close {
  filter: invert(1);
  position: absolute;
  right: 15px;
  top: 15px;
}

/* Inputs */
.form-control {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.5);
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  margin-bottom: 12px;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
  background: transparent;
  color: #fff;
}

/* Button */
.submit {
  background: linear-gradient(45deg, #d4af37, #f5d77a);
  color: #5a0f1c;
  font-weight: 600;
  padding: 12px;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}

.submit:hover {
  background: #fff;
  color: #5a0f1c;
  transform: scale(1.05);
}

/* Logo Styling */
.modal-logo {
  width: 90px;
  margin: 10px auto;
  display: block;
}

/* Animation */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: 0.4s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}