/* ============================================
   Sweet Shenanigans — Custom Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Geometric Background */
.geometric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: #22c55e;
  top: -200px;
  right: -150px;
}

.geo-circle--2 {
  width: 400px;
  height: 400px;
  background: #1e2d5a;
  bottom: 10%;
  left: -100px;
}

.geo-rect {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #22c55e;
  opacity: 0.04;
  top: 50%;
  right: 5%;
  transform: rotate(45deg);
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 173px solid #1e2d5a;
  opacity: 0.04;
  bottom: 20%;
  right: 15%;
}

/* Section base */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-inner {
  position: relative;
  z-index: 1;
}

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

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f1a3a;
}

.section-desc {
  font-size: 1.1rem;
  color: #1e2d5a;
  line-height: 1.7;
  max-width: 520px;
  margin: 1rem auto 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e2d5a;
  color: #fefdf8;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(134, 239, 172, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #0f1a3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 26, 58, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #1e2d5a;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  border: 2px solid #1e2d5a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #1e2d5a;
  color: #fefdf8;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translate(4px, -4px);
}

/* Navigation */
.nav {
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 26, 58, 0.06);
}

.nav.scrolled {
  box-shadow: 0 4px 30px rgba(15, 26, 58, 0.08);
}

.nav-inner {
  background: transparent;
}

.nav-logo {
  text-decoration: none;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
}

.nav-logo-text {
  transition: color 0.3s ease;
}

.nav-link {
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #22c55e;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e2d5a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  background: rgba(254, 253, 248, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 26, 58, 0.06);
}

.mobile-menu-link {
  text-decoration: none;
  color: #1e2d5a;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 26, 58, 0.06);
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: #22c55e;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #fefdf8 0%, #f0fdf4 50%, #e0e7ff 100%);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
}

.hero-stats {
  position: relative;
}

.hero-stat {
  position: relative;
}

.hero-stat::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(15, 26, 58, 0.15);
}

.hero-stat:first-child::before {
  display: none;
}

.hero-stat-number {
  font-family: 'Space Grotesk', sans-serif;
}

.hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Image */
.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.hero-img-accent {
  position: absolute;
  border-radius: 16px;
}

.hero-img-accent--top {
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: #22c55e;
  opacity: 0.2;
  z-index: -1;
}

.hero-img-accent--bottom {
  bottom: -16px;
  left: -16px;
  width: 160px;
  height: 160px;
  background: #1e2d5a;
  opacity: 0.08;
  z-index: -1;
}

.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  z-index: 2;
}

.hero-float-card-inner {
  background: white;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 20px 60px rgba(15, 26, 58, 0.12);
  animation: float-card 3s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card-emoji {
  font-size: 2rem;
}

.hero-float-card-text {
  line-height: 1.3;
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #1e2d5a, transparent);
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1e2d5a;
  font-family: 'Space Grotesk', sans-serif;
}

/* Divider */
.divider {
  position: relative;
  z-index: 1;
  height: 80px;
  background: #fefdf8;
  overflow: hidden;
}

.divider-shape {
  position: absolute;
}

.divider-shape--circle {
  width: 60px;
  height: 60px;
  background: #22c55e;
  border-radius: 50%;
  top: 10px;
  left: 10%;
  opacity: 0.15;
}

.divider-shape--rect {
  width: 80px;
  height: 40px;
  background: #1e2d5a;
  top: 20px;
  right: 15%;
  opacity: 0.08;
  transform: rotate(30deg);
}

.divider-shape--triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid #22c55e;
  opacity: 0.12;
  bottom: 5px;
  left: 50%;
}

/* Menu Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 26, 58, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 26, 58, 0.04);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(15, 26, 58, 0.12);
}

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}

.menu-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #1e2d5a;
  color: #86efac;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1a3a;
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.95rem;
  color: #1e2d5a;
  line-height: 1.6;
  opacity: 0.8;
}

/* About Section */
.section-about {
  background: linear-gradient(135deg, #f0fdf4 0%, #fefdf8 100%);
}

.about-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #22c55e;
  opacity: 0.04;
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.about-grid {
  position: relative;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 26, 58, 0.1);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 26, 58, 0.15);
  border: 4px solid white;
}

.about-img-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  top: -1rem;
  left: -1rem;
  z-index: 2;
}

