/* ==========================================================================
   Sahityakaar Components CSS - Modern Sleek & Spacious UI Components
   ========================================================================== */

/* Modern Floating Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 249, 244, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 40px rgba(11, 16, 23, 0.05);
  background-color: rgba(252, 249, 244, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand-logo img {
  height: 54px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-title .main-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--primary-red);
  font-weight: 700;
}

.brand-title .sub-title {
  font-family: var(--font-body);
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--secondary-navy);
  margin-top: 3px;
}

/* Nav Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-item {
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--primary-red);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* Language Toggle Switcher */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(11, 16, 23, 0.04);
  color: var(--secondary-navy);
  border: 1px solid var(--border-color-strong);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle-btn:hover {
  background: var(--secondary-navy);
  color: var(--accent-gold);
  border-color: var(--secondary-navy);
}

/* Mobile Nav Toggle */
.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--secondary-navy);
}

.nav-toggle-btn svg {
  width: 32px;
  height: 32px;
}

/* Mobile Navigation Backdrop Overlay */
.nav-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 23, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-overlay-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 992px) {
  .header-container { height: 76px; }
  .nav-toggle-btn { display: block; z-index: 1003; }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 82vw;
    max-width: 320px;
    height: calc(100vh - 76px);
    background: rgba(252, 249, 244, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.75rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-left: 1px solid var(--border-color);
    z-index: 1002;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }
}

@media (max-width: 576px) {
  .brand-logo img { height: 42px; }
  .brand-title .main-title { font-size: 1.35rem; }
  .brand-title .sub-title { font-size: 0.6rem; letter-spacing: 1.2px; }
  .nav-actions { gap: 0.5rem; }
  .nav-actions .btn-sm { display: none; }
  .lang-toggle-btn { padding: 0.45rem 0.85rem; font-size: 0.8rem; }
}

/* Hero Section - Sleek Atmosphere & Ambient Lighting */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 16, 23, 0.96) 0%, rgba(22, 32, 45, 0.94) 100%), url('../assets/image1.jpeg');
  background-size: cover;
  background-position: center;
  color: #FFF;
  padding: 9rem 0 10rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -25%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: #FFF;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 6.2vw, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #F9F2DB 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stat-strip {
  display: flex;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.5rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .hero-section { padding: 4.5rem 0 5.5rem 0; }
  .hero-subtitle { font-size: 1.05rem; margin-bottom: 2rem; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .hero-ctas .btn-outline,
  .hero-ctas .btn-whatsapp {
    width: 100%;
    text-align: center;
  }
  .hero-stat-strip {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2.25rem;
    text-align: center;
  }
}

/* Philosophy Cards (Perform, Learn, Earn) - Ultra Spacious */
.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background: var(--primary-red);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(158, 42, 43, 0.2);
}

.philosophy-card:hover::before {
  background: var(--accent-gold);
}

.philosophy-icon {
  width: 72px;
  height: 72px;
  background: rgba(158, 42, 43, 0.05);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  border: 1px solid rgba(158, 42, 43, 0.1);
}

.philosophy-card h3 {
  margin-bottom: 1.25rem;
  color: var(--secondary-navy);
}

.philosophy-card p {
  line-height: 1.75;
  flex-grow: 1;
}

.philosophy-highlight {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-red);
  background: var(--bg-parchment);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(158, 42, 43, 0.12);
  align-self: flex-start;
}

/* Flagship Initiative AAGAZ Banner */
.aagaz-section {
  background: var(--secondary-navy);
  color: #FFF;
  border-radius: var(--radius-xl);
  padding: 5.5rem 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.aagaz-section h2 { color: var(--accent-gold); }

.aagaz-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .aagaz-grid { grid-template-columns: 1fr; gap: 3rem; }
  .aagaz-section { padding: 3.5rem 2.25rem; }
}

.aagaz-img-wrap img {
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.aagaz-list {
  list-style: none;
  margin: 2.25rem 0;
}

.aagaz-list li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.aagaz-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 1.25rem;
}

