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

:root {
  --primary: #7b2fff;
  --accent: #ff5733;
  --highlight: #ffd600;
  --dark: #1a1a2e;
  --light: #f9f9ff;
  --white: #ffffff;
  --font-display: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--dark);
}

.section-title--light {
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 47, 255, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 2.25rem;
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.15em;
}

.logo-quicks {
  color: var(--white);
}

.logo-360 {
  color: var(--highlight);
  position: relative;
}

.logo-360::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px dashed var(--highlight);
  border-radius: 50%;
  opacity: 0.4;
  animation: orbit 8s linear infinite;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark) center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 47, 255, 0.85) 0%,
    rgba(26, 26, 46, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 2rem 1.5rem;
}

.hero-headline {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--highlight);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 214, 0, 0);
  }
}

/* ===== WHY US ===== */
.why-us {
  padding: 5rem 0;
  background: var(--light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(123, 47, 255, 0.08);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 5rem 0;
  background: var(--dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== EVENT TYPES ===== */
.event-types {
  padding: 5rem 0;
  background: var(--light);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.event-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.event-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 47, 255, 0.6),
    rgba(255, 87, 51, 0.4)
  );
}

.event-tile-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===== PRICING ===== */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a1a4e 100%);
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--highlight);
  margin-bottom: 1.5rem;
}

.pricing-amount span {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: 700;
}

.pricing-note {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ===== SERVICE AREA ===== */
.service-area {
  padding: 4rem 0;
  background: var(--light);
  text-align: center;
}

.area-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.area-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.area-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.area-tagline {
  color: #666;
  font-style: italic;
  font-size: 1rem;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 5rem 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.gallery-note a {
  color: var(--highlight);
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.contact {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, #12121f 100%);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.25);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group--full {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.form-status--success {
  color: #4caf50;
}

.form-status--error {
  color: var(--accent);
}

.contact-alt {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact-alt p {
  margin-bottom: 0.35rem;
}

.contact-alt a {
  color: var(--highlight);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0d0d1a;
  padding: 3rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--highlight);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
}

.footer-tagline {
  margin-top: 0.25rem;
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-phone {
    display: none;
  }

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

  .footer-links {
    justify-content: center;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
