/* 
=========================================
BLOOMING FANTASY CORE — DESIGN SYSTEM
Brand: Currenthangoutplay.online
Year: 2026
=========================================
*/

:root {
  /* Color System */
  --bg-primary: #0f1720; /* Midnight Garden */
  --bg-secondary: #1b2330; /* Moonlit Forest */
  --surface-glass: rgba(255, 255, 255, 0.08);
  --surface-glass-heavy: rgba(15, 23, 32, 0.85);
  --surface-tertiary: #263244; /* Fantasy Glass */
  
  --border-bloom: 1px solid rgba(255, 192, 203, 0.16);
  --border-bloom-bright: 1px solid rgba(255, 192, 203, 0.35);
  
  /* Accents */
  --accent-pink-gradient: linear-gradient(135deg, #ec4899, #f472b6);
  --accent-pink-glow: rgba(236, 72, 153, 0.45);
  
  --accent-green-gradient: linear-gradient(135deg, #22c55e, #86efac);
  --accent-green-glow: rgba(34, 197, 94, 0.35);
  
  --accent-purple-gradient: linear-gradient(135deg, #8b5cf6, #c4b5fd);
  --accent-purple-glow: rgba(139, 92, 246, 0.35);
  
  --premium-blend: linear-gradient(135deg, #ec4899, #22c55e, #8b5cf6);
  
  /* Typography Colors */
  --text-primary: #fdfcff;
  --text-secondary: #d8e2f0;
  --text-muted: #94a3b8;
  
  /* Typography Styles */
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  
  /* Layout */
  --max-width: 1380px;
  --glass-blur: blur(28px);
  --shadow-bloom: 0 0 80px rgba(236, 72, 153, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Background Magical Atmosphere Components */
.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  background: radial-gradient(circle, rgba(255,192,203,0.6) 0%, rgba(236,72,153,0) 70%);
  border-radius: 50% 0 50% 50%;
  pointer-events: none;
  opacity: 0.7;
  animation: floatPetal 15s linear infinite;
}

@keyframes floatPetal {
  0% {
    transform: translateY(-10%) translateX(0) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(110%) translateX(100px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Slim and Fluid Header/Navigation Improvement */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: none;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 32, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--border-bloom);
  border-left: none;
  border-right: none;
  border-top: none;
  border-radius: 0;
  padding: 10px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.header-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 8s infinite linear;
}

@keyframes shimmer {
  0% { left: -150%; }
  100% { left: 150%; }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--accent-pink-glow));
  animation: pulseGlow 4s infinite ease-in-out;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--accent-pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(236,72,153,0.2);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 10px rgba(236, 72, 153, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #ec4899;
  opacity: 0;
  transform: scaleX(0.5);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-premium {
  background: var(--accent-pink-gradient);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--accent-pink-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
  filter: brightness(1.1);
}

.btn-premium:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 9px 19px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 192, 203, 0.4);
  transform: translateY(-2px);
}

/* Beautiful Botanical Images Integration styling */
.botanical-showcase-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: var(--border-bloom-bright);
  box-shadow: var(--shadow-bloom);
  object-fit: cover;
  transition: var(--transition-smooth);
}

.botanical-showcase-img:hover {
  transform: scale(1.02);
  border-color: rgba(255, 192, 203, 0.6);
}

.hero-botanical-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.hero-background-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.glowing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.orb-pink {
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: #ec4899;
  animation: pulseGlow 8s infinite alternate;
}

.orb-purple {
  bottom: 10%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: #8b5cf6;
  animation: pulseGlow 12s infinite alternate-reverse;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.15; }
  100% { transform: scale(1.2); opacity: 0.25; }
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f472b6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent-pink-gradient);
  border-radius: 50%;
  box-shadow: 0 0 8px #ec4899;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, #f472b6 70%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-left: 2px solid rgba(236, 72, 153, 0.3);
  padding-left: 15px;
  line-height: 1.5;
  margin-top: 15px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-bloom);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-backlight {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
  animation: pulseBacklight 5s infinite ease-in-out;
}

@keyframes pulseBacklight {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.visual-img-container {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  background: var(--surface-glass);
  border: var(--border-bloom-bright);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-bloom);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  backdrop-filter: var(--glass-blur);
}

.floating-flower-art {
  width: 80%;
  height: 80%;
  object-fit: contain;
  animation: floatArt 6s infinite ease-in-out;
}

@keyframes floatArt {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

/* Main Game Section */
.game-section {
  padding: 100px 0;
  position: relative;
  z-index: 20;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.section-subtitle {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34,197,94,0.3);
}

.section-title {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #fff 40%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 600px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.game-container-outer {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--surface-glass);
  border: var(--border-bloom-bright);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5), var(--shadow-bloom);
  backdrop-filter: var(--glass-blur);
}

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

.game-title-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.game-badge {
  background: var(--accent-pink-gradient);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-title-text h3 {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.game-title-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.game-controls-top {
  display: flex;
  gap: 12px;
}

.control-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.control-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-primary);
  border-color: rgba(255,192,203,0.3);
  transform: scale(1.05);
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050a10;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.9);
}

.game-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.game-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 192, 203, 0.1);
}

.game-disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 70%;
}

/* Feature Showcase / Grid */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--surface-glass);
  border: var(--border-bloom);
  border-radius: 24px;
  padding: 40px 30px;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: var(--shadow-bloom);
}

.feature-card:hover::before {
  background: var(--accent-pink-gradient);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-icon {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 1.4rem;
  color: #fff;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mini Showcase Gallery */
.gallery-section {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  border: var(--border-bloom);
  background: var(--bg-secondary);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 32, 0.9) 10%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

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

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}

.gallery-desc {
  font-size: 0.75rem;
  color: #f472b6;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Call To Action Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(27, 35, 48, 0.95), rgba(38, 50, 68, 0.95)), 
              url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23ec4899" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
  border: var(--border-bloom-bright);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-bloom);
  margin: 60px 0;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cta-banner-content h2 {
  font-size: 2.5rem;
  background: var(--accent-pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer Section */
.footer-wrapper {
  background: var(--surface-glass-heavy);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: var(--border-bloom);
  padding: 80px 0 40px;
  position: relative;
  z-index: 100;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-pink-gradient);
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: #f472b6;
  padding-left: 5px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 192, 203, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-disclaimer-box {
  background: rgba(15, 23, 32, 0.5);
  border: var(--border-bloom);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.footer-disclaimer-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Legal Pages Styling */
.legal-container {
  padding: 140px 0 100px;
  max-width: 950px;
  margin: 0 auto;
}

.legal-card {
  background: var(--surface-glass);
  border: var(--border-bloom);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-bloom);
}

.legal-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 192, 203, 0.1);
  padding-bottom: 25px;
}

.legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--accent-pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.legal-body h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 15px;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.legal-body ul, .legal-body ol {
  padding-left: 20px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 32, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--bg-secondary);
  border: var(--border-bloom-bright);
  border-radius: 28px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-bloom);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Page Form styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  margin-top: 40px;
}

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

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: #ec4899;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-container {
    padding: 10px 20px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .legal-card {
    padding: 30px 20px;
  }
}