@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1e3a8a;
  --primary-light: #2563eb;
  --accent: #d97706;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --bg-main: #ffffff;
  --bg-card: #f9fafb;
  --bg-alt: #f3f4f6;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol, li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Floating Christian Symbols Container */
.floating-symbols-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-cross {
  position: absolute;
  color: rgba(217, 119, 6, 0.08);
  animation: floatUp 18s infinite linear;
}

.floating-cross:nth-child(1) { left: 8%; animation-duration: 22s; animation-delay: 0s; }
.floating-cross:nth-child(2) { left: 25%; animation-duration: 16s; animation-delay: 4s; }
.floating-cross:nth-child(3) { left: 45%; animation-duration: 24s; animation-delay: 2s; }
.floating-cross:nth-child(4) { left: 72%; animation-duration: 19s; animation-delay: 7s; }
.floating-cross:nth-child(5) { left: 88%; animation-duration: 21s; animation-delay: 1s; }

@keyframes floatUp {
  0% {
    transform: translateY(105vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) rotate(45deg) scale(1.1);
    opacity: 0;
  }
}

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

a:hover {
  color: var(--primary);
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

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

.logo {
  font-weight: 800;
  font-size: 1.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.logo span {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-icon {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-item a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

.nav-item a:hover,
.nav-item.active a {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.submenu li a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.submenu li a:hover {
  background-color: var(--bg-alt);
  color: var(--primary);
}

.nav-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition);
}

/* Main Container */
main {
  max-width: 1600px;
  margin: 2rem auto;
  padding: 0 3rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 7rem 2rem;
  background: radial-gradient(circle at 50% 20%, rgba(217, 119, 6, 0.25), transparent 70%), linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #09101d 100%);
  border-radius: var(--radius);
  margin-bottom: 4rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Card & Grid Styles (COMPASSION IN ACTION Premium Style) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 0 15px rgba(217, 119, 6, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card:nth-child(even) {
  border-top-color: var(--primary-light);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 0 25px rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.4);
}

/* E-Commerce Book Showcase (COMPASSION IN ACTION Premium Style) */
.book-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 3.5rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08), 0 0 20px rgba(217, 119, 6, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-showcase:hover {
  box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.12), 0 0 30px rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.5);
}

.book-image-container {
  display: flex;
  justify-content: center;
  background: var(--bg-main);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.book-image {
  max-width: 100%;
  height: auto;
  object-fit: contain; /* Full size without cropping */
  border-radius: 8px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 15px rgba(245, 158, 11, 0.2);
  transition: var(--transition);
}

.book-image:hover {
  transform: scale(1.03);
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 25px rgba(245, 158, 11, 0.4);
}

/* Feature/Prayer Grid (COMPASSION IN ACTION Premium Style) */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  padding: 1.15rem 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-item:nth-child(even) {
  border-left-color: var(--primary-light);
}

.checklist-item:hover {
  background: var(--bg-main);
  border-color: rgba(245, 158, 11, 0.5);
  border-left-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 0 15px rgba(245, 158, 11, 0.15);
}

.purchase-box {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.custom-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: var(--bg-card);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.custom-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 2.25rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-buy:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.45);
}

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

.btn-buy:hover svg {
  transform: scale(1.15);
}

/* Feature/Prayer Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.checklist-item:hover {
  background: var(--bg-main);
  border-color: var(--primary-light);
  transform: translateX(4px);
}

.checklist-icon {
  color: var(--accent);
  flex-shrink: 0;
}

/* Form Styles (COMPASSION IN ACTION Premium Style) */
.form-card {
  max-width: 650px;
  margin: 3rem auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 3.5rem;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08), 0 0 20px rgba(217, 119, 6, 0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-card:hover {
  box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.12), 0 0 30px rgba(245, 158, 11, 0.25);
  border-color: rgba(245, 158, 11, 0.4);
}

.form-card h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

.text-input, .textarea-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
  background-color: var(--bg-main);
}

.text-input:focus, .textarea-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Homepage Carousel */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 2rem 0;
  height: 450px;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.slide-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  pointer-events: auto;
}

.slider-btn:hover {
  background: white;
  transform: scale(1.1);
}

/* Glossy Blue Footer with Pure White Menu Text */
footer.site-footer {
  background: radial-gradient(circle at 75% 20%, rgba(59, 130, 246, 0.25), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.15), transparent 45%),
              linear-gradient(135deg, #0b1736 0%, #0f2b5c 50%, #081126 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 -10px 40px rgba(11, 23, 54, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 4.5rem 3rem 2.5rem 3rem;
  margin-top: 5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-brand-section {
  margin-bottom: 3.5rem;
  text-align: left;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.footer-brand-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-brand-title span {
  color: #fbbf24;
  background: linear-gradient(135deg, #ffe066, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-desc {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 850px;
  opacity: 0.95;
}

.footer-brand-desc strong {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  text-align: left;
}

.footer-column-title {
  color: #fbbf24;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.footer-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.footer-list li span, 
.footer-list li strong {
  color: #ffffff !important;
}

.footer-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s ease;
  opacity: 0.92;
}

.footer-list li a:hover {
  color: #fbbf24;
  opacity: 1;
  transform: translateX(4px);
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.footer-icon-svg {
  color: #60a5fa;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social-pill:hover {
  background: #fbbf24;
  color: #0b1736;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
  border-color: #fbbf24;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  position: relative;
}

.footer-star-flare {
  position: absolute;
  right: -10px;
  top: -15px;
  color: #fbbf24;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
  pointer-events: none;
}

.footer-bottom-bar a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

@media (max-width: 640px) {
  footer.site-footer {
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  .footer-grid-4 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}/* Feature Row Sections (Alternating UI UX Pro Max) */
.feature-row {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin: 4rem 0;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-row:hover {
  box-shadow: 0 20px 40px -15px rgba(217, 119, 6, 0.15);
  border-color: rgba(217, 119, 6, 0.4);
}

.feature-content {
  flex: 1;
}

.feature-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.feature-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-img-glow {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain; /* Full size without cropping */
  border-radius: 14px;
  border: 2px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(245, 158, 11, 0.25);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-img-glow:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(245, 158, 11, 0.5);
  border-color: rgba(245, 158, 11, 0.8);
}
@media (max-width: 1024px) {
  .nav-container {
    padding: 0.85rem 1rem;
  }
  .logo {
    font-size: 1.2rem;
    white-space: nowrap;
  }
  .logo svg {
    width: 22px;
    height: 22px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: #0f172a;
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 0.75rem;
    z-index: 9999;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    box-sizing: border-box;
  }
  .nav-menu.open {
    display: flex !important;
  }
  .nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .nav-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-item.active a, .nav-item a:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), rgba(217, 119, 6, 0.3));
    border-color: var(--accent);
    color: #ffffff;
  }
  .nav-item a svg.nav-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #f59e0b;
    flex-shrink: 0;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 2.5rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .submenu li a {
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    background: transparent;
    border: none;
  }
  .nav-socials {
    display: none;
  }
  .book-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .slider-wrapper {
    height: 280px;
  }
  .form-card {
    padding: 1.5rem;
  }
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
  }
}
