*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  background-color: #1b0033;
  /* fallback */
}

@media (min-width: 769px) {
  body {
    background-image: url('images/LottoBackground.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(22, 0, 46, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  /* max-width: 1400px; */
  margin: 0 auto;
}

.logo {
  height: 60px;
  width: 270px;
  object-fit: contain;
}

.nav-header {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.nav-btn:hover,
.nav-btn.active {
  background: rgba(255, 104, 201, 0.22);
  border-color: #FF68C9;
  color: #FF68C9;
}

.nav-btn i {
  margin-right: 6px;
  font-size: 11px;
}

.hamburger {
  display: none;
  background: linear-gradient(135deg, #FF68C9 0%, #2121ff 100%);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 104, 201, 0.4);
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 104, 201, 0.6);
}

.hamburger.active {
  background: linear-gradient(135deg, #f4a940 0%, #ff6b6b 100%);
  box-shadow: 0 4px 15px rgba(244, 169, 64, 0.5);
}

.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 170px 40px 90px;
  background: linear-gradient(to bottom,
      rgba(22, 0, 46, 0.60) 0%,
      rgba(20, 0, 42, 0.38) 100%);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(15, 0, 34, 0.55));
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Paytone One', Arial, sans-serif;
  font-size: clamp(52px, 9vw, 88px);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.05;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.hero-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, #FF68C9, #f4a940);
  border-radius: 2px;
}

.details-section {
  padding: 70px 0;
  background: rgba(12, 0, 28, 0.60);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 104, 201, 0.2);
}

.contact-info h2 {
  font-family: 'Paytone One', Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  color: #f4a940;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info h2::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 5px;
  height: 1.1em;
  background: linear-gradient(180deg, #FF68C9, #f4a940);
  border-radius: 3px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF68C9 0%, #f4a940 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 104, 201, 0.4);
}

.info-icon i {
  font-size: 24px;
  color: white;
}

.info-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(244, 169, 64, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333333;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF68C9;
  box-shadow: 0 0 0 3px rgba(255, 104, 201, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999999;
}

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

.send-btn {
  background: linear-gradient(135deg, #FF68C9 0%, #f4a940 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  align-self: flex-start;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 104, 201, 0.4);
}

.map-section {
  padding: 70px 0;
  background: rgba(8, 0, 22, 0.70);
  position: relative;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FF68C9, #f4a940, transparent);
}

.map-frame {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: white;
  position: relative;
  border: 1px solid rgba(244, 169, 64, 0.3);
}

.map-frame iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.footer {
  background: rgba(6, 0, 16, 0.90);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  align-items: start;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-heading {
  font-family: 'Paytone One', Arial, sans-serif;
  font-size: 13px;
  color: #f4a940;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #f4a940;
  padding-left: 5px;
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 12px;
  line-height: 1.65;
}

.footer-contact a {
  color: #FF68C9;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #f4a940;
}

.footer-bottom {
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-legal span {
  color: rgba(255, 255, 255, 0.20);
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF68C9, #2121ff);
  border: none;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255, 104, 201, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 99;
}

.back-to-top:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 26px rgba(255, 104, 201, 0.7);
}

@media (max-width: 1100px) {
  .header-inner {
    padding: 13px 24px;
  }

  .nav-btn {
    font-size: 12px;
    padding: 8px 13px;
  }

  .contact-grid {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 160px 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  html {
    background-image: url('images/LottoMobile.png') !important;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
  }

  body {
    background-image: url('images/LottoMobile.png') !important;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: -100%;
    width: 275px;
    height: 100dvh;
    background: rgba(20, 0, 44, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    gap: 8px;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    box-shadow: -6px 0 36px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
    border-left: 1px solid rgba(255, 104, 201, 0.15);
  }

  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
  }

  .nav-close:hover {
    background: rgba(255, 104, 201, 0.2);
    color: #FF68C9;
  }

  .nav.open {
    right: 0;
  }

  .nav-btn {
    text-align: left;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    width: 100%;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .nav-btn:hover,
  .nav-btn.active {
    background: rgba(255, 104, 201, 0.18);
    border-color: #FF68C9;
    color: #FF68C9;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 140px 24px 72px;
    min-height: 46vh;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .details-section {
    padding: 50px 0;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-info {
    padding: 30px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .info-item {
    flex-direction: row;
    /* text-align: center; */
    gap: 15px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 20px;
  }

  .send-btn {
    width: 100%;
    padding: 15px 30px;
  }

  /* Map */
  .map-section {
    padding: 50px 0;
  }

  .map-frame iframe {
    height: 350px;
  }

  /* Footer */
  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 12px 16px;
  }

  .logo {
    height: 40px;
  }

  .hero {
    padding: 120px 16px 60px;
    min-height: 42vh;
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .hero-title::after {
    width: 56px;
    height: 3px;
    margin-top: 14px;
  }

  .details-section {
    padding: 40px 0;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
  }

  .info-icon i {
    font-size: 18px;
  }

  .info-text h3 {
    font-size: 16px;
  }

  .info-text p {
    font-size: 14px;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-frame iframe {
    height: 300px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-logo {
    height: 40px;
  }

  .footer-grid {
    gap: 26px;
  }

  .back-to-top {
    bottom: 18px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 40px;
    letter-spacing: 1px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .map-frame iframe {
    height: 250px;
  }

  .container {
    padding: 0 12px;
  }
}