/* Join Benefits Card & List Styling */
.join-benefits-box {
  background: var(--bg-parchment);
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.join-benefits-title {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(158, 42, 43, 0.15);
  padding-bottom: 0.75rem;
}

.join-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.join-benefits-list li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--secondary-navy);
}

.join-benefits-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-red);
  font-size: 1.15rem;
}

.join-benefits-list li strong {
  color: var(--primary-red-dark);
  font-weight: 700;
}

/* Category Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color-strong);
  color: var(--text-main);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-red);
  color: #FFF;
  border-color: var(--primary-red);
  box-shadow: 0 8px 24px rgba(158, 42, 43, 0.28);
}

/* Artist Cards - Modern Sleek & Spacious */
.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.12);
}

.artist-image-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.artist-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-image-wrap img {
  transform: scale(1.07);
}

.artist-badge {
  position: absolute;
  top: 1.35rem; right: 1.35rem;
  background: rgba(11, 16, 23, 0.88);
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
  font-size: 0.785rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.artist-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.artist-name {
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
}

.artist-city {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.artist-bio {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
}

.artist-work {
  background: var(--bg-parchment);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-red);
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  font-style: italic;
}

/* Gallery Cards */
.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-subtle);
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 23, 0.88);
  backdrop-filter: blur(6px);
  color: #FFF;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-tag {
  color: var(--accent-gold);
  font-size: 0.785rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.gallery-caption {
  padding: 1.75rem;
}

.gallery-caption h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-caption p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Team & Founder Spotlight Card */
.team-founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin-bottom: 4.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

@media (max-width: 880px) {
  .team-founder-card {
    grid-template-columns: 1fr;
    padding: 2.75rem;
    gap: 2.25rem;
  }
}

.team-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.team-role-tag {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 0.85rem;
}

.team-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  font-style: italic;
  color: var(--secondary-navy);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.avatar-wrap img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem auto;
  border: 4px solid var(--bg-parchment);
  box-shadow: var(--shadow-sm);
}

/* Publishing Vision Section Box */
.publishing-box {
  background: linear-gradient(135deg, #FCF9F4 0%, #F5ECDF 100%);
  border: 2px dashed rgba(212, 175, 55, 0.65);
  border-radius: var(--radius-xl);
  padding: 5rem 3.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .publishing-box { padding: 3.5rem 1.75rem; }
}

/* Contact Info & Map Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}

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

.contact-info-card {
  background: var(--secondary-navy);
  color: #FFF;
  padding: 4rem 3.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 { color: var(--accent-gold); }

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.info-icon {
  font-size: 1.75rem;
  color: var(--accent-gold);
}

/* Form Controls - Modern Sleek Inputs */
.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.975rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border-color-strong);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1.025rem;
  background: #FFF;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(158, 42, 43, 0.12);
}

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

.form-feedback.success-message {
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: #E6F4EA;
  color: #137333;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
}

/* Floating WhatsApp Button Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 2.75rem;
  right: 2.75rem;
  z-index: 999;
}

.whatsapp-btn-float {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #25D366;
  color: #FFF;
  padding: 0.95rem 1.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.whatsapp-btn-float:hover {
  transform: scale(1.06);
  color: #FFF;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

@media (max-width: 640px) {
  .whatsapp-floating-widget { bottom: 1.75rem; right: 1.75rem; }
  .whatsapp-btn-text { display: none; }
  .whatsapp-btn-float { padding: 1rem; }
}

/* Modals & Lightbox */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 23, 0.9);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 760px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.lightbox-dialog {
  max-width: 1000px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.lightbox-content img {
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: contain;
}

.lightbox-caption {
  color: #FFF;
  text-align: center;
  margin-top: 1.25rem;
}

.lightbox-counter {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-gold);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
}

.lightbox-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--accent-gold);
  color: var(--secondary-navy);
  border-color: var(--accent-gold);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

@media (max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* Footer - Clean, Structured & Spacious */
.site-footer {
  background: var(--secondary-navy);
  color: #FFF;
  padding-top: 6rem;
  margin-top: auto;
}

.footer-top {
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--accent-gold);
  margin-bottom: 1.75rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.975rem;
}

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

.footer-bottom {
  padding: 2.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
