@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --background: #ffffff;
  --foreground: hsl(205, 96%, 26%);
  --primary: hsl(205, 96%, 26%);
  --primary-foreground: #ffffff;
  --secondary: hsl(205, 30%, 95%);
  --secondary-foreground: hsl(205, 96%, 26%);
  --muted: hsl(205, 20%, 96%);
  --muted-foreground: hsl(205, 20%, 46%);
  --accent: hsl(205, 96%, 36%);
  --accent-foreground: #ffffff;
  --card: #ffffff;
  --card-foreground: hsl(205, 96%, 26%);
  --border: hsl(205, 20%, 88%);
  --radius: 0.5rem;
  --hero-overlay: linear-gradient(135deg, hsla(205, 96%, 26%, 0.92) 0%, hsla(205, 96%, 16%, 0.85) 100%);
  --shadow-card: 0 4px 24px -4px hsla(205, 96%, 26%, 0.12);
  --shadow-card-hover: 0 12px 40px -8px hsla(205, 96%, 26%, 0.2);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

main {
  overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(10px) translateX(-50%); }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(30px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--background);
  transition: all 0.3s ease;
  animation: slideDown 0.5s ease-out;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header-logo {
  height: 2.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: hsla(205, 96%, 26%, 0.7);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: hsla(205, 96%, 26%, 0.9);
}

.btn-mobile-toggle {
  display: block;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  animation: fadeIn 0.2s ease-out;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 0.25rem 0;
}

.mobile-menu .btn-primary {
  padding: 0.75rem 1.5rem;
  text-align: center;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.1;
  max-width: 56rem;
}

.hero h1 em {
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--primary-foreground);
  color: var(--primary);
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
}

.btn-hero-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.6);
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
  padding: 5rem 0;
  background-color: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.showcase-wrapper {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.showcase-main {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.showcase-main img.hidden {
  opacity: 0;
  transform: scale(0.95);
}

.showcase-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(205, 96%, 26%, 0.8), hsla(205, 96%, 26%, 0.2) 40%, transparent);
  z-index: 1;
}

.showcase-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.showcase-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.showcase-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  max-width: 32rem;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  transition: background 0.2s ease;
  z-index: 3;
  cursor: pointer;
}

.showcase-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.showcase-arrow.left {
  left: 1rem;
}

.showcase-arrow.right {
  right: 1rem;
}

.showcase-arrow {
  display: none;
}

.showcase-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}

.showcase-thumbnails {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.showcase-thumb {
  position: relative;
  width: 6rem;
  height: 4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid var(--border);
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.showcase-thumb:hover {
  opacity: 1;
}

.showcase-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(205, 96%, 26%, 0.3);
  opacity: 1;
  transform: scale(1.05);
}

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

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 5rem 0;
  background-color: var(--secondary);
}

.gallery .section-header h2 {
  color: var(--foreground);
}

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

.gallery-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.gallery-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-card-body {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  border: none;
}

.btn-gallery:hover {
  background-color: hsla(205, 96%, 26%, 0.9);
}

.btn-gallery svg {
  width: 1rem;
  height: 1rem;
}

/* ===== LOGISTICS SECTION ===== */
.logistics {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
}

.logistics .section-header h2 {
  color: var(--primary-foreground);
}

.logistics .section-header p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
}

.logistics-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.logistics-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logistics-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logistics-feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.logistics-feature-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.logistics-feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

.logistics-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.logistics-image-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.logistics-image-card .aspect-box {
  aspect-ratio: 16 / 10;
}

.logistics-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.logistics-image-card:hover img {
  transform: scale(1.05);
}

.logistics-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(205, 96%, 26%, 0.6), transparent, transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.logistics-image-overlay span {
  color: var(--primary-foreground);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 4rem 0;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.cta-inner {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--primary-foreground);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
}

.btn-cta-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-cta-primary svg,
.btn-cta-secondary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 5rem 0;
  background-color: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsla(205, 96%, 26%, 0.3);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsla(205, 96%, 26%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background-color 0.2s ease;
}

.feature-card:hover .feature-icon {
  background-color: hsla(205, 96%, 26%, 0.2);
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.feature-card h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 5rem 0;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.contact .section-header h2 {
  color: var(--primary-foreground);
}

.contact .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s ease;
}

.contact-card:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-value {
  font-size: 0.875rem;
  line-height: 1.625;
  word-break: break-all;
  color: var(--primary-foreground);
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
}

.contact-cta .btn-cta-primary {
  display: inline-flex;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-logo {
  height: 2.25rem;
  width: auto;
}

.footer-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both;
  border: none;
}

.whatsapp-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ===== RESPONSIVE: sm (640px) ===== */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    align-items: center;
  }
}

/* ===== RESPONSIVE: md (768px) ===== */
@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }

  .header-logo {
    height: 3rem;
  }

  .nav-desktop {
    display: flex;
  }

  .btn-mobile-toggle {
    display: none;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

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

  .showcase {
    padding: 7rem 0;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .showcase-text {
    padding: 3rem;
  }

  .showcase-text h3 {
    font-size: 1.875rem;
  }

  .showcase-text p {
    font-size: 1rem;
  }

  .showcase-arrow {
    display: flex;
  }

  .showcase-thumb {
    width: 8rem;
    height: 5rem;
  }

  .gallery {
    padding: 7rem 0;
  }

  .logistics {
    padding: 7rem 0;
  }

  .logistics-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .logistics-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    padding: 6rem 0;
  }

  .cta h2 {
    font-size: 3rem;
  }

  .cta-text {
    font-size: 1.25rem;
  }

  .features {
    padding: 7rem 0;
  }

  .contact {
    padding: 7rem 0;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== RESPONSIVE: lg (1024px) ===== */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
