/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #e5e7eb;
  background-color: #1c1917;
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-family: 'Questrial', sans-serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

h2,
.section-title,
.value-title,
.location-title,
.about-text h3,
.link-card h3,
.info-card h3,
.form-card h3,
.map-card h3,
.knowledge-category-title {
  color: #f59e0b;
}

/* Paragraphs and list items styling for all sections below hero */
.about-text p,
.value-description,
.offer-description,
.section-subtitle,
.testimonial-text,
.testimonial-author p,
.link-card p,
.faq-answer p,
.info-label,
.info-value,
.footer p,
.mobile-nav-bottom-menu .nav-link {
  font-family: 'Roboto', sans-serif;
}

/* Navigation */
.nav-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

@media (min-width: 1280px) {
  .nav-container {
    padding: 1.5rem 4rem;
  }
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(28, 25, 23, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(41, 37, 36, 0.9);
}

.hamburger {
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

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

.mobile-menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  font-weight: 600;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  white-space: nowrap;
}

.nav-link:hover {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('obrazy/hero1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.subpage-hero-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('obrazy/hero1.webp') !important;
}

.hero-content {
  text-align: center;
  z-index: 10;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: white;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  color: white;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #f59e0b;
  color: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-3px);
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
  background: rgba(41, 37, 36, 0.8);
  border-color: #f59e0b;
  color: #f59e0b;
  transform: translateY(-3px);
}

/* Sections */
.section {
  padding: 4rem 0;
  background: #292524;
}

.values-section,
.testimonials-section,
.contact-section {
  padding: 5rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('obrazy/hero2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  color: #d6d3d1;
  line-height: 1.75;
}

/* About Page Section */
.about-page-section {
  padding-top: 6rem;
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
}

.about-text {
  background: rgba(41, 37, 36, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-text p {
  font-size: 1.125rem;
  color: white;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}

/* Values Section */
.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-subtitle {
  font-size: 1.25rem;
  color: #d6d3d1;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 96rem;
  margin: 0 auto;
}

.value-card {
  background: rgba(41, 37, 36, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}

.value-card:hover {
  transform: scale(1.05);
  background: rgba(41, 37, 36, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-icon svg {
  color: #f59e0b;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.value-description {
  color: #d6d3d1;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.value-card:hover .value-description {
  color: white;
}

/* Offer Page Section */
.location-card {
  background: rgba(41, 37, 36, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.location-card:last-child {
  margin-bottom: 0;
}

.location-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  padding-bottom: 0.75rem;
}

.product-list {
  list-style: none;
}

.product-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(120, 113, 108, 0.3);
}

.product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: white;
  font-weight: 600;
}

.product-details,
.product-price {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #d6d3d1;
  line-height: 1.5;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  text-align: right;
  margin-top: 0.5rem;
}

/* Gallery Section */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.gallery-item {
  width: 300px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3;
  background: #41403c;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
  brightness: 1.1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.8) 0%, rgba(28, 25, 23, 0.2) 50%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 1rem;
}

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

.gallery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(1rem);
}

.gallery-item:hover .gallery-content {
  opacity: 1;
  transform: translateY(0);
}

.gallery-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.gallery-line {
  width: 3rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: #d6d3d1;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.75;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: rgba(68, 64, 60, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.testimonial-card:hover {
  transform: scale(1.05);
  background: rgba(68, 64, 60, 1);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.stars {
  align-self: center;
  margin-bottom: 1.5rem;
}

.stars span {
  color: #f59e0b;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #f3f4f6;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding: 0;
  text-align: left;
}

.testimonial-text:before {
  content: none;
}

.testimonial-author {
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding-top: 1rem;
  width: 100%;
  text-align: left;
}

.testimonial-author p {
  font-weight: bold;
  color: white;
  font-size: 1.125rem;
  text-align: left;
}

.testimonials-link {
  text-align: center;
}

.link-card {
  background: rgba(68, 64, 60, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  max-width: 28rem;
  margin: 0 auto;
}

.link-card p {
  color: #d6d3d1;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.oferteo-badge {
  margin: 1.5rem 0;
  text-align: center;
}

.oferteo-badge img {
  max-width: 150px;
  margin: 0 auto 1rem;
}

.oferteo-badge p {
  color: #d6d3d1;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 90%;
  margin: 0 auto;
}

.oferteo-badge a {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.oferteo-badge a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

/* FAQ Section & Knowledge Base */
.knowledge-category-title {
  text-align: center;
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
}

.knowledge-category-title:first-of-type {
  margin-top: 0;
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(41, 37, 36, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fbbf24;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  color: #d6d3d1;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 1rem;
}

.faq-answer p {
  line-height: 1.75;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style-position: inside;
  padding-left: 1rem;
  margin-top: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}


/* Contact Section */
.contact-page-section {
  padding-top: 8rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-subtitle {
  font-size: 1.125rem;
  color: #d6d3d1;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 112rem;
  margin: 0 auto;
}

.info-card,
.form-card,
.map-card {
  background: rgba(68, 64, 60, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(120, 113, 108, 0.5);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(120, 113, 108, 0.5);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.info-item:hover {
  background: rgba(120, 113, 108, 0.7);
  transform: scale(1.03);
}

.info-icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #f59e0b;
}

.info-label {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.info-value {
  color: #d6d3d1;
  font-size: 0.875rem;
  line-height: 1.5;
}

.info-value a {
  color: #d6d3d1;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.info-value a:hover {
  color: #f59e0b;
}

/* Contact Form */
.form-card form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

.form-group:last-of-type {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.form-group textarea {
  flex-grow: 1;
  resize: none;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(120, 113, 108, 1);
  border-radius: 12px;
  background: rgba(68, 64, 60, 0.8);
  color: white;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 162, 158, 1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.2);
  background: rgba(68, 64, 60, 1);
}

/* Map */
.map-container {
  flex-grow: 1;
  width: 100%;
  background: rgba(68, 64, 60, 1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Bottom Navigation */
#mobile-nav-bottom {
  display: none;
  background: #1c1917;
  border-top: 1px solid rgba(120, 113, 108, 0.5);
}

.mobile-nav-bottom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav-bottom-menu li {
  margin-bottom: 0.5rem;
}

.mobile-nav-bottom-menu .nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem;
  display: inline-block;
  border-bottom: none;
}

.mobile-nav-bottom-menu .nav-link:hover {
  color: #f59e0b;
  background: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(120, 113, 108, 1);
  background: #292524;
}

.footer p {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer p:last-child {
  font-size: 0.875rem;
  color: #a8a29e;
}

/* Scroll-to-Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f59e0b;
  color: black;
  border: none;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #d97706;
  transform: scale(1.1);
}

/* ================== */
/* Responsive Design */
/* ================== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .values-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .hero,
  .values-section,
  .testimonials-section,
  .contact-section {
    background-attachment: scroll;
  }

  /* === Smaller logo on mobile === */
  .nav-logo img {
    height: 40px;
  }

  /* === Mobile Navigation === */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: rgba(28, 25, 23, 0.98);
    backdrop-filter: blur(12px);
    padding-top: 5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(120, 113, 108, 0.5);
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(120, 113, 108, 0.3);
    font-size: 1.125rem;
    border-radius: 0;
  }

  .nav-menu li:last-child .nav-link {
    border-bottom: none;
  }

  .nav-link:hover {
    color: #f59e0b;
    background: rgba(41, 37, 36, 0.5);
  }

  /* === General Layout === */
  .hero {
    height: 60vh;
  }

  .section {
    padding: 2rem 0;
  }

  .about-page-section,
  .contact-page-section {
    padding-top: 6rem;
  }

  .values-section,
  .testimonials-section,
  .contact-section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .values-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card,
  .testimonial-card,
  .about-text,
  .info-card,
  .form-card,
  .map-card {
    padding: 1.5rem;
  }

  .map-container {
    height: 20rem;
  }

  /* === Show mobile bottom navigation === */
  #mobile-nav-bottom {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .value-card,
  .testimonial-card,
  .about-text,
  .info-card,
  .form-card,
  .map-card {
    padding: 1rem;
  }

  .map-container {
    height: 16rem;
  }
}

.about-page-section,
.contact-page-section {
  padding-top: 6rem;
}