/* ==========================================================================
   DESIGN SYSTEM & STYLING FOR AKADEMIA PROACT (style.css)
   Aesthetics: Rich Midnight Dark-Mode, Warm Creams, Theatrical Coral Gradients
   Fonts: Playfair Display (Serif Headings) & Outfit (Sans-Serif Body)
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Define CSS Variables */
:root {
  /* Color Palette */
  --bg-dark: #12131C;
  --bg-dark-alt: #1A1C28;
  --bg-light: #F9F9FA;
  --bg-light-alt: #F1F0EC;
  
  --text-light: #E4E3EB;
  --text-light-muted: #A0A1B0;
  --text-dark: #1A1B24;
  --text-dark-muted: #575866;
  
  --primary: #FF4651;
  --secondary: #FF705A;
  --accent-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --accent-gradient-hover: linear-gradient(135deg, #FF705A, #FF4651);
  --accent-glow: 0 8px 30px rgba(255, 70, 81, 0.35);
  
  /* Glassmorphism */
  --glass-bg: rgba(26, 28, 40, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(16px);
  
  /* Fonts */
  --font-headings: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Structural variables */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ==========================================================================
   1. Reset & Global Base Settings
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1vw + 12px, 20px);
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-sm);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   2. Typography & Headers
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: #FFF;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

p {
  color: var(--text-light-muted);
  font-weight: 300;
}

strong {
  font-weight: 600;
  color: #FFF;
}

/* Gradient text */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   3. Floating Header & Nav System
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 70px;
}

.header-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform var(--transition-fast);
  filter: brightness(0) invert(1); /* Invert black logo to white for dark theme */
}

.logo-link:hover .logo-img {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.5px;
}

.logo-text span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  display: block;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 500;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: #FFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-fast);
}

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

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 4px;
  border-radius: 30px;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light-muted);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active, .lang-btn:hover {
  background: var(--accent-gradient);
  color: #FFF;
  box-shadow: var(--accent-glow);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #FFF;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Hamburger transition to 'X' */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   4. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 70, 81, 0.1) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(255, 112, 90, 0.08) 0%, transparent 45%);
}

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

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

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 40px;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFF;
  box-shadow: var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-gradient-hover);
  box-shadow: 0 12px 35px rgba(255, 70, 81, 0.5);
}

.btn-secondary {
  border: 1px solid var(--glass-border);
  color: #FFF;
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: #FFF;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Glassmorphic Hero Frame */
.hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-backdrop {
  position: absolute;
  width: 90%;
  height: 90%;
  background: var(--accent-gradient);
  border-radius: var(--border-radius-lg);
  transform: rotate(-3deg);
  opacity: 0.15;
  filter: blur(20px);
}

.visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

/* Beautiful Abstract Theater Graphic */
.theater-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.theater-art-curtains {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 200px;
  position: relative;
}

.curtain-left, .curtain-right {
  width: 45%;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 80px 80px 0 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  position: relative;
}

.curtain-left {
  transform: skewX(-5deg);
}

.curtain-right {
  transform: skewX(5deg);
}

.stage-light {
  position: absolute;
  top: -50px;
  left: 25%;
  width: 50%;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  z-index: 1;
}

.theater-mask {
  width: 80px;
  height: 80px;
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--accent-glow);
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.theater-mask svg {
  width: 45px;
  height: 45px;
  fill: var(--primary);
}

.stage-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: #FFF;
  text-align: center;
  margin-top: 10px;
}

/* ==========================================================================
   5. Sections Base
   ========================================================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.bg-light-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.bg-light-section h1, .bg-light-section h2, .bg-light-section h3 {
  color: var(--text-dark);
}

.bg-light-section p {
  color: var(--text-dark-muted);
}

.bg-light-section strong {
  color: var(--text-dark);
}

.section-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.section h2 {
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.1rem;
}

/* ==========================================================================
   6. Dzień Szkoły & Warsztaty Grid
   ========================================================================== */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.offer-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
  overflow: hidden;
}

/* In light section */
.bg-light-section .offer-card {
  background: #FFF;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 70, 81, 0.3);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.bg-light-section .offer-card:hover {
  border-color: rgba(255, 70, 81, 0.2);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-gradient);
  transition: height var(--transition-normal);
}

.offer-card:hover::before {
  height: 100%;
}

.offer-header-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.offer-icon-box {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 70, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.offer-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.offer-card h3 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
}

.offer-card p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.offer-graphic {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--bg-dark-alt);
  border: 1px solid var(--glass-border);
}

.bg-light-section .offer-graphic {
  background: var(--bg-light-alt);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Beautiful dynamic background pattern in cards */
.pattern-art {
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px), radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

.school-graphic-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card:hover .school-graphic-element {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
}

/* ==========================================================================
   7. About Us Section (Theatrical and Modern)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-feature-item h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
}

.about-feature-item p {
  font-size: 0.95rem;
}

.accent-border-box {
  width: 40px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 20px;
}

/* Image styling in About section */
.about-visual-group {
  position: relative;
}

.about-img-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  background: var(--bg-light-alt);
}

.about-img-backdrop {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  background: var(--accent-gradient);
  opacity: 0.1;
  border-radius: var(--border-radius-lg);
  z-index: 1;
}

/* ==========================================================================
   8. Contact & Inquiry Booking Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--glass-shadow);
  transition: border-color var(--transition-fast);
}

.info-card:hover {
  border-color: rgba(255, 70, 81, 0.3);
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 70, 81, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.info-details h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.info-details p {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Form Container */
.booking-form-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 14px 20px;
  border-radius: var(--border-radius-sm);
  color: #FFF;
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(255, 70, 81, 0.15);
}

select.form-control option {
  background: var(--bg-dark-alt);
  color: #FFF;
}

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

/* Form Alert/Toast feedback styling */
.form-toast {
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  margin-top: 20px;
  display: none;
  font-weight: 500;
}

.form-toast.success {
  background: rgba(46, 207, 132, 0.15);
  border: 1px solid rgba(46, 207, 132, 0.3);
  color: #2ECF84;
}

.form-toast.error {
  background: rgba(255, 70, 81, 0.15);
  border: 1px solid rgba(255, 70, 81, 0.3);
  color: var(--primary);
}

/* ==========================================================================
   9. Footer
   ========================================================================== */
.footer {
  background-color: #0A0B10;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-box h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

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

.footer-links-list a {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-links-list a:hover {
  color: #FFF;
  padding-left: 4px;
}

.footer-social-list {
  display: flex;
  gap: 16px;
}

.social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  transition: all var(--transition-fast);
}

.social-circle:hover {
  background: var(--accent-gradient);
  color: #FFF;
  border-color: transparent;
  box-shadow: var(--accent-glow);
  transform: translateY(-3px);
}

.social-circle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

.footer-copyright a:hover {
  color: #FFF;
}

/* ==========================================================================
   10. Micro-Animations & Scroll Reveal Utilities
   ========================================================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================================================
   11. Responsive Layout Adaptations (Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .hero-visual {
    height: 380px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  /* Mobile Navigation Drawer Overlay */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #0E0F16;
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1050;
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