.about-badge-float-inner {
  background: #22c55e;
  color: #0f1a3a;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.about-badge-emoji {
  font-size: 1.5rem;
}

.about-badge-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
}

.about-deco-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  top: -3rem;
  right: 2rem;
}

.about-desc {
  font-size: 1.05rem;
  color: #1e2d5a;
  line-height: 1.8;
}

.about-features {
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e2d5a;
}

/* Gallery */
.section-gallery {
  background: #fefdf8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 58, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

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

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

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

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

.gallery-item--5 {
  grid-column: 4 / 9;
  grid-row: 2 / 3;
}

/* Visit Section */
.section-visit {
  background: #0f1a3a;
  padding: 100px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.visit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.visit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.visit-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fefdf8;
  margin-bottom: 0.25rem;
}

.visit-card-text {
  font-size: 0.95rem;
  color: #a5b4fc;
  line-height: 1.6;
}

.visit-link {
  color: #86efac;
  text-decoration: none;
  transition: color 0.3s ease;
}

.visit-link:hover {
  color: #4ade80;
}

.visit-hours-card {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.visit-hours-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #86efac;
  margin-bottom: 1rem;
}

.visit-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.visit-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(134, 239, 172, 0.1);
}

.visit-hour-row:last-child {
  border-bottom: none;
}

.visit-hour-day {
  font-size: 0.9rem;
  color: #a5b4fc;
}

.visit-hour-time {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fefdf8;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
  min-height: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visit-map-inner {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border-radius: 20px;
  overflow: hidden;
}

/* Contact Section */
.section-contact {
  background: linear-gradient(135deg, #fefdf8 0%, #f0fdf4 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-desc {
  font-size: 1.05rem;
  color: #1e2d5a;
  line-height: 1.8;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1e2d5a;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 26, 58, 0.06);
}

.contact-channel:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(15, 26, 58, 0.08);
  color: #22c55e;
}

.contact-channel-icon {
  color: #22c55e;
}

/* Form */
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(15, 26, 58, 0.08);
  border: 1px solid rgba(15, 26, 58, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e2d5a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(15, 26, 58, 0.1);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #0f1a3a;
  background: #fefdf8;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: #22c55e;
  background: white;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-input::placeholder {
  color: #a5b4fc;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231e2d5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-success {
  margin-top: 1rem;
}

.form-success.hidden {
  display: none;
}

.form-success-inner {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.form-success-icon {
  display: block;
  width: 48px;
  height: 48px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 48px;
  margin: 0 auto 0.75rem;
}

.form-success p {
  color: #1e2d5a;
  font-size: 0.95rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1e2d5a 0%, #0f1a3a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape--1 {
  width: 300px;
  height: 300px;
  background: #22c55e;
  opacity: 0.08;
  top: -100px;
  left: -50px;
}

.cta-shape--2 {
  width: 200px;
  height: 200px;
  background: #86efac;
  opacity: 0.06;
  bottom: -80px;
  right: 10%;
}

.cta-shape--3 {
  width: 100px;
  height: 100px;
  background: #4ade80;
  opacity: 0.1;
  top: 20%;
  right: 5%;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
}

.cta-desc {
  color: #a5b4fc;
}

/* Footer */
.footer {
  background: #080f21;
  padding: 60px 0 30px;
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  text-decoration: none;
}

.footer-desc {
  line-height: 1.7;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: 'Space Grotesk', sans-serif;
}

.footer-link {
  display: block;
  color: #a5b4fc;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #86efac;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #a5b4fc;
  font-size: 0.9rem;
}

.footer-contact-icon {
  flex-shrink: 0;
}

.footer-bottom {
  position: relative;
  z-index: 1;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #1e2d5a;
  color: #86efac;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 50;
  box-shadow: 0 8px 25px rgba(15, 26, 58, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #22c55e;
  color: #0f1a3a;
  transform: translateY(-4px);
}

/* Reveal animations (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal[data-delay="100"] {
    transition-delay: 0.1s;
  }

  .reveal[data-delay="200"] {
    transition-delay: 0.2s;
  }
}

/* Mobile responsive */
@media (max-width: 1023px) {
  .hero-grid {
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 0;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-stat::before {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--1,
  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5 {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    min-height: 200px;
  }

  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-img-secondary {
    right: 0;
  }

  .about-badge-float {
    left: 0;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-float-card {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }
}
