/* Global settings */
:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #e2e8f0;
  --text-muted: #475569;
  --primary: #2563eb;
  --primary-soft: #eff6ff;
  --border: #cbd5e1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(37, 99, 235, 0.14), transparent 34%), linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1e40af;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fbbf24;
  outline-offset: 2px;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
}

/* Enhance existing focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Header and top bar */
.top-bar {
  background: #1e40af;
  color: #ffffff;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
}

.top-bar-text {
  font-size: 0.95rem;
}

.top-bar-social a {
  color: #ffffff;
  margin-left: 1rem;
  font-size: 1rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand img {
  height: 56px;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav ul {
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #102a43;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: #1d4ed8;
}

.menu-toggle {
  display: none;
  width: 2.4rem;
  height: 2rem;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #102a43;
  border-radius: 999px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/lea.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(37, 99, 235, 0.38));
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(37, 99, 235, 0.38));
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
  padding: 5rem 0;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #93c5fd;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.03;
}

.hero-copy p {
  margin: 1.2rem 0 1.8rem;
  max-width: 46rem;
  color: #dbeafe;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.85rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: #102a43;
}

.section-heading p {
  margin-top: 1rem;
  color: #475569;
  max-width: 68ch;
}

.card-grid,
.content-grid,
.event-grid,
.client-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-strong);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1rem;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #102a43;
}

.card p {
  margin: 0 0 1.25rem;
  color: #475569;
  line-height: 1.75;
}

.card-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-copy p,
.news-list ul,
.event-grid ul {
  color: #475569;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
  color: #102a43;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-secondary {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #c7d2fe;
}

.section-action {
  margin-top: 1.5rem;
}

.content-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
}

.text-block p {
  margin-bottom: 1.5rem;
}

.detail-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  background: var(--surface);
  border: 1px solid var(--surface-strong);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.detail-card h3 {
  margin-top: 0;
  color: #102a43;
}

.detail-card p {
  margin: 0.85rem 0 0;
  color: #475569;
  line-height: 1.75;
}

.download-list {
  display: grid;
  gap: 0.9rem;
}

.download-list a {
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.download-list a:hover {
  border-color: #2563eb;
}

.video-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--surface-strong);
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.video-card h3 {
  margin-top: 0;
}

.video-card p {
  margin: 0.85rem 0 1rem;
  color: #475569;
}

.page-hero {
  padding: 5rem 0;
}

.page-hero .hero-copy {
  padding: 0;
}

.page-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.9));
  color: white;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.page-banner p {
  max-width: 60ch;
}

.news-list ul,
.event-grid ul {
  list-style: inside disc;
  margin: 0;
  padding: 0;
}

.client-grid {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
}


.client-tile {
  margin: 0;
  padding: 0.75rem 0.5rem;
  border-radius: 1rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.client-grid img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  border-radius: 1rem;
}

.client-tile figcaption {
  font-size: 0.78rem;
  color: #475569;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 28px;
  right: 28px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  z-index: 30;
}

.float i {
  font-size: 1.3rem;
}

@media (max-width: 1024px) {
  .card-grid,
  .product-grid,
  .content-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-grid img {
    height: 80px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner,
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav {
    position: absolute;
    inset: 80px 1rem auto auto;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
    display: none;
    width: calc(100% - 2rem);
    max-height: 70vh;
    overflow-y: auto;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    display: grid;
    gap: 1rem;
  }
  .site-nav a {
    padding: 0.5rem 0;
    display: block;
  }
  .menu-toggle {
    display: flex;
    min-height: 44px;
    min-width: 44px;
  }
  .hero {
    min-height: 60vh;
  }
  .hero-copy {
    padding: 2rem 0;
  }
  .hero-copy h1 {
    font-size: 1.75rem;
  }
  .card-grid,
  .product-grid,
  .client-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 2rem 0;
  }
  .btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1.5rem;
  }
  .float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  input,
  textarea,
  select {
    font-size: 16px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.5rem;
  }
  .hero-copy p {
    font-size: 0.95rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section {
    padding: 1.5rem 0;
  }
  .section-heading h2 {
    font-size: 1.5rem;
  }
  .card-grid,
  .product-grid,
  .client-grid,
  .gallery-grid,
  .testimonials-grid {
    gap: 1rem;
  }
  .float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .top-bar-social {
    gap: 0.75rem;
  }
  .top-bar-social a {
    margin-left: 0;
  }
}

/* Brochure grid styling */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.brochure-card {
  background: var(--surface);
  border: 1px solid var(--surface-strong);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.brochure-card img {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.brochure-card:hover img {
  transform: scale(1.05);
}

.brochure-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: #102a43;
}

.brochure-card p {
  margin: 0 0 1.5rem;
  color: #475569;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Video thumbnails */
.video-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--surface-strong);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.video-card img {
  width: 100%;
  height: 200px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  object-fit: cover;
}

.video-card::before {
  content: '\f04b';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(37, 99, 235, 0.7);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover::before {
  opacity: 1;
}

.video-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: #102a43;
}

.video-card p {
  margin: 0 0 1.25rem;
  color: #475569;
  line-height: 1.75;
}

/* Enhanced card transitions */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.card img {
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.03);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .brochure-grid,
  .video-thumbnails {
    grid-template-columns: 1fr;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--surface-strong);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  color: #1e40af;
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

/* Enhanced Footer */
.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding-top: 3rem;
  margin-top: 5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.footer-section h3 {
  color: #f1f5f9;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(148, 163, 184, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Contact Form Styling */
.contact-info-items {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: #2563eb;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.info-item div p {
  margin: 0;
  color: #475569;
}

.info-item div p:first-child {
  font-weight: 600;
  color: #102a43;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #102a43;
}

.required {
  color: #dc2626;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem;
  border: 1px solid var(--surface-strong);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-note {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid var(--surface-strong);
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: #64748b;
  font-size: 0.9rem;
}

.breadcrumb-item::after {
  content: '/';
  margin-left: 0.5rem;
  color: #cbd5e1;
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-item a {
  color: #2563eb;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #102a43;
  font-weight: 600;
}

/* Scroll Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-in-up {
  animation: slideInUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Product Filter */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--surface-strong);
  background: transparent;
  color: #102a43;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .contact-info-items {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 50%, rgba(15, 23, 42, 0.98) 100%);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.gallery-overlay p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 300px;
  }
  
  .gallery-overlay {
    transform: translateY(0);
  }
}
